commit 4660ed7c2560a559c334f01a029544f6724e81d3 Author: MickSlash Date: Sat Mar 13 19:36:50 2021 +0100 Upload LordChannel File diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0f1997 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vscode +.DS_Store +.idea \ No newline at end of file diff --git a/Anime/__init__.py b/Anime/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Anime/__pycache__/__init__.cpython-37.pyc b/Anime/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..cd9564a Binary files /dev/null and b/Anime/__pycache__/__init__.cpython-37.pyc differ diff --git a/Anime/__pycache__/__init__.cpython-38.pyc b/Anime/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..05b0f2e Binary files /dev/null and b/Anime/__pycache__/__init__.cpython-38.pyc differ diff --git a/Anime/__pycache__/admin.cpython-37.pyc b/Anime/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..19ee4e1 Binary files /dev/null and b/Anime/__pycache__/admin.cpython-37.pyc differ diff --git a/Anime/__pycache__/admin.cpython-38.pyc b/Anime/__pycache__/admin.cpython-38.pyc new file mode 100644 index 0000000..233d71e Binary files /dev/null and b/Anime/__pycache__/admin.cpython-38.pyc differ diff --git a/Anime/__pycache__/forms.cpython-37.pyc b/Anime/__pycache__/forms.cpython-37.pyc new file mode 100644 index 0000000..6c3ba15 Binary files /dev/null and b/Anime/__pycache__/forms.cpython-37.pyc differ diff --git a/Anime/__pycache__/forms.cpython-38.pyc b/Anime/__pycache__/forms.cpython-38.pyc new file mode 100644 index 0000000..945a70e Binary files /dev/null and b/Anime/__pycache__/forms.cpython-38.pyc differ diff --git a/Anime/__pycache__/models.cpython-37.pyc b/Anime/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..5de9199 Binary files /dev/null and b/Anime/__pycache__/models.cpython-37.pyc differ diff --git a/Anime/__pycache__/models.cpython-38.pyc b/Anime/__pycache__/models.cpython-38.pyc new file mode 100644 index 0000000..56b01e7 Binary files /dev/null and b/Anime/__pycache__/models.cpython-38.pyc differ diff --git a/Anime/__pycache__/urls.cpython-37.pyc b/Anime/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..02419b1 Binary files /dev/null and b/Anime/__pycache__/urls.cpython-37.pyc differ diff --git a/Anime/__pycache__/urls.cpython-38.pyc b/Anime/__pycache__/urls.cpython-38.pyc new file mode 100644 index 0000000..6e18c96 Binary files /dev/null and b/Anime/__pycache__/urls.cpython-38.pyc differ diff --git a/Anime/__pycache__/views.cpython-37.pyc b/Anime/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000..dc4bb7b Binary files /dev/null and b/Anime/__pycache__/views.cpython-37.pyc differ diff --git a/Anime/__pycache__/views.cpython-38.pyc b/Anime/__pycache__/views.cpython-38.pyc new file mode 100644 index 0000000..3a88a7f Binary files /dev/null and b/Anime/__pycache__/views.cpython-38.pyc differ diff --git a/Anime/admin.py b/Anime/admin.py new file mode 100644 index 0000000..fa832a9 --- /dev/null +++ b/Anime/admin.py @@ -0,0 +1,23 @@ +from django.contrib import admin +from .models import Anime,GenereAnime,Stagioni,Episodi,CommentoAnime,SegnalazioneAnime,SpecialiVideo,Immagini + +class AnimeImmagini(admin.StackedInline): + model=Immagini + + +class AnimeAdmin(admin.ModelAdmin): + inlines = [AnimeImmagini] + readonly_fields = ("creato_in_data", "aggiornato_in_data") + + class Meta: + model=Anime + + + +admin.site.register(GenereAnime) +admin.site.register(Stagioni) +admin.site.register(Episodi) +admin.site.register(Anime,AnimeAdmin) +admin.site.register(CommentoAnime) +admin.site.register(SegnalazioneAnime) +admin.site.register(SpecialiVideo) \ No newline at end of file diff --git a/Anime/apps.py b/Anime/apps.py new file mode 100644 index 0000000..677ab8a --- /dev/null +++ b/Anime/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class AnimeConfig(AppConfig): + name = 'Anime' diff --git a/Anime/forms.py b/Anime/forms.py new file mode 100644 index 0000000..ad4776e --- /dev/null +++ b/Anime/forms.py @@ -0,0 +1,66 @@ +from django import forms +from .models import CommentoAnime,SegnalazioneAnime,Anime +from utils.profanity_filter import profanity_words +from django.core.validators import ValidationError + + +class CreaAnime(forms.ModelForm): + class Meta: + model = Anime + exclude = ['creato_in_data','aggiornato_in_data','slug','visualizzazioni','preferito','guarda_dopo'] + widgets = { + 'titolo' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Titolo'}), + 'immagine_poster' : forms.FileInput(attrs={'id':'form__img-upload','name':'form__img-upload'}), + 'immagine_background' : forms.FileInput(attrs={'id':'form__imgbackground-upload','name':'form__imgbackground-upload'}), + 'descrizione' : forms.Textarea(attrs={'class' : 'form__textarea', 'placeholder': 'Descrizione','id': 'text'}), + 'genere' : forms.SelectMultiple(attrs={'class':'js-example-basic-multiple','id':'genere'}), + 'qualità_video' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Qualitá Video'}), + 'età_consigliata' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Etá Consigliata'}), + 'lingua' : forms.Select(attrs={'class':' js-example-basic-single select2-hidden-accessible','id':'lingua'}), + 'data_uscita' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Data Uscita'}), + 'durata' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Durata In min'}), + 'voto' : forms.NumberInput(attrs={'class' : 'form__input','placeholder': 'Voto'}) + + + } + labels = { + 'immagine_poster' : "Carica Immagine Copertina (270x400)" + } + + + + + + +class SearchAnimeAPI(forms.Form): + anime = forms.CharField(label="",widget=forms.TextInput(attrs={'class': 'form__input','placeholder':'Titolo Anime...'})) + +class CommentiForms(forms.ModelForm): + class Meta: + model = CommentoAnime + fields = ['commento'] + widgets = { + 'commento' : forms.Textarea(attrs={'class': 'form__textarea','id':'text'}) + } + + def clean_commento(self): + super().clean() + dati = self.cleaned_data["commento"] + lista_parole_offensive = profanity_words() + for s in lista_parole_offensive: + if s in dati: + raise ValidationError("Il Contenuto Inserito viola le norme del sito! ") + return dati + +class SegnalazioneAnimeForm(forms.ModelForm): + class Meta: + model = SegnalazioneAnime + exclude = ['anime'] + widgets = { + 'descrizione_problema' : forms.Textarea(attrs={'class': 'form__textarea','id':'text'}), + 'problema_video' : forms.Select(attrs={'class':' js-example-basic-single select2-hidden-accessible','id':'segnalaproblema'}) + } + labels = { + 'descrizione_problema': '', + 'problema_video' : '' + } \ No newline at end of file diff --git a/Anime/migrations/0001_initial.py b/Anime/migrations/0001_initial.py new file mode 100644 index 0000000..9528e7d --- /dev/null +++ b/Anime/migrations/0001_initial.py @@ -0,0 +1,68 @@ +# Generated by Django 3.0.5 on 2020-04-24 16:01 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Anime', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('titolo', models.CharField(max_length=120)), + ('descrizione', models.CharField(max_length=120)), + ], + options={ + 'verbose_name': 'Anime', + 'verbose_name_plural': 'Anime', + }, + ), + migrations.CreateModel( + name='GenereAnime', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('genere', models.CharField(max_length=120)), + ], + options={ + 'verbose_name': 'Genere', + 'verbose_name_plural': 'Generi', + }, + ), + migrations.CreateModel( + name='Stagioni', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('numero_stagione', models.IntegerField()), + ('anime', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='animestagioni', to='Anime.Anime')), + ], + options={ + 'verbose_name': 'Stagione', + 'verbose_name_plural': 'Stagioni', + }, + ), + migrations.CreateModel( + name='Episodi', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('numero_episodio', models.IntegerField()), + ('streaming_link', models.URLField()), + ('stagione', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='stagione', to='Anime.Stagioni')), + ], + options={ + 'verbose_name': 'Episodio', + 'verbose_name_plural': 'Episodi', + }, + ), + migrations.AddField( + model_name='anime', + name='genere', + field=models.ManyToManyField(to='Anime.GenereAnime'), + ), + ] diff --git a/Anime/migrations/0002_auto_20200806_1712.py b/Anime/migrations/0002_auto_20200806_1712.py new file mode 100644 index 0000000..c97a207 --- /dev/null +++ b/Anime/migrations/0002_auto_20200806_1712.py @@ -0,0 +1,75 @@ +# Generated by Django 3.1 on 2020-08-06 15:12 + +import django.core.validators +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ('Anime', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='anime', + name='aggiornato_in_data', + field=models.DateField(auto_now=True, null=True), + ), + migrations.AddField( + model_name='anime', + name='creato_in_data', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='anime', + name='età_consigliata', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='anime', + name='immagine_background', + field=models.ImageField(default='default.png', upload_to=''), + ), + migrations.AddField( + model_name='anime', + name='immagine_poster', + field=models.ImageField(blank=True, null=True, upload_to=''), + ), + migrations.AddField( + model_name='anime', + name='lingua', + field=models.CharField(choices=[('ITA', 'Italiano'), ('SUB-ITA', 'SUB-ITA')], default='ITA', max_length=12), + ), + migrations.AddField( + model_name='anime', + name='qualità_video', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='anime', + name='slug', + field=models.SlugField(blank=True, null=True), + ), + migrations.AddField( + model_name='anime', + name='voto', + field=models.FloatField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1.0), django.core.validators.MaxValueValidator(10.0)]), + ), + migrations.CreateModel( + name='CommentoAnime', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('commento', models.TextField()), + ('data_commento', models.DateTimeField(auto_now_add=True)), + ('anime', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_anime', to='Anime.anime')), + ('utente', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_utente_anime', to='core.profilo')), + ], + options={ + 'verbose_name': 'Commento', + 'verbose_name_plural': 'Commenti', + }, + ), + ] diff --git a/Anime/migrations/0003_episodi_nome_episodio.py b/Anime/migrations/0003_episodi_nome_episodio.py new file mode 100644 index 0000000..b9f95f3 --- /dev/null +++ b/Anime/migrations/0003_episodi_nome_episodio.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-08-06 15:38 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0002_auto_20200806_1712'), + ] + + operations = [ + migrations.AddField( + model_name='episodi', + name='nome_episodio', + field=models.CharField(default='', max_length=200), + ), + ] diff --git a/Anime/migrations/0004_auto_20200807_1214.py b/Anime/migrations/0004_auto_20200807_1214.py new file mode 100644 index 0000000..da4c12a --- /dev/null +++ b/Anime/migrations/0004_auto_20200807_1214.py @@ -0,0 +1,23 @@ +# Generated by Django 3.0.7 on 2020-08-07 12:14 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0003_episodi_nome_episodio'), + ] + + operations = [ + migrations.RemoveField( + model_name='commentoanime', + name='anime', + ), + migrations.AddField( + model_name='commentoanime', + name='media', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='commenti_anime', to='Anime.Anime'), + ), + ] diff --git a/Anime/migrations/0005_auto_20200817_1807.py b/Anime/migrations/0005_auto_20200817_1807.py new file mode 100644 index 0000000..6f25da6 --- /dev/null +++ b/Anime/migrations/0005_auto_20200817_1807.py @@ -0,0 +1,29 @@ +# Generated by Django 3.1 on 2020-08-17 16:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ('Anime', '0004_auto_20200807_1214'), + ] + + operations = [ + migrations.AddField( + model_name='anime', + name='data_uscita', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='anime', + name='guarda_dopo', + field=models.ManyToManyField(blank=True, related_name='anime_watch_later', to='core.Profilo'), + ), + migrations.AddField( + model_name='anime', + name='preferito', + field=models.ManyToManyField(blank=True, related_name='anime_preferiti', to='core.Profilo'), + ), + ] diff --git a/Anime/migrations/0006_auto_20200819_1147.py b/Anime/migrations/0006_auto_20200819_1147.py new file mode 100644 index 0000000..3aea527 --- /dev/null +++ b/Anime/migrations/0006_auto_20200819_1147.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-19 09:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0005_auto_20200817_1807'), + ] + + operations = [ + migrations.AlterField( + model_name='anime', + name='descrizione', + field=models.TextField(), + ), + ] diff --git a/Anime/migrations/0007_segnalazioneanime.py b/Anime/migrations/0007_segnalazioneanime.py new file mode 100644 index 0000000..fb352d1 --- /dev/null +++ b/Anime/migrations/0007_segnalazioneanime.py @@ -0,0 +1,27 @@ +# Generated by Django 3.0.7 on 2020-08-21 16:30 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0006_auto_20200819_1147'), + ] + + operations = [ + migrations.CreateModel( + name='SegnalazioneAnime', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('problema_video', models.CharField(choices=[('Link Non Funzionante', 'Link Non Funzionante'), ('Video Pessima Qualitá', 'Video Pessima Qualitá'), ('Audio Mancante', 'Audio Mancante'), ('Episodio Incompleto', 'Episodio Incompleto'), ('Altro', 'Altro')], default='Link Non Funzionante', max_length=50)), + ('descrizione_problema', models.TextField()), + ('anime', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='anime_segnalato', to='Anime.Anime')), + ], + options={ + 'verbose_name': 'Segnalazione', + 'verbose_name_plural': 'Segnalazioni', + }, + ), + ] diff --git a/Anime/migrations/0008_auto_20200823_1619.py b/Anime/migrations/0008_auto_20200823_1619.py new file mode 100644 index 0000000..f76a8d3 --- /dev/null +++ b/Anime/migrations/0008_auto_20200823_1619.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1 on 2020-08-23 14:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0007_segnalazioneanime'), + ] + + operations = [ + migrations.AddField( + model_name='anime', + name='visualizzazioni', + field=models.IntegerField(default=0), + ), + migrations.AlterField( + model_name='anime', + name='lingua', + field=models.CharField(choices=[('ITA', 'Italiano'), ('SUB-ITA', 'Sottotitolato In Italiano')], default='ITA', max_length=12), + ), + ] diff --git a/Anime/migrations/0009_anime_durata.py b/Anime/migrations/0009_anime_durata.py new file mode 100644 index 0000000..da13b28 --- /dev/null +++ b/Anime/migrations/0009_anime_durata.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-09-18 18:00 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0008_auto_20200823_1619'), + ] + + operations = [ + migrations.AddField( + model_name='anime', + name='durata', + field=models.CharField(blank=True, max_length=20, null=True), + ), + ] diff --git a/Anime/migrations/0010_immagini_specialivideo.py b/Anime/migrations/0010_immagini_specialivideo.py new file mode 100644 index 0000000..1e9d9c8 --- /dev/null +++ b/Anime/migrations/0010_immagini_specialivideo.py @@ -0,0 +1,35 @@ +# Generated by Django 3.1.1 on 2020-10-10 12:29 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0009_anime_durata'), + ] + + operations = [ + migrations.CreateModel( + name='SpecialiVideo', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('titolo', models.CharField(max_length=120)), + ('streaming_link', models.URLField()), + ('stagione', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='stagione_speciali', to='Anime.stagioni')), + ], + options={ + 'verbose_name': 'Speciale', + 'verbose_name_plural': 'Speciali', + }, + ), + migrations.CreateModel( + name='Immagini', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('immagini', models.ImageField(blank=True, null=True, upload_to='')), + ('anime', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='immagini_serietv', to='Anime.anime')), + ], + ), + ] diff --git a/Anime/migrations/0011_auto_20201010_1450.py b/Anime/migrations/0011_auto_20201010_1450.py new file mode 100644 index 0000000..ebc8c71 --- /dev/null +++ b/Anime/migrations/0011_auto_20201010_1450.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1.1 on 2020-10-10 12:50 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0010_immagini_specialivideo'), + ] + + operations = [ + migrations.AlterModelOptions( + name='stagioni', + options={'ordering': ['numero_stagione'], 'verbose_name': 'Stagione', 'verbose_name_plural': 'Stagioni'}, + ), + ] diff --git a/Anime/migrations/0012_anime_trailer.py b/Anime/migrations/0012_anime_trailer.py new file mode 100644 index 0000000..2008778 --- /dev/null +++ b/Anime/migrations/0012_anime_trailer.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-11-09 16:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0011_auto_20201010_1450'), + ] + + operations = [ + migrations.AddField( + model_name='anime', + name='trailer', + field=models.URLField(blank=True, null=True), + ), + ] diff --git a/Anime/migrations/0013_auto_20201109_1943.py b/Anime/migrations/0013_auto_20201109_1943.py new file mode 100644 index 0000000..ff251dd --- /dev/null +++ b/Anime/migrations/0013_auto_20201109_1943.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-11-09 19:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0012_anime_trailer'), + ] + + operations = [ + migrations.AlterField( + model_name='anime', + name='aggiornato_in_data', + field=models.DateTimeField(auto_now=True, null=True), + ), + ] diff --git a/Anime/migrations/0014_auto_20201109_2011.py b/Anime/migrations/0014_auto_20201109_2011.py new file mode 100644 index 0000000..da436d6 --- /dev/null +++ b/Anime/migrations/0014_auto_20201109_2011.py @@ -0,0 +1,19 @@ +# Generated by Django 3.1.2 on 2020-11-09 20:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Anime', '0013_auto_20201109_1943'), + ] + + operations = [ + migrations.AlterField( + model_name='anime', + name='aggiornato_in_data', + field=models.DateTimeField(auto_now=True, default=None), + preserve_default=False, + ), + ] diff --git a/Anime/migrations/__init__.py b/Anime/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Anime/migrations/__pycache__/0001_initial.cpython-37.pyc b/Anime/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000..c3c770e Binary files /dev/null and b/Anime/migrations/__pycache__/0001_initial.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0001_initial.cpython-38.pyc b/Anime/migrations/__pycache__/0001_initial.cpython-38.pyc new file mode 100644 index 0000000..05f5d33 Binary files /dev/null and b/Anime/migrations/__pycache__/0001_initial.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0002_auto_20200806_1712.cpython-37.pyc b/Anime/migrations/__pycache__/0002_auto_20200806_1712.cpython-37.pyc new file mode 100644 index 0000000..58b17c0 Binary files /dev/null and b/Anime/migrations/__pycache__/0002_auto_20200806_1712.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0002_auto_20200806_1712.cpython-38.pyc b/Anime/migrations/__pycache__/0002_auto_20200806_1712.cpython-38.pyc new file mode 100644 index 0000000..0f6c385 Binary files /dev/null and b/Anime/migrations/__pycache__/0002_auto_20200806_1712.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0003_episodi_nome_episodio.cpython-37.pyc b/Anime/migrations/__pycache__/0003_episodi_nome_episodio.cpython-37.pyc new file mode 100644 index 0000000..828bceb Binary files /dev/null and b/Anime/migrations/__pycache__/0003_episodi_nome_episodio.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0003_episodi_nome_episodio.cpython-38.pyc b/Anime/migrations/__pycache__/0003_episodi_nome_episodio.cpython-38.pyc new file mode 100644 index 0000000..49ffe80 Binary files /dev/null and b/Anime/migrations/__pycache__/0003_episodi_nome_episodio.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0004_auto_20200807_1209.cpython-37.pyc b/Anime/migrations/__pycache__/0004_auto_20200807_1209.cpython-37.pyc new file mode 100644 index 0000000..1584642 Binary files /dev/null and b/Anime/migrations/__pycache__/0004_auto_20200807_1209.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0004_auto_20200807_1214.cpython-37.pyc b/Anime/migrations/__pycache__/0004_auto_20200807_1214.cpython-37.pyc new file mode 100644 index 0000000..558f5ac Binary files /dev/null and b/Anime/migrations/__pycache__/0004_auto_20200807_1214.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0004_auto_20200807_1214.cpython-38.pyc b/Anime/migrations/__pycache__/0004_auto_20200807_1214.cpython-38.pyc new file mode 100644 index 0000000..50e8c26 Binary files /dev/null and b/Anime/migrations/__pycache__/0004_auto_20200807_1214.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0005_auto_20200817_1807.cpython-37.pyc b/Anime/migrations/__pycache__/0005_auto_20200817_1807.cpython-37.pyc new file mode 100644 index 0000000..fc00db8 Binary files /dev/null and b/Anime/migrations/__pycache__/0005_auto_20200817_1807.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0005_auto_20200817_1807.cpython-38.pyc b/Anime/migrations/__pycache__/0005_auto_20200817_1807.cpython-38.pyc new file mode 100644 index 0000000..d7753d6 Binary files /dev/null and b/Anime/migrations/__pycache__/0005_auto_20200817_1807.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0006_auto_20200819_1147.cpython-37.pyc b/Anime/migrations/__pycache__/0006_auto_20200819_1147.cpython-37.pyc new file mode 100644 index 0000000..e72aced Binary files /dev/null and b/Anime/migrations/__pycache__/0006_auto_20200819_1147.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0006_auto_20200819_1147.cpython-38.pyc b/Anime/migrations/__pycache__/0006_auto_20200819_1147.cpython-38.pyc new file mode 100644 index 0000000..d4673d1 Binary files /dev/null and b/Anime/migrations/__pycache__/0006_auto_20200819_1147.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0007_segnalazioneanime.cpython-37.pyc b/Anime/migrations/__pycache__/0007_segnalazioneanime.cpython-37.pyc new file mode 100644 index 0000000..0d30717 Binary files /dev/null and b/Anime/migrations/__pycache__/0007_segnalazioneanime.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0007_segnalazioneanime.cpython-38.pyc b/Anime/migrations/__pycache__/0007_segnalazioneanime.cpython-38.pyc new file mode 100644 index 0000000..d231091 Binary files /dev/null and b/Anime/migrations/__pycache__/0007_segnalazioneanime.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0008_auto_20200823_1619.cpython-37.pyc b/Anime/migrations/__pycache__/0008_auto_20200823_1619.cpython-37.pyc new file mode 100644 index 0000000..8cb4d50 Binary files /dev/null and b/Anime/migrations/__pycache__/0008_auto_20200823_1619.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0008_auto_20200823_1619.cpython-38.pyc b/Anime/migrations/__pycache__/0008_auto_20200823_1619.cpython-38.pyc new file mode 100644 index 0000000..396a63b Binary files /dev/null and b/Anime/migrations/__pycache__/0008_auto_20200823_1619.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0009_anime_durata.cpython-37.pyc b/Anime/migrations/__pycache__/0009_anime_durata.cpython-37.pyc new file mode 100644 index 0000000..eaefbe5 Binary files /dev/null and b/Anime/migrations/__pycache__/0009_anime_durata.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0009_anime_durata.cpython-38.pyc b/Anime/migrations/__pycache__/0009_anime_durata.cpython-38.pyc new file mode 100644 index 0000000..407972e Binary files /dev/null and b/Anime/migrations/__pycache__/0009_anime_durata.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0010_immagini_specialivideo.cpython-37.pyc b/Anime/migrations/__pycache__/0010_immagini_specialivideo.cpython-37.pyc new file mode 100644 index 0000000..9af4eb1 Binary files /dev/null and b/Anime/migrations/__pycache__/0010_immagini_specialivideo.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0010_immagini_specialivideo.cpython-38.pyc b/Anime/migrations/__pycache__/0010_immagini_specialivideo.cpython-38.pyc new file mode 100644 index 0000000..c3da6d8 Binary files /dev/null and b/Anime/migrations/__pycache__/0010_immagini_specialivideo.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0011_auto_20201010_1450.cpython-37.pyc b/Anime/migrations/__pycache__/0011_auto_20201010_1450.cpython-37.pyc new file mode 100644 index 0000000..5a0c524 Binary files /dev/null and b/Anime/migrations/__pycache__/0011_auto_20201010_1450.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0011_auto_20201010_1450.cpython-38.pyc b/Anime/migrations/__pycache__/0011_auto_20201010_1450.cpython-38.pyc new file mode 100644 index 0000000..30ab80c Binary files /dev/null and b/Anime/migrations/__pycache__/0011_auto_20201010_1450.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0012_anime_trailer.cpython-37.pyc b/Anime/migrations/__pycache__/0012_anime_trailer.cpython-37.pyc new file mode 100644 index 0000000..ec8091e Binary files /dev/null and b/Anime/migrations/__pycache__/0012_anime_trailer.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0012_anime_trailer.cpython-38.pyc b/Anime/migrations/__pycache__/0012_anime_trailer.cpython-38.pyc new file mode 100644 index 0000000..6326f16 Binary files /dev/null and b/Anime/migrations/__pycache__/0012_anime_trailer.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0013_auto_20201109_1943.cpython-37.pyc b/Anime/migrations/__pycache__/0013_auto_20201109_1943.cpython-37.pyc new file mode 100644 index 0000000..d39bc68 Binary files /dev/null and b/Anime/migrations/__pycache__/0013_auto_20201109_1943.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0013_auto_20201109_1943.cpython-38.pyc b/Anime/migrations/__pycache__/0013_auto_20201109_1943.cpython-38.pyc new file mode 100644 index 0000000..b380185 Binary files /dev/null and b/Anime/migrations/__pycache__/0013_auto_20201109_1943.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/0014_auto_20201109_2011.cpython-37.pyc b/Anime/migrations/__pycache__/0014_auto_20201109_2011.cpython-37.pyc new file mode 100644 index 0000000..075c662 Binary files /dev/null and b/Anime/migrations/__pycache__/0014_auto_20201109_2011.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/0014_auto_20201109_2011.cpython-38.pyc b/Anime/migrations/__pycache__/0014_auto_20201109_2011.cpython-38.pyc new file mode 100644 index 0000000..ef3b4f3 Binary files /dev/null and b/Anime/migrations/__pycache__/0014_auto_20201109_2011.cpython-38.pyc differ diff --git a/Anime/migrations/__pycache__/__init__.cpython-37.pyc b/Anime/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..4d2581a Binary files /dev/null and b/Anime/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/Anime/migrations/__pycache__/__init__.cpython-38.pyc b/Anime/migrations/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..b7fa61e Binary files /dev/null and b/Anime/migrations/__pycache__/__init__.cpython-38.pyc differ diff --git a/Anime/models.py b/Anime/models.py new file mode 100644 index 0000000..37f912a --- /dev/null +++ b/Anime/models.py @@ -0,0 +1,139 @@ +from django.db import models +from django.urls import reverse +from django.contrib.auth.models import User +from django.core.validators import MinValueValidator,MaxValueValidator +from django.utils.text import slugify +from core.models import Profilo +# Create your models here. + +class GenereAnime(models.Model): + genere = models.CharField(max_length=120) + + def __str__(self): + return self.genere + + class Meta: + verbose_name = "Genere" + verbose_name_plural = "Generi" + + def get_absolute_url(self): + return reverse('anime_genere', kwargs={'genere': self.genere}) + +class Anime(models.Model): + titolo = models.CharField(max_length=120) + descrizione = models.TextField() + immagine_poster = models.ImageField(null=True,blank=True) + qualità_video = models.CharField(max_length=20,null=True,blank=True) + età_consigliata = models.CharField(max_length=20,null=True,blank=True) + immagine_background = models.ImageField(default='default.png') + genere = models.ManyToManyField(GenereAnime) + LINGUE = [ + ('ITA', "Italiano"), + ('SUB-ITA', "Sottotitolato In Italiano"), + ] + lingua = models.CharField(max_length=12,choices=LINGUE,default="ITA") + voto = models.FloatField(validators=[MinValueValidator(1.0),MaxValueValidator(10.0)],null=True,blank=True) + creato_in_data = models.DateTimeField(auto_now_add=True,null=True,blank=True) + aggiornato_in_data = models.DateTimeField(auto_now=True) + slug = models.SlugField(null=True,blank=True) + preferito = models.ManyToManyField(Profilo,related_name="anime_preferiti",blank=True) + guarda_dopo = models.ManyToManyField(Profilo,related_name="anime_watch_later",blank=True) + data_uscita = models.CharField(max_length=20,null=True,blank=True) + visualizzazioni = models.IntegerField(default=0) + durata = models.CharField(max_length=20,null=True,blank=True) + trailer = models.URLField(null=True,blank=True) + + def save(self, *args, **kwargs): + self.slug = slugify(self.titolo) + return super(Anime,self).save(*args, **kwargs) + + def __str__(self): + return self.titolo + + class Meta: + verbose_name = "Anime" + verbose_name_plural = "Anime" + + def get_absolute_url(self): + return reverse('anime-detail', kwargs={'slug': self.slug}) + +class Stagioni(models.Model): + numero_stagione = models.IntegerField() + anime = models.ForeignKey(Anime,on_delete=models.CASCADE,related_name="animestagioni") + + def __str__(self): + return f"{self.anime.titolo} - Stagione {self.numero_stagione}" + + class Meta: + verbose_name = "Stagione" + verbose_name_plural = "Stagioni" + ordering = ['numero_stagione'] + +class Episodi(models.Model): + stagione = models.ForeignKey(Stagioni,on_delete=models.CASCADE,related_name="stagione") + numero_episodio = models.IntegerField() + nome_episodio = models.CharField(max_length=200,default="") + streaming_link = models.URLField() + + def __str__(self): + return f"{self.stagione.anime.titolo} S{self.stagione.numero_stagione} E{self.numero_episodio}" + + class Meta: + verbose_name = "Episodio" + verbose_name_plural = "Episodi" + +class CommentoAnime(models.Model): + utente = models.ForeignKey(Profilo,on_delete=models.CASCADE,related_name="commenti_utente_anime") + commento = models.TextField() + data_commento = models.DateTimeField(auto_now_add=True) + media = models.ForeignKey(Anime,on_delete=models.CASCADE,related_name="commenti_anime",blank=True,null=True) + + class Meta: + verbose_name = "Commento" + verbose_name_plural = "Commenti" + + def __str__(self): + return f"{self.utente.user} ha scritto un commento sull'Anime {self.media.titolo}" + +class SegnalazioneAnime(models.Model): + LISTA_PROBLEMI_VIDEO = [ + ('Link Non Funzionante', 'Link Non Funzionante'), + ('Video Pessima Qualitá', 'Video Pessima Qualitá'), + ('Audio Mancante', 'Audio Mancante'), + ('Episodio Incompleto', 'Episodio Incompleto'), + ('Altro', 'Altro'), + ] + problema_video = models.CharField( + max_length=50, + choices=LISTA_PROBLEMI_VIDEO, + default='Link Non Funzionante', + ) + descrizione_problema = models.TextField() + anime = models.ForeignKey(Anime,on_delete=models.CASCADE,related_name="anime_segnalato") + + class Meta: + verbose_name = "Segnalazione" + verbose_name_plural = "Segnalazioni" + + def __str__(self): + return f"Hanno Segnalato un Problema sull'Anime {self.anime.titolo}" + + +class SpecialiVideo(models.Model): + stagione = models.ForeignKey(Stagioni,on_delete=models.CASCADE,related_name="stagione_speciali") + titolo = models.CharField(max_length=120) + streaming_link = models.URLField() + + def __str__(self): + return f" {self.stagione.anime.titolo} - {self.titolo}" + + class Meta: + verbose_name = "Speciale" + verbose_name_plural = "Speciali" + +class Immagini(models.Model): + anime = models.ForeignKey(Anime,on_delete=models.CASCADE,related_name="immagini_serietv") + immagini = models.ImageField(null=True,blank=True) + + def __str__(self): + return f"Immagini dell'Anime {self.anime.titolo}" \ No newline at end of file diff --git a/Anime/tests.py b/Anime/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/Anime/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/Anime/urls.py b/Anime/urls.py new file mode 100644 index 0000000..387842f --- /dev/null +++ b/Anime/urls.py @@ -0,0 +1,17 @@ +from django.urls import path +from .views import anime_detail,anime_ita,anime_subita,salva_anime,add_anime_api,preferiti,guarda_dopo,lista_generi,anime_genere,DeleteComment + +urlpatterns = [ + path("anime-ita/",anime_ita,name="lista-anime-ita"), + path("anime-sub-ita/",anime_subita,name="lista-anime-sub-ita"), + path('aggiungi_anime/',add_anime_api,name='aggiungi_anime'), + path("generi/",lista_generi,name="anime_generi"), + # path("/",serietv_detail,name="serietvdetail"), + path('anime//////',salva_anime,name='salva_anime'), + path("/",anime_detail,name="anime-detail"), + path('/aggiungi_preferiti/',preferiti,name="anime_preferiti"), + path('/aggiungi_guarda_dopo/',guarda_dopo,name="anime_guarda_dopo"), + path('/elimina-commento//',DeleteComment.as_view(),name="elimina_commento_anime"), + path('genere/',anime_genere,name="anime_genere") + +] \ No newline at end of file diff --git a/Anime/views.py b/Anime/views.py new file mode 100644 index 0000000..35fb567 --- /dev/null +++ b/Anime/views.py @@ -0,0 +1,207 @@ +from django.shortcuts import render,get_object_or_404,redirect,HttpResponseRedirect +from django.core.paginator import Paginator +from django.contrib import messages +from django.views.generic.edit import DeleteView +from django.urls.base import reverse, reverse_lazy +from .models import Anime,Episodi,Stagioni,GenereAnime,CommentoAnime,SegnalazioneAnime,Immagini +from .forms import SearchAnimeAPI,CommentiForms,SegnalazioneAnimeForm +from core.models import Profilo +from django.http import HttpResponse +from utils.thetvdbapi import search_tv_show,get_tvshow_info,image_Endpoint +from utils.download_image import get_image +from utils.english_genres_to_italian import englishgenres +from django.contrib.admin.views.decorators import staff_member_required +import random +import re +# Create your views here. + +def lista_generi(request): + generi_anime = GenereAnime.objects.all() + context = {"generi_anime":generi_anime} + return render(request,'lista_generi_anime.html',context) + +def anime_genere(request,genere): + genere_anime = get_object_or_404(GenereAnime,genere=genere) + anime = Anime.objects.filter(genere=genere_anime) + context = {"genere":genere_anime,"anime":anime} + return render(request,'anime_genere.html',context) + + +def anime_youmightlike(genres,anime): + random_picked_genre = random.sample(genres,1) + anime_same_genres = Anime.objects.filter(genere__in=random_picked_genre).values("titolo") + current_anime = anime.titolo + anime_with_same_genre = Anime.objects.exclude(titolo=current_anime) + number_anime_with_same_genre = Anime.objects.filter(genere__in=random_picked_genre).count() + # random_anime_list = random.randint(1,number_anime_with_same_genre) + # rand_anime = random.sample(list(anime_with_same_genre),min(random_anime_list, len(anime_with_same_genre))) # comportamento precedente + rand_anime = random.sample(list(anime_with_same_genre), number_anime_with_same_genre if number_anime_with_same_genre < 8 else 8) # seleziona casualmente degli elementi univoci nel database + return rand_anime + + +def anime_subita(request): + sub_ita = "SUB-ITA" + anime_sub_ita_filter = Anime.objects.filter(lingua=sub_ita).order_by('-creato_in_data') + generi = GenereAnime.objects.all() + paginator = Paginator(anime_sub_ita_filter, 100) + numero_pagina = request.GET.get('pagina') + anime_sub_ita = paginator.get_page(numero_pagina) + context = {"anime_sub_ita":anime_sub_ita,"generi":generi} + return render(request,"anime_sub_ita.html",context) + +def anime_ita(request): + ita = "ITA" + anime_ita_filter = Anime.objects.filter(lingua=ita).order_by('-creato_in_data') + generi = GenereAnime.objects.all() + paginator = Paginator(anime_ita_filter, 100) + numero_pagina = request.GET.get('pagina') + anime_ita = paginator.get_page(numero_pagina) + context = {"anime_ita":anime_ita,"generi":generi} + return render(request,"anime_ita.html",context) + +def anime_detail(request,slug): + anime = get_object_or_404(Anime,slug=slug) + anime.visualizzazioni += 1 + anime.save() + immagini_anime = Immagini.objects.filter(anime=anime) + genres = list(anime.genere.all()) + anime_chetipotrebberopiacere = anime_youmightlike(genres,anime) + commenti = CommentoAnime.objects.filter(media=anime).order_by("-data_commento") + is_favorite = False + watch_later = False + if request.user.is_authenticated: + profilo = get_object_or_404(Profilo,user=request.user) + preferito = anime.preferito.filter(user=profilo.user) + guarda = anime.guarda_dopo.filter(user=profilo.user) + if preferito.exists(): + is_favorite = True + if guarda.exists(): + watch_later = True + else: + is_favorite = False + watch_later = False + if request.method == "POST": + commenti_form = CommentiForms(request.POST or None) + if commenti_form.is_valid(): + commenti_form.save(commit=False) + commenti_form.instance.media = anime + profilo = Profilo.objects.get(user=request.user) + commenti_form.instance.utente = profilo + commenti_form.save() + return HttpResponseRedirect(anime.get_absolute_url()) + + else: + commenti_form = CommentiForms() + if request.method == "POST": + segnala_anime_form = SegnalazioneAnimeForm(request.POST) + if segnala_anime_form.is_valid(): + segnala_anime_form.save(commit=False) + segnala_anime_form.instance.anime = anime + segnala_anime_form.save() + return HttpResponseRedirect(anime.get_absolute_url()) + else: + segnala_anime_form = SegnalazioneAnimeForm() + context = {"anime":anime,"anime_chetipotrebberopiacere":anime_chetipotrebberopiacere,"is_favorite":is_favorite,"watch_later":watch_later,"segnala_anime_form":segnala_anime_form,"commenti_form":commenti_form,"commenti":commenti,"immagini_anime":immagini_anime} + return render(request,"anime_template.html",context) + +@staff_member_required +def add_anime_api(request): + if request.method == "GET": + form = SearchAnimeAPI(request.GET or None) + if form.is_valid(): + serie = form.cleaned_data["anime"] + data_tv_show = search_tv_show(serie) + tv_genre,tv_show_info = get_tvshow_info(data_tv_show) + titolo = data_tv_show['data'][0]['seriesName'] + descrizione = data_tv_show['data'][0]['overview'] + immagini = data_tv_show['data'][0]['poster'] + img_path = image_Endpoint() + immagini + generi = tv_genre['data']['genre'] + lista_generi = ", ".join(generi) + stagioni = tv_genre['data']['season'] + # for generi in data_tv_show['data'][0]['genre']: + # print(generi) + anime = {"titolo":titolo,"descrizione":descrizione,"poster":img_path,"lista_generi":lista_generi,"stagioni":stagioni,"generi":generi} + return render(request,'visualizza_risultatianime.html',anime) + else: + form = SearchAnimeAPI() + context = {"form":form} + return render(request,'aggiungi_anime_api.html',context) + +@staff_member_required +def salva_anime(request,titolo,descrizione,generi,stagioni,poster): + if request.method == "GET": + print(titolo,descrizione,generi) + data_tv_show = search_tv_show(titolo) + tv_genre,tv_show_info = get_tvshow_info(data_tv_show) + background = tv_genre['data']['fanart'] + background_path = 'https://artworks.thetvdb.com/banners/' + background + data_uscita = data_tv_show["data"][0]["firstAired"] + data_rilascio = re.search('(^.{4})',data_uscita) + year = data_rilascio.group(1) + anime = Anime() + if Anime.objects.filter(titolo=titolo).exists(): + return HttpResponse('Anime giá presente nel DB!') + else: + anime.titolo = titolo + anime.descrizione = descrizione + anime.immagine_poster = get_image(poster) + anime.immagine_background = get_image(background_path) + anime.data_uscita = year + anime.save() + generi = list(generi.split(", ")) + lista_generi_ita = englishgenres(generi) + for genre in lista_generi_ita: + if GenereAnime.objects.filter(genere=genre).exists(): + genere = GenereAnime.objects.get(genere=genre) + anime.genere.add(genere) + else: + GenereAnime.objects.get_or_create(genere=genre) + genere = GenereAnime.objects.get(genere=genre) + anime.genere.add(genere) + if stagioni == 1: + season = Stagioni.objects.create(numero_stagione=stagioni,anime=anime) + for episodes in tv_show_info['data']: + if season.numero_stagione == episodes['airedSeason']: + numero_stagione = Stagioni.objects.get(numero_stagione=season.numero_stagione,anime=season.anime) + print(numero_stagione) + Episodi.objects.create(stagione=numero_stagione,numero_episodio=episodes['airedEpisodeNumber'],streaming_link="",nome_episodio=episodes['episodeName']) + else: + for seasons in range(1,(stagioni+1)): + season = Stagioni.objects.create(numero_stagione=seasons,anime=anime) + for episodes in tv_show_info['data']: + if season.numero_stagione == episodes['airedSeason']: + numero_stagione = Stagioni.objects.get(numero_stagione=season.numero_stagione,anime=season.anime) + Episodi.objects.create(stagione=numero_stagione,numero_episodio=episodes['airedEpisodeNumber'],streaming_link="",nome_episodio=episodes['episodeName']) + return redirect(anime.get_absolute_url()) + +def preferiti(request,slug): + anime = get_object_or_404(Anime,slug=slug) + user = request.user + profilo = get_object_or_404(Profilo,user=user) + preferito = anime.preferito.filter(user=profilo.user) + if preferito.exists(): # Controllo se il ManyToManyField esiste filtrandolo con l'id dell'utente che esegue la richiesta + anime.preferito.remove(profilo) # Se esiste rimuovo dai preferiti + messages.error(request, 'Film tolto dai preferiti correttamente!') # Mostro il messaggio + else: + anime.preferito.add(profilo) # Se il ManyToManyField non esiste lo creo aggiungendo ai preferiti l'id dell'utente che esegue la richiesta + messages.success(request, 'Film aggiunto ai preferiti correttamente!') # Mostro il messaggio + return HttpResponseRedirect(anime.get_absolute_url()) # Ritorno l'absolute url del film + +def guarda_dopo(request,slug): + anime = get_object_or_404(Anime,slug=slug) + user = request.user + profilo = get_object_or_404(Profilo,user=user) + guarda_dopo = anime.guarda_dopo.filter(user=profilo.user) + if guarda_dopo.exists(): + anime.guarda_dopo.remove(profilo) + else: + anime.guarda_dopo.add(profilo) + return HttpResponseRedirect(anime.get_absolute_url()) + +class DeleteComment(DeleteView): + model = CommentoAnime + + def get_success_url(self): + anime = self.get_object().media + return reverse_lazy('anime-detail', kwargs={'slug': anime.slug}) \ No newline at end of file diff --git a/Film/__init__.py b/Film/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Film/__pycache__/__init__.cpython-37.pyc b/Film/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..2831e83 Binary files /dev/null and b/Film/__pycache__/__init__.cpython-37.pyc differ diff --git a/Film/__pycache__/__init__.cpython-38.pyc b/Film/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..f066d00 Binary files /dev/null and b/Film/__pycache__/__init__.cpython-38.pyc differ diff --git a/Film/__pycache__/admin.cpython-37.pyc b/Film/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..cf6361b Binary files /dev/null and b/Film/__pycache__/admin.cpython-37.pyc differ diff --git a/Film/__pycache__/admin.cpython-38.pyc b/Film/__pycache__/admin.cpython-38.pyc new file mode 100644 index 0000000..4174db1 Binary files /dev/null and b/Film/__pycache__/admin.cpython-38.pyc differ diff --git a/Film/__pycache__/forms.cpython-37.pyc b/Film/__pycache__/forms.cpython-37.pyc new file mode 100644 index 0000000..4d39b0e Binary files /dev/null and b/Film/__pycache__/forms.cpython-37.pyc differ diff --git a/Film/__pycache__/forms.cpython-38.pyc b/Film/__pycache__/forms.cpython-38.pyc new file mode 100644 index 0000000..c9dbf47 Binary files /dev/null and b/Film/__pycache__/forms.cpython-38.pyc differ diff --git a/Film/__pycache__/models.cpython-37.pyc b/Film/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..f0d055f Binary files /dev/null and b/Film/__pycache__/models.cpython-37.pyc differ diff --git a/Film/__pycache__/models.cpython-38.pyc b/Film/__pycache__/models.cpython-38.pyc new file mode 100644 index 0000000..2f35a56 Binary files /dev/null and b/Film/__pycache__/models.cpython-38.pyc differ diff --git a/Film/__pycache__/tasks.cpython-38.pyc b/Film/__pycache__/tasks.cpython-38.pyc new file mode 100644 index 0000000..b2cc02d Binary files /dev/null and b/Film/__pycache__/tasks.cpython-38.pyc differ diff --git a/Film/__pycache__/urls.cpython-37.pyc b/Film/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..9b73a9d Binary files /dev/null and b/Film/__pycache__/urls.cpython-37.pyc differ diff --git a/Film/__pycache__/urls.cpython-38.pyc b/Film/__pycache__/urls.cpython-38.pyc new file mode 100644 index 0000000..aa87764 Binary files /dev/null and b/Film/__pycache__/urls.cpython-38.pyc differ diff --git a/Film/__pycache__/views.cpython-37.pyc b/Film/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000..1c8a8c2 Binary files /dev/null and b/Film/__pycache__/views.cpython-37.pyc differ diff --git a/Film/__pycache__/views.cpython-38.pyc b/Film/__pycache__/views.cpython-38.pyc new file mode 100644 index 0000000..c6d8565 Binary files /dev/null and b/Film/__pycache__/views.cpython-38.pyc differ diff --git a/Film/admin.py b/Film/admin.py new file mode 100644 index 0000000..f0801de --- /dev/null +++ b/Film/admin.py @@ -0,0 +1,19 @@ +from django.contrib import admin +from .models import GenereFilm,Film,Commento,SegnalazioneFilm,Immagini + +class FilmImmagini(admin.StackedInline): + model=Immagini + + +class FilmAdmin(admin.ModelAdmin): + inlines = [FilmImmagini] + readonly_fields = ("creato_in_data", "aggiornato_in_data") + + class Meta: + model=Film + + +admin.site.register(GenereFilm) +admin.site.register(Commento) +admin.site.register(SegnalazioneFilm) +admin.site.register(Film,FilmAdmin) \ No newline at end of file diff --git a/Film/apps.py b/Film/apps.py new file mode 100644 index 0000000..5170c18 --- /dev/null +++ b/Film/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class FilmConfig(AppConfig): + name = 'Film' diff --git a/Film/forms.py b/Film/forms.py new file mode 100644 index 0000000..0b8c358 --- /dev/null +++ b/Film/forms.py @@ -0,0 +1,60 @@ +from django import forms +from .models import Commento,SegnalazioneFilm,Film +from utils.profanity_filter import profanity_words +from django.core.validators import ValidationError + +class CreaFilm(forms.ModelForm): + class Meta: + model = Film + exclude = ['creato_in_data','aggiornato_in_data','slug','visualizzazioni','preferito','guarda_dopo'] + widgets = { + 'titolo' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Titolo'}), + 'immagine_poster' : forms.FileInput(attrs={'id':'form__img-upload','name':'form__img-upload'}), + 'immagine_background' : forms.FileInput(attrs={'id':'form__imgbackground-upload','name':'form__imgbackground-upload'}), + 'descrizione' : forms.Textarea(attrs={'class' : 'form__textarea', 'placeholder': 'Descrizione','id': 'text'}), + 'genere' : forms.SelectMultiple(attrs={'class':'js-example-basic-multiple','id':'genere'}), + 'qualità_video' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Qualitá Video'}), + 'età_consigliata' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Etá Consigliata'}), + 'lingua' : forms.Select(attrs={'class':' js-example-basic-single select2-hidden-accessible','id':'lingua'}), + 'data_uscita' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Data Uscita'}), + 'durata' : forms.TextInput(attrs={'class' : 'form__input','placeholder': 'Durata In min'}), + 'streaming_url' : forms.URLInput(attrs={'class' : 'form__input','placeholder': 'Streaming URL'}), + 'voto' : forms.NumberInput(attrs={'class' : 'form__input','placeholder': 'Voto'}) + + + } + labels = { + 'immagine_poster' : "Carica Immagine Copertina (270x400)" + } + + +class CommentiForms(forms.ModelForm): + class Meta: + model = Commento + fields = ['commento'] + widgets = { + 'commento' : forms.Textarea(attrs={'class': 'form__textarea','id':'text'}) + } + + def clean_commento(self): + super().clean() + dati = self.cleaned_data["commento"] + print(f" Hai scritto la parola : {dati}") + lista_parole_offensive = profanity_words() + for s in lista_parole_offensive: + if s in dati: + raise ValidationError("Il Contenuto Inserito viola le norme del sito! ") + return dati + +class SegnalazioneFilmForm(forms.ModelForm): + class Meta: + model = SegnalazioneFilm + exclude = ['film'] + widgets = { + 'descrizione_problema' : forms.Textarea(attrs={'class': 'form__textarea','id':'text'}), + 'problema_video' : forms.Select(attrs={'class':' js-example-basic-single select2-hidden-accessible','id':'segnalaproblema'}) + } + labels = { + 'descrizione_problema': '', + 'problema_video' : '' + } \ No newline at end of file diff --git a/Film/migrations/0001_initial.py b/Film/migrations/0001_initial.py new file mode 100644 index 0000000..6ac6b9b --- /dev/null +++ b/Film/migrations/0001_initial.py @@ -0,0 +1,39 @@ +# Generated by Django 3.0.7 on 2020-06-17 16:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='GenereFilm', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('genere', models.CharField(max_length=120)), + ], + options={ + 'verbose_name': 'Genere', + 'verbose_name_plural': 'Generi', + }, + ), + migrations.CreateModel( + name='Film', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('titolo', models.CharField(max_length=200)), + ('descrizione', models.CharField(max_length=200)), + ('immagine_url', models.URLField(blank=True, null=True)), + ('generi', models.ManyToManyField(blank=True, to='Film.GenereFilm')), + ], + options={ + 'verbose_name': 'Film', + 'verbose_name_plural': 'Film', + }, + ), + ] diff --git a/Film/migrations/0002_auto_20200728_1008.py b/Film/migrations/0002_auto_20200728_1008.py new file mode 100644 index 0000000..32f0751 --- /dev/null +++ b/Film/migrations/0002_auto_20200728_1008.py @@ -0,0 +1,34 @@ +# Generated by Django 3.0.7 on 2020-07-28 10:08 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='aggiornato_in_data', + field=models.DateField(auto_now=True, null=True), + ), + migrations.AddField( + model_name='film', + name='creato_in_data', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='film', + name='immagine_locale', + field=models.ImageField(blank=True, null=True, upload_to=''), + ), + migrations.AddField( + model_name='film', + name='voto', + field=models.PositiveSmallIntegerField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(10)]), + ), + ] diff --git a/Film/migrations/0003_auto_20200728_1143.py b/Film/migrations/0003_auto_20200728_1143.py new file mode 100644 index 0000000..43c9c08 --- /dev/null +++ b/Film/migrations/0003_auto_20200728_1143.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-28 11:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0002_auto_20200728_1008'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='descrizione', + field=models.CharField(max_length=500), + ), + ] diff --git a/Film/migrations/0004_auto_20200728_1145.py b/Film/migrations/0004_auto_20200728_1145.py new file mode 100644 index 0000000..98772de --- /dev/null +++ b/Film/migrations/0004_auto_20200728_1145.py @@ -0,0 +1,19 @@ +# Generated by Django 3.0.7 on 2020-07-28 11:45 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0003_auto_20200728_1143'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='voto', + field=models.FloatField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1.0), django.core.validators.MaxValueValidator(10.0)]), + ), + ] diff --git a/Film/migrations/0005_auto_20200728_1146.py b/Film/migrations/0005_auto_20200728_1146.py new file mode 100644 index 0000000..84bb971 --- /dev/null +++ b/Film/migrations/0005_auto_20200728_1146.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-28 11:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0004_auto_20200728_1145'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='descrizione', + field=models.TextField(), + ), + ] diff --git a/Film/migrations/0006_film_slug.py b/Film/migrations/0006_film_slug.py new file mode 100644 index 0000000..bc12af5 --- /dev/null +++ b/Film/migrations/0006_film_slug.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-28 11:57 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0005_auto_20200728_1146'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='slug', + field=models.SlugField(blank=True, null=True, verbose_name='djangodbmodelsfieldscharfield'), + ), + ] diff --git a/Film/migrations/0007_auto_20200728_1202.py b/Film/migrations/0007_auto_20200728_1202.py new file mode 100644 index 0000000..de9b281 --- /dev/null +++ b/Film/migrations/0007_auto_20200728_1202.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-28 12:02 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0006_film_slug'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='slug', + field=models.SlugField(unique=True), + ), + ] diff --git a/Film/migrations/0008_auto_20200728_1203.py b/Film/migrations/0008_auto_20200728_1203.py new file mode 100644 index 0000000..d6b7c30 --- /dev/null +++ b/Film/migrations/0008_auto_20200728_1203.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-28 12:03 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0007_auto_20200728_1202'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='slug', + field=models.SlugField(blank=True, null=True, unique=True), + ), + ] diff --git a/Film/migrations/0009_auto_20200728_1220.py b/Film/migrations/0009_auto_20200728_1220.py new file mode 100644 index 0000000..c86d64e --- /dev/null +++ b/Film/migrations/0009_auto_20200728_1220.py @@ -0,0 +1,28 @@ +# Generated by Django 3.0.7 on 2020-07-28 12:20 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0008_auto_20200728_1203'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='età_consigliata', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='film', + name='immagine_background', + field=models.ImageField(blank=True, null=True, upload_to=''), + ), + migrations.AddField( + model_name='film', + name='qualità_video', + field=models.CharField(blank=True, max_length=20, null=True), + ), + ] diff --git a/Film/migrations/0010_commento.py b/Film/migrations/0010_commento.py new file mode 100644 index 0000000..a51a093 --- /dev/null +++ b/Film/migrations/0010_commento.py @@ -0,0 +1,30 @@ +# Generated by Django 3.0.7 on 2020-07-31 13:03 + +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), + ('Film', '0009_auto_20200728_1220'), + ] + + operations = [ + migrations.CreateModel( + name='Commento', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('commento', models.TextField()), + ('data_commento', models.DateTimeField(auto_now_add=True)), + ('film', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_film', to='Film.Film')), + ('utente', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_user', to=settings.AUTH_USER_MODEL)), + ], + options={ + 'verbose_name': 'Commento', + 'verbose_name_plural': 'Commenti', + }, + ), + ] diff --git a/Film/migrations/0011_auto_20200801_1452.py b/Film/migrations/0011_auto_20200801_1452.py new file mode 100644 index 0000000..8e2ed50 --- /dev/null +++ b/Film/migrations/0011_auto_20200801_1452.py @@ -0,0 +1,20 @@ +# Generated by Django 3.0.7 on 2020-08-01 14:52 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0001_initial'), + ('Film', '0010_commento'), + ] + + operations = [ + migrations.AlterField( + model_name='commento', + name='utente', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_user', to='core.Profilo'), + ), + ] diff --git a/Film/migrations/0012_auto_20200804_1057.py b/Film/migrations/0012_auto_20200804_1057.py new file mode 100644 index 0000000..416b98f --- /dev/null +++ b/Film/migrations/0012_auto_20200804_1057.py @@ -0,0 +1,24 @@ +# Generated by Django 3.0.7 on 2020-08-04 10:57 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ('Film', '0011_auto_20200801_1452'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='guarda_dopo', + field=models.ManyToManyField(blank=True, related_name='watch_later', to='core.Profilo'), + ), + migrations.AddField( + model_name='film', + name='preferito', + field=models.ManyToManyField(blank=True, related_name='preferiti', to='core.Profilo'), + ), + ] diff --git a/Film/migrations/0013_auto_20200807_1209.py b/Film/migrations/0013_auto_20200807_1209.py new file mode 100644 index 0000000..eafdc19 --- /dev/null +++ b/Film/migrations/0013_auto_20200807_1209.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-08-07 12:09 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0012_auto_20200804_1057'), + ] + + operations = [ + migrations.RenameField( + model_name='commento', + old_name='film', + new_name='media', + ), + ] diff --git a/Film/migrations/0014_auto_20200807_1224.py b/Film/migrations/0014_auto_20200807_1224.py new file mode 100644 index 0000000..75e9179 --- /dev/null +++ b/Film/migrations/0014_auto_20200807_1224.py @@ -0,0 +1,22 @@ +# Generated by Django 3.0.7 on 2020-08-07 12:24 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0013_auto_20200807_1209'), + ] + + operations = [ + migrations.RenameField( + model_name='film', + old_name='immagine_locale', + new_name='immagine_poster', + ), + migrations.RemoveField( + model_name='film', + name='immagine_url', + ), + ] diff --git a/Film/migrations/0015_segnalazionefilm.py b/Film/migrations/0015_segnalazionefilm.py new file mode 100644 index 0000000..a1497a6 --- /dev/null +++ b/Film/migrations/0015_segnalazionefilm.py @@ -0,0 +1,29 @@ +# Generated by Django 3.1 on 2020-08-09 14:44 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ('Film', '0014_auto_20200807_1224'), + ] + + operations = [ + migrations.CreateModel( + name='SegnalazioneFilm', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('problema_video', models.CharField(choices=[('Link Non Funzionante', 'Link non Funzionante'), ('Video Pessima Qualitá', 'Video Pessima Qualitá'), ('Audio Mancante', 'Audio Mancante'), ('Film Incompleto', 'Film Incompleto'), ('Altro', 'Altro')], default='Link Non Funzionante', max_length=50)), + ('descrizione_problema', models.TextField()), + ('film', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='film_segnalato', to='Film.film')), + ('utente', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='segnalazione_utente', to='core.profilo')), + ], + options={ + 'verbose_name': 'Segnalazione', + 'verbose_name_plural': 'Segnalazioni', + }, + ), + ] diff --git a/Film/migrations/0016_auto_20200811_1503.py b/Film/migrations/0016_auto_20200811_1503.py new file mode 100644 index 0000000..6e55f69 --- /dev/null +++ b/Film/migrations/0016_auto_20200811_1503.py @@ -0,0 +1,22 @@ +# Generated by Django 3.0.7 on 2020-08-11 15:03 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0015_segnalazionefilm'), + ] + + operations = [ + migrations.RemoveField( + model_name='segnalazionefilm', + name='utente', + ), + migrations.AlterField( + model_name='segnalazionefilm', + name='problema_video', + field=models.CharField(choices=[('Link Non Funzionante', 'Link Non Funzionante'), ('Video Pessima Qualitá', 'Video Pessima Qualitá'), ('Audio Mancante', 'Audio Mancante'), ('Film Incompleto', 'Film Incompleto'), ('Altro', 'Altro')], default='Link Non Funzionante', max_length=50), + ), + ] diff --git a/Film/migrations/0017_film_data_uscita.py b/Film/migrations/0017_film_data_uscita.py new file mode 100644 index 0000000..15249e2 --- /dev/null +++ b/Film/migrations/0017_film_data_uscita.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-13 22:48 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0016_auto_20200811_1503'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='data_uscita', + field=models.CharField(blank=True, max_length=20, null=True), + ), + ] diff --git a/Film/migrations/0018_auto_20200819_0052.py b/Film/migrations/0018_auto_20200819_0052.py new file mode 100644 index 0000000..a84c11c --- /dev/null +++ b/Film/migrations/0018_auto_20200819_0052.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-18 22:52 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0017_film_data_uscita'), + ] + + operations = [ + migrations.RenameField( + model_name='film', + old_name='generi', + new_name='genere', + ), + ] diff --git a/Film/migrations/0019_film_lingua.py b/Film/migrations/0019_film_lingua.py new file mode 100644 index 0000000..c41221b --- /dev/null +++ b/Film/migrations/0019_film_lingua.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-23 13:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0018_auto_20200819_0052'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='lingua', + field=models.CharField(choices=[('ITA', 'Italiano'), ('SUB-ITA', 'SUB-ITA')], default='ITA', max_length=12), + ), + ] diff --git a/Film/migrations/0020_auto_20200823_1619.py b/Film/migrations/0020_auto_20200823_1619.py new file mode 100644 index 0000000..44a7d4d --- /dev/null +++ b/Film/migrations/0020_auto_20200823_1619.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1 on 2020-08-23 14:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0019_film_lingua'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='visualizzazioni', + field=models.IntegerField(default=0), + ), + migrations.AlterField( + model_name='film', + name='lingua', + field=models.CharField(choices=[('ITA', 'Italiano'), ('SUB-ITA', 'Sottotitolato In Italiano')], default='ITA', max_length=12), + ), + ] diff --git a/Film/migrations/0021_auto_20200918_2000.py b/Film/migrations/0021_auto_20200918_2000.py new file mode 100644 index 0000000..975d94d --- /dev/null +++ b/Film/migrations/0021_auto_20200918_2000.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1 on 2020-09-18 18:00 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0020_auto_20200823_1619'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='durata', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='film', + name='streaming_url', + field=models.URLField(blank=True, null=True), + ), + ] diff --git a/Film/migrations/0022_immagini.py b/Film/migrations/0022_immagini.py new file mode 100644 index 0000000..096a4f2 --- /dev/null +++ b/Film/migrations/0022_immagini.py @@ -0,0 +1,22 @@ +# Generated by Django 3.1 on 2020-09-20 16:55 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0021_auto_20200918_2000'), + ] + + operations = [ + migrations.CreateModel( + name='Immagini', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('immagini', models.ImageField(blank=True, null=True, upload_to='')), + ('film', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='immagini_film', to='Film.film')), + ], + ), + ] diff --git a/Film/migrations/0023_film_trailer.py b/Film/migrations/0023_film_trailer.py new file mode 100644 index 0000000..ac69f3a --- /dev/null +++ b/Film/migrations/0023_film_trailer.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-11-09 16:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0022_immagini'), + ] + + operations = [ + migrations.AddField( + model_name='film', + name='trailer', + field=models.URLField(blank=True, null=True), + ), + ] diff --git a/Film/migrations/0024_auto_20201109_1943.py b/Film/migrations/0024_auto_20201109_1943.py new file mode 100644 index 0000000..510f6e7 --- /dev/null +++ b/Film/migrations/0024_auto_20201109_1943.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-11-09 19:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0023_film_trailer'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='aggiornato_in_data', + field=models.DateTimeField(auto_now=True, null=True), + ), + ] diff --git a/Film/migrations/0025_auto_20201109_2011.py b/Film/migrations/0025_auto_20201109_2011.py new file mode 100644 index 0000000..f7762ea --- /dev/null +++ b/Film/migrations/0025_auto_20201109_2011.py @@ -0,0 +1,19 @@ +# Generated by Django 3.1.2 on 2020-11-09 20:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Film', '0024_auto_20201109_1943'), + ] + + operations = [ + migrations.AlterField( + model_name='film', + name='aggiornato_in_data', + field=models.DateTimeField(auto_now=True, default=None), + preserve_default=False, + ), + ] diff --git a/Film/migrations/__init__.py b/Film/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Film/migrations/__pycache__/0001_initial.cpython-37.pyc b/Film/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000..8638887 Binary files /dev/null and b/Film/migrations/__pycache__/0001_initial.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0001_initial.cpython-38.pyc b/Film/migrations/__pycache__/0001_initial.cpython-38.pyc new file mode 100644 index 0000000..f74005d Binary files /dev/null and b/Film/migrations/__pycache__/0001_initial.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0002_auto_20200728_1008.cpython-37.pyc b/Film/migrations/__pycache__/0002_auto_20200728_1008.cpython-37.pyc new file mode 100644 index 0000000..8404742 Binary files /dev/null and b/Film/migrations/__pycache__/0002_auto_20200728_1008.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0002_auto_20200728_1008.cpython-38.pyc b/Film/migrations/__pycache__/0002_auto_20200728_1008.cpython-38.pyc new file mode 100644 index 0000000..a4904a9 Binary files /dev/null and b/Film/migrations/__pycache__/0002_auto_20200728_1008.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0002_film_immagine_url.cpython-37.pyc b/Film/migrations/__pycache__/0002_film_immagine_url.cpython-37.pyc new file mode 100644 index 0000000..1da1485 Binary files /dev/null and b/Film/migrations/__pycache__/0002_film_immagine_url.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0003_auto_20200610_1932.cpython-37.pyc b/Film/migrations/__pycache__/0003_auto_20200610_1932.cpython-37.pyc new file mode 100644 index 0000000..ff57927 Binary files /dev/null and b/Film/migrations/__pycache__/0003_auto_20200610_1932.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0003_auto_20200728_1143.cpython-37.pyc b/Film/migrations/__pycache__/0003_auto_20200728_1143.cpython-37.pyc new file mode 100644 index 0000000..c40b2bb Binary files /dev/null and b/Film/migrations/__pycache__/0003_auto_20200728_1143.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0003_auto_20200728_1143.cpython-38.pyc b/Film/migrations/__pycache__/0003_auto_20200728_1143.cpython-38.pyc new file mode 100644 index 0000000..55cbea4 Binary files /dev/null and b/Film/migrations/__pycache__/0003_auto_20200728_1143.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0004_auto_20200610_1932.cpython-37.pyc b/Film/migrations/__pycache__/0004_auto_20200610_1932.cpython-37.pyc new file mode 100644 index 0000000..47ab37c Binary files /dev/null and b/Film/migrations/__pycache__/0004_auto_20200610_1932.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0004_auto_20200728_1145.cpython-37.pyc b/Film/migrations/__pycache__/0004_auto_20200728_1145.cpython-37.pyc new file mode 100644 index 0000000..4025ceb Binary files /dev/null and b/Film/migrations/__pycache__/0004_auto_20200728_1145.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0004_auto_20200728_1145.cpython-38.pyc b/Film/migrations/__pycache__/0004_auto_20200728_1145.cpython-38.pyc new file mode 100644 index 0000000..9605af3 Binary files /dev/null and b/Film/migrations/__pycache__/0004_auto_20200728_1145.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0005_auto_20200728_1146.cpython-37.pyc b/Film/migrations/__pycache__/0005_auto_20200728_1146.cpython-37.pyc new file mode 100644 index 0000000..b5f676f Binary files /dev/null and b/Film/migrations/__pycache__/0005_auto_20200728_1146.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0005_auto_20200728_1146.cpython-38.pyc b/Film/migrations/__pycache__/0005_auto_20200728_1146.cpython-38.pyc new file mode 100644 index 0000000..efb768c Binary files /dev/null and b/Film/migrations/__pycache__/0005_auto_20200728_1146.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0006_film_slug.cpython-37.pyc b/Film/migrations/__pycache__/0006_film_slug.cpython-37.pyc new file mode 100644 index 0000000..8129ea0 Binary files /dev/null and b/Film/migrations/__pycache__/0006_film_slug.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0006_film_slug.cpython-38.pyc b/Film/migrations/__pycache__/0006_film_slug.cpython-38.pyc new file mode 100644 index 0000000..6cf1469 Binary files /dev/null and b/Film/migrations/__pycache__/0006_film_slug.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0007_auto_20200728_1202.cpython-37.pyc b/Film/migrations/__pycache__/0007_auto_20200728_1202.cpython-37.pyc new file mode 100644 index 0000000..0f0eac1 Binary files /dev/null and b/Film/migrations/__pycache__/0007_auto_20200728_1202.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0007_auto_20200728_1202.cpython-38.pyc b/Film/migrations/__pycache__/0007_auto_20200728_1202.cpython-38.pyc new file mode 100644 index 0000000..44d9ce4 Binary files /dev/null and b/Film/migrations/__pycache__/0007_auto_20200728_1202.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0008_auto_20200728_1203.cpython-37.pyc b/Film/migrations/__pycache__/0008_auto_20200728_1203.cpython-37.pyc new file mode 100644 index 0000000..6f79bee Binary files /dev/null and b/Film/migrations/__pycache__/0008_auto_20200728_1203.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0008_auto_20200728_1203.cpython-38.pyc b/Film/migrations/__pycache__/0008_auto_20200728_1203.cpython-38.pyc new file mode 100644 index 0000000..6e5bf5e Binary files /dev/null and b/Film/migrations/__pycache__/0008_auto_20200728_1203.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0009_auto_20200728_1220.cpython-37.pyc b/Film/migrations/__pycache__/0009_auto_20200728_1220.cpython-37.pyc new file mode 100644 index 0000000..e3ae1db Binary files /dev/null and b/Film/migrations/__pycache__/0009_auto_20200728_1220.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0009_auto_20200728_1220.cpython-38.pyc b/Film/migrations/__pycache__/0009_auto_20200728_1220.cpython-38.pyc new file mode 100644 index 0000000..719dbf8 Binary files /dev/null and b/Film/migrations/__pycache__/0009_auto_20200728_1220.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0010_commento.cpython-37.pyc b/Film/migrations/__pycache__/0010_commento.cpython-37.pyc new file mode 100644 index 0000000..5611664 Binary files /dev/null and b/Film/migrations/__pycache__/0010_commento.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0010_commento.cpython-38.pyc b/Film/migrations/__pycache__/0010_commento.cpython-38.pyc new file mode 100644 index 0000000..b11d1c0 Binary files /dev/null and b/Film/migrations/__pycache__/0010_commento.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0011_auto_20200801_1452.cpython-37.pyc b/Film/migrations/__pycache__/0011_auto_20200801_1452.cpython-37.pyc new file mode 100644 index 0000000..7c4f2a7 Binary files /dev/null and b/Film/migrations/__pycache__/0011_auto_20200801_1452.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0011_auto_20200801_1452.cpython-38.pyc b/Film/migrations/__pycache__/0011_auto_20200801_1452.cpython-38.pyc new file mode 100644 index 0000000..54e1aed Binary files /dev/null and b/Film/migrations/__pycache__/0011_auto_20200801_1452.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0012_auto_20200804_1057.cpython-37.pyc b/Film/migrations/__pycache__/0012_auto_20200804_1057.cpython-37.pyc new file mode 100644 index 0000000..4f90247 Binary files /dev/null and b/Film/migrations/__pycache__/0012_auto_20200804_1057.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0012_auto_20200804_1057.cpython-38.pyc b/Film/migrations/__pycache__/0012_auto_20200804_1057.cpython-38.pyc new file mode 100644 index 0000000..dadb912 Binary files /dev/null and b/Film/migrations/__pycache__/0012_auto_20200804_1057.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0013_auto_20200807_1209.cpython-37.pyc b/Film/migrations/__pycache__/0013_auto_20200807_1209.cpython-37.pyc new file mode 100644 index 0000000..0a25a95 Binary files /dev/null and b/Film/migrations/__pycache__/0013_auto_20200807_1209.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0013_auto_20200807_1209.cpython-38.pyc b/Film/migrations/__pycache__/0013_auto_20200807_1209.cpython-38.pyc new file mode 100644 index 0000000..f92a32a Binary files /dev/null and b/Film/migrations/__pycache__/0013_auto_20200807_1209.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0014_auto_20200807_1224.cpython-37.pyc b/Film/migrations/__pycache__/0014_auto_20200807_1224.cpython-37.pyc new file mode 100644 index 0000000..22c91ca Binary files /dev/null and b/Film/migrations/__pycache__/0014_auto_20200807_1224.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0014_auto_20200807_1224.cpython-38.pyc b/Film/migrations/__pycache__/0014_auto_20200807_1224.cpython-38.pyc new file mode 100644 index 0000000..b3ffa58 Binary files /dev/null and b/Film/migrations/__pycache__/0014_auto_20200807_1224.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0015_segnalazionefilm.cpython-37.pyc b/Film/migrations/__pycache__/0015_segnalazionefilm.cpython-37.pyc new file mode 100644 index 0000000..a31c8c8 Binary files /dev/null and b/Film/migrations/__pycache__/0015_segnalazionefilm.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0015_segnalazionefilm.cpython-38.pyc b/Film/migrations/__pycache__/0015_segnalazionefilm.cpython-38.pyc new file mode 100644 index 0000000..be660a2 Binary files /dev/null and b/Film/migrations/__pycache__/0015_segnalazionefilm.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0016_auto_20200811_1503.cpython-37.pyc b/Film/migrations/__pycache__/0016_auto_20200811_1503.cpython-37.pyc new file mode 100644 index 0000000..960499a Binary files /dev/null and b/Film/migrations/__pycache__/0016_auto_20200811_1503.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0016_auto_20200811_1503.cpython-38.pyc b/Film/migrations/__pycache__/0016_auto_20200811_1503.cpython-38.pyc new file mode 100644 index 0000000..74261c9 Binary files /dev/null and b/Film/migrations/__pycache__/0016_auto_20200811_1503.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0017_film_data_uscita.cpython-37.pyc b/Film/migrations/__pycache__/0017_film_data_uscita.cpython-37.pyc new file mode 100644 index 0000000..675c432 Binary files /dev/null and b/Film/migrations/__pycache__/0017_film_data_uscita.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0017_film_data_uscita.cpython-38.pyc b/Film/migrations/__pycache__/0017_film_data_uscita.cpython-38.pyc new file mode 100644 index 0000000..7f26102 Binary files /dev/null and b/Film/migrations/__pycache__/0017_film_data_uscita.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0018_auto_20200819_0052.cpython-37.pyc b/Film/migrations/__pycache__/0018_auto_20200819_0052.cpython-37.pyc new file mode 100644 index 0000000..ba0c589 Binary files /dev/null and b/Film/migrations/__pycache__/0018_auto_20200819_0052.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0018_auto_20200819_0052.cpython-38.pyc b/Film/migrations/__pycache__/0018_auto_20200819_0052.cpython-38.pyc new file mode 100644 index 0000000..8d6dff3 Binary files /dev/null and b/Film/migrations/__pycache__/0018_auto_20200819_0052.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0019_film_lingua.cpython-37.pyc b/Film/migrations/__pycache__/0019_film_lingua.cpython-37.pyc new file mode 100644 index 0000000..fc153d7 Binary files /dev/null and b/Film/migrations/__pycache__/0019_film_lingua.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0019_film_lingua.cpython-38.pyc b/Film/migrations/__pycache__/0019_film_lingua.cpython-38.pyc new file mode 100644 index 0000000..bc645cf Binary files /dev/null and b/Film/migrations/__pycache__/0019_film_lingua.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0020_auto_20200823_1619.cpython-37.pyc b/Film/migrations/__pycache__/0020_auto_20200823_1619.cpython-37.pyc new file mode 100644 index 0000000..af7778f Binary files /dev/null and b/Film/migrations/__pycache__/0020_auto_20200823_1619.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0020_auto_20200823_1619.cpython-38.pyc b/Film/migrations/__pycache__/0020_auto_20200823_1619.cpython-38.pyc new file mode 100644 index 0000000..37abe95 Binary files /dev/null and b/Film/migrations/__pycache__/0020_auto_20200823_1619.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0021_auto_20200918_2000.cpython-37.pyc b/Film/migrations/__pycache__/0021_auto_20200918_2000.cpython-37.pyc new file mode 100644 index 0000000..0df1207 Binary files /dev/null and b/Film/migrations/__pycache__/0021_auto_20200918_2000.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0021_auto_20200918_2000.cpython-38.pyc b/Film/migrations/__pycache__/0021_auto_20200918_2000.cpython-38.pyc new file mode 100644 index 0000000..2d62355 Binary files /dev/null and b/Film/migrations/__pycache__/0021_auto_20200918_2000.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0022_immagini.cpython-37.pyc b/Film/migrations/__pycache__/0022_immagini.cpython-37.pyc new file mode 100644 index 0000000..6600921 Binary files /dev/null and b/Film/migrations/__pycache__/0022_immagini.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0022_immagini.cpython-38.pyc b/Film/migrations/__pycache__/0022_immagini.cpython-38.pyc new file mode 100644 index 0000000..76830a1 Binary files /dev/null and b/Film/migrations/__pycache__/0022_immagini.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0023_film_trailer.cpython-37.pyc b/Film/migrations/__pycache__/0023_film_trailer.cpython-37.pyc new file mode 100644 index 0000000..8533159 Binary files /dev/null and b/Film/migrations/__pycache__/0023_film_trailer.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0023_film_trailer.cpython-38.pyc b/Film/migrations/__pycache__/0023_film_trailer.cpython-38.pyc new file mode 100644 index 0000000..73a8529 Binary files /dev/null and b/Film/migrations/__pycache__/0023_film_trailer.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0024_auto_20201109_1943.cpython-37.pyc b/Film/migrations/__pycache__/0024_auto_20201109_1943.cpython-37.pyc new file mode 100644 index 0000000..45d2107 Binary files /dev/null and b/Film/migrations/__pycache__/0024_auto_20201109_1943.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0024_auto_20201109_1943.cpython-38.pyc b/Film/migrations/__pycache__/0024_auto_20201109_1943.cpython-38.pyc new file mode 100644 index 0000000..11ccfc8 Binary files /dev/null and b/Film/migrations/__pycache__/0024_auto_20201109_1943.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/0025_auto_20201109_2011.cpython-37.pyc b/Film/migrations/__pycache__/0025_auto_20201109_2011.cpython-37.pyc new file mode 100644 index 0000000..346b847 Binary files /dev/null and b/Film/migrations/__pycache__/0025_auto_20201109_2011.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/0025_auto_20201109_2011.cpython-38.pyc b/Film/migrations/__pycache__/0025_auto_20201109_2011.cpython-38.pyc new file mode 100644 index 0000000..bdd0cd7 Binary files /dev/null and b/Film/migrations/__pycache__/0025_auto_20201109_2011.cpython-38.pyc differ diff --git a/Film/migrations/__pycache__/__init__.cpython-37.pyc b/Film/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..0007586 Binary files /dev/null and b/Film/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/Film/migrations/__pycache__/__init__.cpython-38.pyc b/Film/migrations/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..efe061e Binary files /dev/null and b/Film/migrations/__pycache__/__init__.cpython-38.pyc differ diff --git a/Film/models.py b/Film/models.py new file mode 100644 index 0000000..0e6d385 --- /dev/null +++ b/Film/models.py @@ -0,0 +1,105 @@ +from django.db import models +from django.urls import reverse +from django.contrib.auth.models import User +from django.core.validators import MinValueValidator,MaxValueValidator +from django.utils.text import slugify +from core.models import Profilo +from django.contrib.contenttypes.fields import GenericRelation +# Create your models here. + + +class GenereFilm(models.Model): + genere = models.CharField(max_length=120) + + def __str__(self): + return self.genere + + class Meta: + verbose_name = "Genere" + verbose_name_plural = "Generi" + + def get_absolute_url(self): + return reverse('film-genere', kwargs={'genere': self.genere}) + +class Film(models.Model): + titolo = models.CharField(max_length=200) + descrizione = models.TextField() + genere = models.ManyToManyField(GenereFilm,blank=True) + qualità_video = models.CharField(max_length=20,null=True,blank=True) + età_consigliata = models.CharField(max_length=20,null=True,blank=True) + immagine_background = models.ImageField(null=True,blank=True) + immagine_poster = models.ImageField(null=True,blank=True) + LINGUE = [ + ('ITA', "Italiano"), + ('SUB-ITA', "Sottotitolato In Italiano"), + ] + lingua = models.CharField(max_length=12,choices=LINGUE,default="ITA") + voto = models.FloatField(validators=[MinValueValidator(1.0),MaxValueValidator(10.0)],null=True,blank=True) + creato_in_data = models.DateTimeField(auto_now_add=True,null=True,blank=True) + aggiornato_in_data = models.DateTimeField(auto_now=True) + slug = models.SlugField(unique=True,null=True,blank=True) + preferito = models.ManyToManyField(Profilo,related_name="preferiti",blank=True) + guarda_dopo = models.ManyToManyField(Profilo,related_name="watch_later",blank=True) + data_uscita = models.CharField(max_length=20,null=True,blank=True) + visualizzazioni = models.IntegerField(default=0) + durata = models.CharField(max_length=20,null=True,blank=True) + streaming_url = models.URLField(null=True,blank=True) + trailer = models.URLField(null=True,blank=True) + + def __str__(self): + return self.titolo + class Meta: + verbose_name = "Film" + verbose_name_plural = "Film" + + def save(self, *args, **kwargs): + self.slug = slugify(self.titolo) + super(Film,self).save(*args, **kwargs) + + def get_absolute_url(self): + return reverse('film-detail', kwargs={'slug': self.slug}) + + +class Commento(models.Model): + utente = models.ForeignKey(Profilo,on_delete=models.CASCADE,related_name="commenti_user") + commento = models.TextField() + data_commento = models.DateTimeField(auto_now_add=True) + media = models.ForeignKey(Film,on_delete=models.CASCADE,related_name="commenti_film") + + class Meta: + verbose_name = "Commento" + verbose_name_plural = "Commenti" + + def __str__(self): + return f"{self.utente.user} ha scritto un commento sul Film {self.media.titolo}" + + +class SegnalazioneFilm(models.Model): + LISTA_PROBLEMI_VIDEO = [ + ('Link Non Funzionante', 'Link Non Funzionante'), + ('Video Pessima Qualitá', 'Video Pessima Qualitá'), + ('Audio Mancante', 'Audio Mancante'), + ('Film Incompleto', 'Film Incompleto'), + ('Altro', 'Altro'), + ] + problema_video = models.CharField( + max_length=50, + choices=LISTA_PROBLEMI_VIDEO, + default='Link Non Funzionante', + ) + descrizione_problema = models.TextField() + film = models.ForeignKey(Film,on_delete=models.CASCADE,related_name="film_segnalato") + + class Meta: + verbose_name = "Segnalazione" + verbose_name_plural = "Segnalazioni" + + def __str__(self): + return f"Hanno Segnalato un Problema sul Film {self.film.titolo}" + +class Immagini(models.Model): + film = models.ForeignKey(Film,on_delete=models.CASCADE,related_name="immagini_film") + immagini = models.ImageField(null=True,blank=True) + + def __str__(self): + return f"Immagine del Film {self.film.titolo}" \ No newline at end of file diff --git a/Film/tests.py b/Film/tests.py new file mode 100644 index 0000000..c2629a3 --- /dev/null +++ b/Film/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. \ No newline at end of file diff --git a/Film/urls.py b/Film/urls.py new file mode 100644 index 0000000..9ba703c --- /dev/null +++ b/Film/urls.py @@ -0,0 +1,21 @@ +from django.urls import path +from django.conf import settings +from django.conf.urls.static import static +from .views import cerca_film,cerca,save_film,film_genere,lista_generi,film_detail,film_list,aggiungiCommento,preferiti,guarda_dopo,crea_film,DeleteComment + + +urlpatterns = [ + path("cerca-film/",cerca_film,name="cerca-film"), + path("cerca/",cerca,name="cerca"), + path("salva-film/",save_film,name="salva-film"), + path("generi/",lista_generi,name="lista-generi"), + path('genere//',film_genere,name="film-genere"), + path("",film_list,name="film_list"), + path('/',film_detail,name="film-detail"), + path('/commenta/',aggiungiCommento,name='commenta'), + path('/aggiungi_preferiti/',preferiti,name="preferiti"), + path('/aggiungi_guarda_dopo/',guarda_dopo,name="guarda_dopo"), + path('/elimina-commento//',DeleteComment.as_view(),name="elimina_commento"), + path('crea/crea_film_form/',crea_film,name="crea_film_form") + # path("risultati-film/",risultati_film,name="risultati-film") +] \ No newline at end of file diff --git a/Film/views.py b/Film/views.py new file mode 100644 index 0000000..294fe01 --- /dev/null +++ b/Film/views.py @@ -0,0 +1,272 @@ +from .forms import CommentiForms,SegnalazioneFilmForm,CreaFilm +from core.models import Profilo +from django.core import serializers +from django.urls.base import reverse, reverse_lazy +from django.core.exceptions import ValidationError +from django.shortcuts import render,redirect,get_object_or_404 +from django.contrib.auth.decorators import login_required +from django.forms import modelformset_factory +from django.core.paginator import Paginator +from django.views.generic.edit import DeleteView +from django.contrib import messages +from django.http import HttpResponse,JsonResponse,HttpResponseRedirect,HttpResponseBadRequest +from utils.utils import get_configuration,get_film,get_genre +from utils.download_image import get_image +from .models import GenereFilm,Film,Commento,Immagini +from SerieTV.models import SerieTV +from django.db.models import Q +from django.contrib.admin.views.decorators import staff_member_required +from itertools import chain +from django.urls import reverse +import random + +def crea_film(request): + ImmaginiFormSet = modelformset_factory(Immagini,fields=('immagini',),extra=6) + if request.method == "POST": + formset = ImmaginiFormSet(request.POST or None,request.FILES or None) + form = CreaFilm(request.POST or None, request.FILES or None) + if form.is_valid() and formset.is_valid(): + film = form.save() + for immages in formset: + try: + foto = Immagini(film=film,immagini=immages.cleaned_data['immagini']) + foto.save() + except Exception as e: + break + return HttpResponseRedirect(film.get_absolute_url()) + else: + form = CreaFilm() + formset = ImmaginiFormSet(queryset=Immagini.objects.none()) + context = {"form":form,"formset":formset} + return render(request,'add-film.html',context) + + + + +def lista_generi(request): + generi_film = GenereFilm.objects.all() + context = {"generi_film":generi_film} + return render(request,'lista_generi_film.html',context) + +def film_genere(request,genere): + genere_film = get_object_or_404(GenereFilm,genere=genere) + film = Film.objects.filter(genere=genere_film) + context = {"genere":genere_film,"film":film} + return render(request,'films_genere.html',context) + + +def film_youmightlike(genres,film): + random_picked_genre = random.sample(genres,1) + film_same_genres = Film.objects.filter(genere__in=random_picked_genre).values("titolo") + current_film = film.titolo + film_with_same_genre = Film.objects.exclude(titolo=current_film) + number_film_with_same_genre = Film.objects.filter(genere__in=random_picked_genre).count() + # random_film_list = random.randint(1,number_film_with_same_genre) + # rand_film = random.sample(list(film_with_same_genre),min(random_film_list, len(film_with_same_genre))) # funzionamento precedente + rand_film = random.sample(list(film_with_same_genre),number_film_with_same_genre if number_film_with_same_genre < 8 else 8) # seleziona casualmente degli elementi univoci nel database + return rand_film + + +def countviews(film): + film.visualizzazioni += 1 + return film.save() + + +def film_detail(request,slug): + # if 'term' in request.GET: + # termine_cerca = request.GET.get('term') + # media = chain(Film.objects.filter(Q(titolo__icontains=termine_cerca)),SerieTV.objects.filter(Q(titolo__icontains=termine_cerca))) + # # film = Film.objects.filter(titolo__icontains=termine_cerca) + # # serietv = SerieTV.objects.filter(titolo__icontains=termine_cerca) + # titles = list() + # description = list() + # img_url = list() + # for streaming_media in media: + # titles.append(streaming_media.titolo) + # description.append(streaming_media.descrizione) + # print(titles) + # print(description) + # print(img_url) + # return JsonResponse(titles,safe=False) + film = get_object_or_404(Film,slug=slug) + immagini_film = Immagini.objects.filter(film=film) + countviews(film) + commenti = Commento.objects.filter(media=film).order_by('-data_commento') + commenta = CommentiForms() + generi = film.genere.all() # Lista generi dei film per generare tramite Machine Learning (in futuro) film consigliati tramite le proprio preferenze! + is_favorite = False + watch_later = False + if request.user.is_authenticated: + profilo = get_object_or_404(Profilo,user=request.user) + preferito = film.preferito.filter(user=profilo.user) + guarda = film.guarda_dopo.filter(user=profilo.user) + if preferito.exists(): + is_favorite = True + if guarda.exists(): + watch_later = True + else: + is_favorite = False + watch_later = False + if request.method == "POST": + segnala_film_form = SegnalazioneFilmForm(request.POST) + if segnala_film_form.is_valid(): + segnala_film_form.save(commit=False) + segnala_film_form.instance.film = film + segnala_film_form.save() + return HttpResponseRedirect(film.get_absolute_url()) + else: + segnala_film_form = SegnalazioneFilmForm() + genres = list(generi) + you_migth_like = film_youmightlike(genres,film) + context = {"film":film,"commenti":commenti,"commenta":commenta,"is_favorite":is_favorite,"watch_later":watch_later,"segnala_film_form":segnala_film_form,"you_migth_like":you_migth_like,"immagini_film":immagini_film} + return render(request,'details1.html',context) + +def film_list(request): + film = Film.objects.all().order_by("titolo") + generi = GenereFilm.objects.all() + paginator = Paginator(film, 100) + numero_pagina = request.GET.get('pagina') + films = paginator.get_page(numero_pagina) + context = {"films":films,"generi":generi} + return render(request,'film.html',context) + +# def autocomplete(request): +# if 'terms' in request.GET: +# termine_cerca = request.GET.get('terms') +# film = Film.objects.filter(titol__icontains=termine_cerca) +# titles = list() +# for movies in film: +# titles.append(movies.titolo) +# return JsonResponse() +@staff_member_required +def cerca(request): + return render(request,"film_cerca.html") + +@staff_member_required +def cerca_film(request): + if "film" in request.GET: + film = request.GET.get("film") + if len(film) == 0: + return redirect("cerca-film/") + api_key = "7aa61de81426820176ddbd64dca0485f" + endpoint = "https://api.themoviedb.org/3/search/movie?" + configuration_url = "https://api.themoviedb.org/3/configuration?" + genre_url = "https://api.themoviedb.org/3/genre/movie/list?" + try: + config_data = get_configuration(configuration_url,api_key) + genre_data = get_genre(genre_url,api_key) + nome_film,descrizione_film,generi_film,poster_image,background_image,data_uscita = get_film(endpoint,film,api_key,config_data,genre_data) + lista_generi_film = ", " + lista_generi_film = lista_generi_film.join(generi_film) + context = {"nome_film":nome_film,"descrizione_film":descrizione_film,"lista_generi_film":lista_generi_film,"poster_image":poster_image,"film_cercato":film} + return render(request,"cerca-film.html",context) + except: + nome_film = None + context = {"nome_film":nome_film} + return render(request,"cerca-film.html",context) + else: + return render(request,"cerca-film.html") + + + + +@staff_member_required +def save_film(request,titolo): + if request.method == "GET": + # titolo = request.POST.get("titolo") + print(titolo) + api_key = "7aa61de81426820176ddbd64dca0485f" + endpoint = "https://api.themoviedb.org/3/search/movie?" + configuration_url = "https://api.themoviedb.org/3/configuration?" + genre_url = "https://api.themoviedb.org/3/genre/movie/list?" + config_data = get_configuration(configuration_url,api_key) + genre_data = get_genre(genre_url,api_key) + nome_film,descrizione_film,lista_generi_film,poster_image,background_image,data_uscita = get_film(endpoint,titolo,api_key,config_data,genre_data) + immagine_background = get_image(background_image) + immagine_poster = get_image(poster_image) + film = Film() + if Film.objects.filter(titolo=nome_film).exists(): + return HttpResponse("Film giá esistente Nel DB!") + else: + film.titolo = nome_film + film.descrizione = descrizione_film + film.immagine_poster = immagine_poster + film.immagine_background = immagine_background + film.data_uscita = data_uscita + film.save() + for genres in lista_generi_film: + print(genres) + if GenereFilm.objects.filter(genere=genres).exists(): + genere = GenereFilm.objects.get(genere=genres) + film.genere.add(genere) + else: + GenereFilm.objects.get_or_create(genere=genres) + genere = GenereFilm.objects.get(genere=genres) + film.genere.add(genere) + # film.generi.add(genres) + return HttpResponseRedirect(film.get_absolute_url()) + # return HttpResponse("Film salvato nel DB!") + # if not Film.objects.filter(titolo=titolo).exists(): + # Film.objects.create(titolo=titolo) + +@login_required +def aggiungiCommento(request,slug): + film = get_object_or_404(Film,slug=slug) + url = reverse('film-detail',kwargs={'slug':slug}) + if request.method == 'POST': + form = CommentiForms(request.POST) + if form.is_valid(): + form.save(commit=False) + form.instance.media = film + utente = request.user + profilo = Profilo.objects.get(user=utente) + form.instance.utente = profilo + if Commento.objects.filter(utente=profilo,media=film).exists(): + return HttpResponseRedirect(url) + else: + form.save() + return HttpResponseRedirect(url) + else: + form = CommentiForms() + print(form.errors) + return HttpResponseRedirect(url) + + +def preferiti(request,slug): + film = get_object_or_404(Film,slug=slug) + user = request.user + profilo = get_object_or_404(Profilo,user=user) + preferito = film.preferito.filter(user=profilo.user) + if preferito.exists(): # Controllo se il ManyToManyField esiste filtrandolo con l'id dell'utente che esegue la richiesta + film.preferito.remove(profilo) # Se esiste rimuovo dai preferiti + messages.error(request, 'Film tolto dai preferiti correttamente!') # Mostro il messaggio + else: + film.preferito.add(profilo) # Se il ManyToManyField non esiste lo creo aggiungendo ai preferiti l'id dell'utente che esegue la richiesta + messages.success(request, 'Film aggiunto ai preferiti correttamente!') # Mostro il messaggio + return HttpResponseRedirect(film.get_absolute_url()) # Ritorno l'absolute url del film + +def guarda_dopo(request,slug): + film = get_object_or_404(Film,slug=slug) + user = request.user + profilo = get_object_or_404(Profilo,user=user) + guarda_dopo = film.guarda_dopo.filter(user=profilo.user) + if guarda_dopo.exists(): + film.guarda_dopo.remove(profilo) + else: + film.guarda_dopo.add(profilo) + return HttpResponseRedirect(film.get_absolute_url()) + +def lista_preferiti(request): + user = Profilo.objects.get(id=request.user.id) + lista_preferiti = user.preferiti.all() + watch_later = user.watch_later.all() + print(watch_later) + context = {"lista_preferiti":lista_preferiti,"watch_later":watch_later} + return render(request,"preferiti.html",context) + +class DeleteComment(DeleteView): + model = Commento + + def get_success_url(self): + film = self.get_object().media + return reverse_lazy('film-detail', kwargs={'slug': film.slug}) \ No newline at end of file diff --git a/SerieTV/__init__.py b/SerieTV/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/SerieTV/__pycache__/__init__.cpython-37.pyc b/SerieTV/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..5d44675 Binary files /dev/null and b/SerieTV/__pycache__/__init__.cpython-37.pyc differ diff --git a/SerieTV/__pycache__/__init__.cpython-38.pyc b/SerieTV/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..0a6cf14 Binary files /dev/null and b/SerieTV/__pycache__/__init__.cpython-38.pyc differ diff --git a/SerieTV/__pycache__/admin.cpython-37.pyc b/SerieTV/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..3e48970 Binary files /dev/null and b/SerieTV/__pycache__/admin.cpython-37.pyc differ diff --git a/SerieTV/__pycache__/admin.cpython-38.pyc b/SerieTV/__pycache__/admin.cpython-38.pyc new file mode 100644 index 0000000..22c1380 Binary files /dev/null and b/SerieTV/__pycache__/admin.cpython-38.pyc differ diff --git a/SerieTV/__pycache__/forms.cpython-37.pyc b/SerieTV/__pycache__/forms.cpython-37.pyc new file mode 100644 index 0000000..1e570e6 Binary files /dev/null and b/SerieTV/__pycache__/forms.cpython-37.pyc differ diff --git a/SerieTV/__pycache__/forms.cpython-38.pyc b/SerieTV/__pycache__/forms.cpython-38.pyc new file mode 100644 index 0000000..e7f1ab8 Binary files /dev/null and b/SerieTV/__pycache__/forms.cpython-38.pyc differ diff --git a/SerieTV/__pycache__/models.cpython-37.pyc b/SerieTV/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..1edd255 Binary files /dev/null and b/SerieTV/__pycache__/models.cpython-37.pyc differ diff --git a/SerieTV/__pycache__/models.cpython-38.pyc b/SerieTV/__pycache__/models.cpython-38.pyc new file mode 100644 index 0000000..f7e3c31 Binary files /dev/null and b/SerieTV/__pycache__/models.cpython-38.pyc differ diff --git a/SerieTV/__pycache__/urls.cpython-37.pyc b/SerieTV/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..5e71f0f Binary files /dev/null and b/SerieTV/__pycache__/urls.cpython-37.pyc differ diff --git a/SerieTV/__pycache__/urls.cpython-38.pyc b/SerieTV/__pycache__/urls.cpython-38.pyc new file mode 100644 index 0000000..a247930 Binary files /dev/null and b/SerieTV/__pycache__/urls.cpython-38.pyc differ diff --git a/SerieTV/__pycache__/views.cpython-37.pyc b/SerieTV/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000..bb0999a Binary files /dev/null and b/SerieTV/__pycache__/views.cpython-37.pyc differ diff --git a/SerieTV/__pycache__/views.cpython-38.pyc b/SerieTV/__pycache__/views.cpython-38.pyc new file mode 100644 index 0000000..3aac34b Binary files /dev/null and b/SerieTV/__pycache__/views.cpython-38.pyc differ diff --git a/SerieTV/admin.py b/SerieTV/admin.py new file mode 100644 index 0000000..3493328 --- /dev/null +++ b/SerieTV/admin.py @@ -0,0 +1,21 @@ +from django.contrib import admin +from .models import GenereSerieTV,SerieTV,Stagioni,Episodi,CommentoSerieTV,SegnalazioneSerieTV,Immagini + +class SerieTVImmagini(admin.StackedInline): + model=Immagini + + +class SerieTVAdmin(admin.ModelAdmin): + inlines = [SerieTVImmagini] + readonly_fields = ("creato_in_data", "aggiornato_in_data") + + class Meta: + model = SerieTV + + +admin.site.register(GenereSerieTV) +admin.site.register(SerieTV,SerieTVAdmin) +admin.site.register(Stagioni) +admin.site.register(Episodi) +admin.site.register(CommentoSerieTV) +admin.site.register(SegnalazioneSerieTV) \ No newline at end of file diff --git a/SerieTV/apps.py b/SerieTV/apps.py new file mode 100644 index 0000000..ca7e348 --- /dev/null +++ b/SerieTV/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class SerietvConfig(AppConfig): + name = 'SerieTV' diff --git a/SerieTV/forms.py b/SerieTV/forms.py new file mode 100644 index 0000000..ff2e3ff --- /dev/null +++ b/SerieTV/forms.py @@ -0,0 +1,39 @@ +from django import forms +from .models import CommentoSerieTV,SegnalazioneSerieTV +from utils.profanity_filter import profanity_words +from django.core.validators import ValidationError + +class CommentiForms(forms.ModelForm): + class Meta: + model = CommentoSerieTV + fields = ['commento'] + widgets = { + 'commento' : forms.Textarea(attrs={'class': 'form__textarea','id':'text'}) + } + + def clean_commento(self): + super().clean() + dati = self.cleaned_data["commento"] + print(f" Hai scritto la parola : {dati}") + lista_parole_offensive = profanity_words() + for s in lista_parole_offensive: + if s in dati: + raise ValidationError("Il Contenuto Inserito viola le norme del sito! ") + return dati + +class SearchTVShowAPI(forms.Form): + serie_tv = forms.CharField(label="",widget=forms.TextInput(attrs={'class': 'form__input','placeholder':'Titolo SerieTV...'})) + + +class SegnalazioneSerieTVForm(forms.ModelForm): + class Meta: + model = SegnalazioneSerieTV + exclude = ['serietv'] + widgets = { + 'descrizione_problema' : forms.Textarea(attrs={'class': 'form__textarea','id':'text'}), + 'problema_video' : forms.Select(attrs={'class':' js-example-basic-single select2-hidden-accessible','id':'segnalaproblema'}) + } + labels = { + 'descrizione_problema': '', + 'problema_video' : '' + } \ No newline at end of file diff --git a/SerieTV/migrations/0001_initial.py b/SerieTV/migrations/0001_initial.py new file mode 100644 index 0000000..18c002a --- /dev/null +++ b/SerieTV/migrations/0001_initial.py @@ -0,0 +1,64 @@ +# Generated by Django 3.0.5 on 2020-04-14 15:36 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='GenereSerieTV', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('genere', models.CharField(max_length=120)), + ], + options={ + 'verbose_name': 'Genere', + 'verbose_name_plural': 'Generi', + }, + ), + migrations.CreateModel( + name='SerieTV', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('titolo', models.CharField(max_length=120)), + ('descrizione', models.CharField(max_length=120)), + ('genere', models.ManyToManyField(to='SerieTV.GenereSerieTV')), + ], + options={ + 'verbose_name': 'Serie TV', + 'verbose_name_plural': 'Serie TV', + }, + ), + migrations.CreateModel( + name='Stagioni', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('numero_stagione', models.IntegerField()), + ('serie_tv', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='seriestagioni', to='SerieTV.SerieTV')), + ], + options={ + 'verbose_name': 'Stagione', + 'verbose_name_plural': 'Stagioni', + }, + ), + migrations.CreateModel( + name='Episodi', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('numero_episodio', models.IntegerField()), + ('streaming_link', models.URLField()), + ('stagione', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='stagione', to='SerieTV.Stagioni')), + ], + options={ + 'verbose_name': 'Episodio', + 'verbose_name_plural': 'Episodi', + }, + ), + ] diff --git a/SerieTV/migrations/0002_auto_20200730_1442.py b/SerieTV/migrations/0002_auto_20200730_1442.py new file mode 100644 index 0000000..e92cce8 --- /dev/null +++ b/SerieTV/migrations/0002_auto_20200730_1442.py @@ -0,0 +1,25 @@ +# Generated by Django 3.0.7 on 2020-07-30 14:42 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='immagine_poster', + field=models.ImageField(default=None, upload_to='SerieTV/Poster'), + preserve_default=False, + ), + migrations.AddField( + model_name='serietv', + name='slug', + field=models.SlugField(default=None), + preserve_default=False, + ), + ] diff --git a/SerieTV/migrations/0003_auto_20200730_1515.py b/SerieTV/migrations/0003_auto_20200730_1515.py new file mode 100644 index 0000000..ff56828 --- /dev/null +++ b/SerieTV/migrations/0003_auto_20200730_1515.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-30 15:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0002_auto_20200730_1442'), + ] + + operations = [ + migrations.AlterField( + model_name='serietv', + name='immagine_poster', + field=models.ImageField(upload_to=''), + ), + ] diff --git a/SerieTV/migrations/0004_auto_20200730_1625.py b/SerieTV/migrations/0004_auto_20200730_1625.py new file mode 100644 index 0000000..2d6ded2 --- /dev/null +++ b/SerieTV/migrations/0004_auto_20200730_1625.py @@ -0,0 +1,39 @@ +# Generated by Django 3.0.7 on 2020-07-30 16:25 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0003_auto_20200730_1515'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='aggiornato_in_data', + field=models.DateField(auto_now=True, null=True), + ), + migrations.AddField( + model_name='serietv', + name='creato_in_data', + field=models.DateTimeField(auto_now_add=True, null=True), + ), + migrations.AddField( + model_name='serietv', + name='età_consigliata', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='serietv', + name='qualità_video', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='serietv', + name='voto', + field=models.FloatField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1.0), django.core.validators.MaxValueValidator(10.0)]), + ), + ] diff --git a/SerieTV/migrations/0005_episodi_nome_episodio.py b/SerieTV/migrations/0005_episodi_nome_episodio.py new file mode 100644 index 0000000..505e673 --- /dev/null +++ b/SerieTV/migrations/0005_episodi_nome_episodio.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-07-31 12:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0004_auto_20200730_1625'), + ] + + operations = [ + migrations.AddField( + model_name='episodi', + name='nome_episodio', + field=models.CharField(default='', max_length=200), + ), + ] diff --git a/SerieTV/migrations/0006_serietv_immagine_background.py b/SerieTV/migrations/0006_serietv_immagine_background.py new file mode 100644 index 0000000..61f105d --- /dev/null +++ b/SerieTV/migrations/0006_serietv_immagine_background.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.8 on 2020-08-05 15:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0005_episodi_nome_episodio'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='immagine_background', + field=models.ImageField(default='default.png', upload_to=''), + ), + ] diff --git a/SerieTV/migrations/0007_commentoanime.py b/SerieTV/migrations/0007_commentoanime.py new file mode 100644 index 0000000..e3f5a3c --- /dev/null +++ b/SerieTV/migrations/0007_commentoanime.py @@ -0,0 +1,29 @@ +# Generated by Django 3.1 on 2020-08-08 20:59 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ('SerieTV', '0006_serietv_immagine_background'), + ] + + operations = [ + migrations.CreateModel( + name='CommentoAnime', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('commento', models.TextField()), + ('data_commento', models.DateTimeField(auto_now_add=True)), + ('media', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_serietv', to='SerieTV.serietv')), + ('utente', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='commenti_utente_serietv', to='core.profilo')), + ], + options={ + 'verbose_name': 'Commento', + 'verbose_name_plural': 'Commenti', + }, + ), + ] diff --git a/SerieTV/migrations/0008_auto_20200808_2301.py b/SerieTV/migrations/0008_auto_20200808_2301.py new file mode 100644 index 0000000..5ae03a0 --- /dev/null +++ b/SerieTV/migrations/0008_auto_20200808_2301.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-08 21:01 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ('SerieTV', '0007_commentoanime'), + ] + + operations = [ + migrations.RenameModel( + old_name='CommentoAnime', + new_name='CommentoSerieTV', + ), + ] diff --git a/SerieTV/migrations/0009_segnalazioneserietv.py b/SerieTV/migrations/0009_segnalazioneserietv.py new file mode 100644 index 0000000..ae31ac9 --- /dev/null +++ b/SerieTV/migrations/0009_segnalazioneserietv.py @@ -0,0 +1,27 @@ +# Generated by Django 3.1 on 2020-08-17 15:10 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0008_auto_20200808_2301'), + ] + + operations = [ + migrations.CreateModel( + name='SegnalazioneSerieTV', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('problema_video', models.CharField(choices=[('Link Non Funzionante', 'Link Non Funzionante'), ('Video Pessima Qualitá', 'Video Pessima Qualitá'), ('Audio Mancante', 'Audio Mancante'), ('Film Incompleto', 'Film Incompleto'), ('Altro', 'Altro')], default='Link Non Funzionante', max_length=50)), + ('descrizione_problema', models.TextField()), + ('serietv', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='serietv_segnalata', to='SerieTV.serietv')), + ], + options={ + 'verbose_name': 'Segnalazione', + 'verbose_name_plural': 'Segnalazioni', + }, + ), + ] diff --git a/SerieTV/migrations/0010_auto_20200819_1147.py b/SerieTV/migrations/0010_auto_20200819_1147.py new file mode 100644 index 0000000..d76317e --- /dev/null +++ b/SerieTV/migrations/0010_auto_20200819_1147.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-19 09:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0009_segnalazioneserietv'), + ] + + operations = [ + migrations.AlterField( + model_name='serietv', + name='descrizione', + field=models.TextField(), + ), + ] diff --git a/SerieTV/migrations/0011_auto_20200821_1630.py b/SerieTV/migrations/0011_auto_20200821_1630.py new file mode 100644 index 0000000..1cf43f3 --- /dev/null +++ b/SerieTV/migrations/0011_auto_20200821_1630.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-08-21 16:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0010_auto_20200819_1147'), + ] + + operations = [ + migrations.AlterField( + model_name='segnalazioneserietv', + name='problema_video', + field=models.CharField(choices=[('Link Non Funzionante', 'Link Non Funzionante'), ('Video Pessima Qualitá', 'Video Pessima Qualitá'), ('Audio Mancante', 'Audio Mancante'), ('Episodio/i Incompleto', 'Episodio/i Incompleto'), ('Altro', 'Altro')], default='Link Non Funzionante', max_length=50), + ), + ] diff --git a/SerieTV/migrations/0012_serietv_lingua.py b/SerieTV/migrations/0012_serietv_lingua.py new file mode 100644 index 0000000..acca718 --- /dev/null +++ b/SerieTV/migrations/0012_serietv_lingua.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-23 13:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0011_auto_20200821_1630'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='lingua', + field=models.CharField(choices=[('ITA', 'Italiano'), ('SUB-ITA', 'SUB-ITA')], default='ITA', max_length=12), + ), + ] diff --git a/SerieTV/migrations/0013_auto_20200823_1619.py b/SerieTV/migrations/0013_auto_20200823_1619.py new file mode 100644 index 0000000..8c0d4ab --- /dev/null +++ b/SerieTV/migrations/0013_auto_20200823_1619.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-23 14:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0012_serietv_lingua'), + ] + + operations = [ + migrations.AlterField( + model_name='serietv', + name='lingua', + field=models.CharField(choices=[('ITA', 'Italiano'), ('SUB-ITA', 'Sottotitolato In Italiano')], default='ITA', max_length=12), + ), + ] diff --git a/SerieTV/migrations/0014_serietv_visualizzazioni.py b/SerieTV/migrations/0014_serietv_visualizzazioni.py new file mode 100644 index 0000000..c3f88e3 --- /dev/null +++ b/SerieTV/migrations/0014_serietv_visualizzazioni.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-23 14:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0013_auto_20200823_1619'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='visualizzazioni', + field=models.IntegerField(default=0), + ), + ] diff --git a/SerieTV/migrations/0015_serietv_durata.py b/SerieTV/migrations/0015_serietv_durata.py new file mode 100644 index 0000000..2b19937 --- /dev/null +++ b/SerieTV/migrations/0015_serietv_durata.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-09-18 18:00 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0014_serietv_visualizzazioni'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='durata', + field=models.CharField(blank=True, max_length=20, null=True), + ), + ] diff --git a/SerieTV/migrations/0016_immagini.py b/SerieTV/migrations/0016_immagini.py new file mode 100644 index 0000000..cb71d25 --- /dev/null +++ b/SerieTV/migrations/0016_immagini.py @@ -0,0 +1,22 @@ +# Generated by Django 3.1.1 on 2020-10-10 12:29 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0015_serietv_durata'), + ] + + operations = [ + migrations.CreateModel( + name='Immagini', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('immagini', models.ImageField(blank=True, null=True, upload_to='')), + ('serietv', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='immagini_serietv', to='SerieTV.serietv')), + ], + ), + ] diff --git a/SerieTV/migrations/0017_auto_20201010_1711.py b/SerieTV/migrations/0017_auto_20201010_1711.py new file mode 100644 index 0000000..e0fdc6a --- /dev/null +++ b/SerieTV/migrations/0017_auto_20201010_1711.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1.1 on 2020-10-10 15:11 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0016_immagini'), + ] + + operations = [ + migrations.AlterModelOptions( + name='stagioni', + options={'ordering': ['numero_stagione'], 'verbose_name': 'Stagione', 'verbose_name_plural': 'Stagioni'}, + ), + ] diff --git a/SerieTV/migrations/0018_auto_20201010_1800.py b/SerieTV/migrations/0018_auto_20201010_1800.py new file mode 100644 index 0000000..8fe42ab --- /dev/null +++ b/SerieTV/migrations/0018_auto_20201010_1800.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1.1 on 2020-10-10 16:00 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0017_auto_20201010_1711'), + ] + + operations = [ + migrations.AlterModelOptions( + name='immagini', + options={'verbose_name_plural': 'Immagini'}, + ), + ] diff --git a/SerieTV/migrations/0019_auto_20201109_1650.py b/SerieTV/migrations/0019_auto_20201109_1650.py new file mode 100644 index 0000000..2660854 --- /dev/null +++ b/SerieTV/migrations/0019_auto_20201109_1650.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1.2 on 2020-11-09 16:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0018_auto_20201010_1800'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='data_uscita', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AddField( + model_name='serietv', + name='trailer', + field=models.URLField(blank=True, null=True), + ), + ] diff --git a/SerieTV/migrations/0020_auto_20201109_1943.py b/SerieTV/migrations/0020_auto_20201109_1943.py new file mode 100644 index 0000000..ea38d3e --- /dev/null +++ b/SerieTV/migrations/0020_auto_20201109_1943.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-11-09 19:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0019_auto_20201109_1650'), + ] + + operations = [ + migrations.AlterField( + model_name='serietv', + name='aggiornato_in_data', + field=models.DateTimeField(auto_now=True, null=True), + ), + ] diff --git a/SerieTV/migrations/0021_auto_20201109_2011.py b/SerieTV/migrations/0021_auto_20201109_2011.py new file mode 100644 index 0000000..d578541 --- /dev/null +++ b/SerieTV/migrations/0021_auto_20201109_2011.py @@ -0,0 +1,19 @@ +# Generated by Django 3.1.2 on 2020-11-09 20:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SerieTV', '0020_auto_20201109_1943'), + ] + + operations = [ + migrations.AlterField( + model_name='serietv', + name='aggiornato_in_data', + field=models.DateTimeField(auto_now=True, default=None), + preserve_default=False, + ), + ] diff --git a/SerieTV/migrations/0022_auto_20210226_2115.py b/SerieTV/migrations/0022_auto_20210226_2115.py new file mode 100644 index 0000000..bf33ef7 --- /dev/null +++ b/SerieTV/migrations/0022_auto_20210226_2115.py @@ -0,0 +1,24 @@ +# Generated by Django 3.1.4 on 2021-02-26 21:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0008_auto_20201011_1255'), + ('SerieTV', '0021_auto_20201109_2011'), + ] + + operations = [ + migrations.AddField( + model_name='serietv', + name='guarda_dopo', + field=models.ManyToManyField(blank=True, related_name='serietv_watch_later', to='core.Profilo'), + ), + migrations.AddField( + model_name='serietv', + name='preferito', + field=models.ManyToManyField(blank=True, related_name='serietv_preferite', to='core.Profilo'), + ), + ] diff --git a/SerieTV/migrations/__init__.py b/SerieTV/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/SerieTV/migrations/__pycache__/0001_initial.cpython-37.pyc b/SerieTV/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000..aabc3d8 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0001_initial.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0001_initial.cpython-38.pyc b/SerieTV/migrations/__pycache__/0001_initial.cpython-38.pyc new file mode 100644 index 0000000..0d6991e Binary files /dev/null and b/SerieTV/migrations/__pycache__/0001_initial.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0002_auto_20200730_1442.cpython-37.pyc b/SerieTV/migrations/__pycache__/0002_auto_20200730_1442.cpython-37.pyc new file mode 100644 index 0000000..65c7b49 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0002_auto_20200730_1442.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0002_auto_20200730_1442.cpython-38.pyc b/SerieTV/migrations/__pycache__/0002_auto_20200730_1442.cpython-38.pyc new file mode 100644 index 0000000..4d39c97 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0002_auto_20200730_1442.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0003_auto_20200730_1515.cpython-37.pyc b/SerieTV/migrations/__pycache__/0003_auto_20200730_1515.cpython-37.pyc new file mode 100644 index 0000000..809f4b9 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0003_auto_20200730_1515.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0003_auto_20200730_1515.cpython-38.pyc b/SerieTV/migrations/__pycache__/0003_auto_20200730_1515.cpython-38.pyc new file mode 100644 index 0000000..3c8a4bb Binary files /dev/null and b/SerieTV/migrations/__pycache__/0003_auto_20200730_1515.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0004_auto_20200730_1625.cpython-37.pyc b/SerieTV/migrations/__pycache__/0004_auto_20200730_1625.cpython-37.pyc new file mode 100644 index 0000000..b9f3e46 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0004_auto_20200730_1625.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0004_auto_20200730_1625.cpython-38.pyc b/SerieTV/migrations/__pycache__/0004_auto_20200730_1625.cpython-38.pyc new file mode 100644 index 0000000..770cb98 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0004_auto_20200730_1625.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0005_episodi_nome_episodio.cpython-37.pyc b/SerieTV/migrations/__pycache__/0005_episodi_nome_episodio.cpython-37.pyc new file mode 100644 index 0000000..fd29658 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0005_episodi_nome_episodio.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0005_episodi_nome_episodio.cpython-38.pyc b/SerieTV/migrations/__pycache__/0005_episodi_nome_episodio.cpython-38.pyc new file mode 100644 index 0000000..698501f Binary files /dev/null and b/SerieTV/migrations/__pycache__/0005_episodi_nome_episodio.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0006_serietv_immagine_background.cpython-37.pyc b/SerieTV/migrations/__pycache__/0006_serietv_immagine_background.cpython-37.pyc new file mode 100644 index 0000000..f74db0c Binary files /dev/null and b/SerieTV/migrations/__pycache__/0006_serietv_immagine_background.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0006_serietv_immagine_background.cpython-38.pyc b/SerieTV/migrations/__pycache__/0006_serietv_immagine_background.cpython-38.pyc new file mode 100644 index 0000000..10fa276 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0006_serietv_immagine_background.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0007_commentoanime.cpython-37.pyc b/SerieTV/migrations/__pycache__/0007_commentoanime.cpython-37.pyc new file mode 100644 index 0000000..971f958 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0007_commentoanime.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0007_commentoanime.cpython-38.pyc b/SerieTV/migrations/__pycache__/0007_commentoanime.cpython-38.pyc new file mode 100644 index 0000000..4ff0b88 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0007_commentoanime.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0008_auto_20200808_2301.cpython-37.pyc b/SerieTV/migrations/__pycache__/0008_auto_20200808_2301.cpython-37.pyc new file mode 100644 index 0000000..a0be8e8 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0008_auto_20200808_2301.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0008_auto_20200808_2301.cpython-38.pyc b/SerieTV/migrations/__pycache__/0008_auto_20200808_2301.cpython-38.pyc new file mode 100644 index 0000000..c52e506 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0008_auto_20200808_2301.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0009_segnalazioneserietv.cpython-37.pyc b/SerieTV/migrations/__pycache__/0009_segnalazioneserietv.cpython-37.pyc new file mode 100644 index 0000000..2ac2e8b Binary files /dev/null and b/SerieTV/migrations/__pycache__/0009_segnalazioneserietv.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0009_segnalazioneserietv.cpython-38.pyc b/SerieTV/migrations/__pycache__/0009_segnalazioneserietv.cpython-38.pyc new file mode 100644 index 0000000..5bd7d22 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0009_segnalazioneserietv.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0010_auto_20200819_1147.cpython-37.pyc b/SerieTV/migrations/__pycache__/0010_auto_20200819_1147.cpython-37.pyc new file mode 100644 index 0000000..a386e33 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0010_auto_20200819_1147.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0010_auto_20200819_1147.cpython-38.pyc b/SerieTV/migrations/__pycache__/0010_auto_20200819_1147.cpython-38.pyc new file mode 100644 index 0000000..6c8f4f9 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0010_auto_20200819_1147.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0011_auto_20200821_1630.cpython-37.pyc b/SerieTV/migrations/__pycache__/0011_auto_20200821_1630.cpython-37.pyc new file mode 100644 index 0000000..a2c95d8 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0011_auto_20200821_1630.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0011_auto_20200821_1630.cpython-38.pyc b/SerieTV/migrations/__pycache__/0011_auto_20200821_1630.cpython-38.pyc new file mode 100644 index 0000000..e14455e Binary files /dev/null and b/SerieTV/migrations/__pycache__/0011_auto_20200821_1630.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0012_serietv_lingua.cpython-37.pyc b/SerieTV/migrations/__pycache__/0012_serietv_lingua.cpython-37.pyc new file mode 100644 index 0000000..a904789 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0012_serietv_lingua.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0012_serietv_lingua.cpython-38.pyc b/SerieTV/migrations/__pycache__/0012_serietv_lingua.cpython-38.pyc new file mode 100644 index 0000000..4d7af0f Binary files /dev/null and b/SerieTV/migrations/__pycache__/0012_serietv_lingua.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0013_auto_20200823_1619.cpython-37.pyc b/SerieTV/migrations/__pycache__/0013_auto_20200823_1619.cpython-37.pyc new file mode 100644 index 0000000..992d1c8 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0013_auto_20200823_1619.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0013_auto_20200823_1619.cpython-38.pyc b/SerieTV/migrations/__pycache__/0013_auto_20200823_1619.cpython-38.pyc new file mode 100644 index 0000000..b11cd68 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0013_auto_20200823_1619.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0014_serietv_visualizzazioni.cpython-37.pyc b/SerieTV/migrations/__pycache__/0014_serietv_visualizzazioni.cpython-37.pyc new file mode 100644 index 0000000..37791cd Binary files /dev/null and b/SerieTV/migrations/__pycache__/0014_serietv_visualizzazioni.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0014_serietv_visualizzazioni.cpython-38.pyc b/SerieTV/migrations/__pycache__/0014_serietv_visualizzazioni.cpython-38.pyc new file mode 100644 index 0000000..13532e8 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0014_serietv_visualizzazioni.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0015_serietv_durata.cpython-37.pyc b/SerieTV/migrations/__pycache__/0015_serietv_durata.cpython-37.pyc new file mode 100644 index 0000000..e1381a0 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0015_serietv_durata.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0015_serietv_durata.cpython-38.pyc b/SerieTV/migrations/__pycache__/0015_serietv_durata.cpython-38.pyc new file mode 100644 index 0000000..ae167ab Binary files /dev/null and b/SerieTV/migrations/__pycache__/0015_serietv_durata.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0016_immagini.cpython-37.pyc b/SerieTV/migrations/__pycache__/0016_immagini.cpython-37.pyc new file mode 100644 index 0000000..342e270 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0016_immagini.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0016_immagini.cpython-38.pyc b/SerieTV/migrations/__pycache__/0016_immagini.cpython-38.pyc new file mode 100644 index 0000000..178b4cf Binary files /dev/null and b/SerieTV/migrations/__pycache__/0016_immagini.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0017_auto_20201010_1711.cpython-37.pyc b/SerieTV/migrations/__pycache__/0017_auto_20201010_1711.cpython-37.pyc new file mode 100644 index 0000000..3b2cff9 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0017_auto_20201010_1711.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0017_auto_20201010_1711.cpython-38.pyc b/SerieTV/migrations/__pycache__/0017_auto_20201010_1711.cpython-38.pyc new file mode 100644 index 0000000..79e5d73 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0017_auto_20201010_1711.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0018_auto_20201010_1800.cpython-37.pyc b/SerieTV/migrations/__pycache__/0018_auto_20201010_1800.cpython-37.pyc new file mode 100644 index 0000000..fa9088f Binary files /dev/null and b/SerieTV/migrations/__pycache__/0018_auto_20201010_1800.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0018_auto_20201010_1800.cpython-38.pyc b/SerieTV/migrations/__pycache__/0018_auto_20201010_1800.cpython-38.pyc new file mode 100644 index 0000000..13f6df6 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0018_auto_20201010_1800.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0019_auto_20201109_1650.cpython-37.pyc b/SerieTV/migrations/__pycache__/0019_auto_20201109_1650.cpython-37.pyc new file mode 100644 index 0000000..39105d4 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0019_auto_20201109_1650.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0019_auto_20201109_1650.cpython-38.pyc b/SerieTV/migrations/__pycache__/0019_auto_20201109_1650.cpython-38.pyc new file mode 100644 index 0000000..3cf26e5 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0019_auto_20201109_1650.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0020_auto_20201109_1943.cpython-37.pyc b/SerieTV/migrations/__pycache__/0020_auto_20201109_1943.cpython-37.pyc new file mode 100644 index 0000000..e6171c3 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0020_auto_20201109_1943.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0020_auto_20201109_1943.cpython-38.pyc b/SerieTV/migrations/__pycache__/0020_auto_20201109_1943.cpython-38.pyc new file mode 100644 index 0000000..3ccf935 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0020_auto_20201109_1943.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0021_auto_20201109_2011.cpython-37.pyc b/SerieTV/migrations/__pycache__/0021_auto_20201109_2011.cpython-37.pyc new file mode 100644 index 0000000..3964915 Binary files /dev/null and b/SerieTV/migrations/__pycache__/0021_auto_20201109_2011.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/0021_auto_20201109_2011.cpython-38.pyc b/SerieTV/migrations/__pycache__/0021_auto_20201109_2011.cpython-38.pyc new file mode 100644 index 0000000..3f0b0fa Binary files /dev/null and b/SerieTV/migrations/__pycache__/0021_auto_20201109_2011.cpython-38.pyc differ diff --git a/SerieTV/migrations/__pycache__/0022_auto_20210226_2115.cpython-37.pyc b/SerieTV/migrations/__pycache__/0022_auto_20210226_2115.cpython-37.pyc new file mode 100644 index 0000000..48ea51e Binary files /dev/null and b/SerieTV/migrations/__pycache__/0022_auto_20210226_2115.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/__init__.cpython-37.pyc b/SerieTV/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..78ed55a Binary files /dev/null and b/SerieTV/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/SerieTV/migrations/__pycache__/__init__.cpython-38.pyc b/SerieTV/migrations/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..4d0fcdc Binary files /dev/null and b/SerieTV/migrations/__pycache__/__init__.cpython-38.pyc differ diff --git a/SerieTV/models.py b/SerieTV/models.py new file mode 100644 index 0000000..5d20522 --- /dev/null +++ b/SerieTV/models.py @@ -0,0 +1,131 @@ +from django.core.validators import MinValueValidator,MaxValueValidator +from django.db import models +from django.utils.text import slugify +from django.urls import reverse +from core.models import Profilo +# Create your models here. + +class GenereSerieTV(models.Model): + genere = models.CharField(max_length=120) + + def __str__(self): + return self.genere + + class Meta: + verbose_name = "Genere" + verbose_name_plural = "Generi" + + def get_absolute_url(self): + return reverse('generi_lista_serietv', kwargs={'genere': self.genere}) + +class SerieTV(models.Model): + titolo = models.CharField(max_length=120) + descrizione = models.TextField() + immagine_poster = models.ImageField() + qualità_video = models.CharField(max_length=20,null=True,blank=True) + età_consigliata = models.CharField(max_length=20,null=True,blank=True) + immagine_background = models.ImageField(default='default.png') + LINGUE = [ + ('ITA', "Italiano"), + ('SUB-ITA', "Sottotitolato In Italiano"), + ] + lingua = models.CharField(max_length=12,choices=LINGUE,default="ITA") + genere = models.ManyToManyField(GenereSerieTV) + voto = models.FloatField(validators=[MinValueValidator(1.0),MaxValueValidator(10.0)],null=True,blank=True) + creato_in_data = models.DateTimeField(auto_now_add=True,null=True,blank=True) + aggiornato_in_data = models.DateTimeField(auto_now=True) + preferito = models.ManyToManyField(Profilo,related_name="serietv_preferite",blank=True) + guarda_dopo = models.ManyToManyField(Profilo,related_name="serietv_watch_later",blank=True) + slug = models.SlugField() + visualizzazioni = models.IntegerField(default=0) + durata = models.CharField(max_length=20,null=True,blank=True) + data_uscita = models.CharField(max_length=20,null=True,blank=True) + trailer = models.URLField(null=True,blank=True) + + def save(self, *args, **kwargs): + self.slug = slugify(self.titolo) + return super(SerieTV,self).save(*args, **kwargs) + + def __str__(self): + return self.titolo + + class Meta: + verbose_name = "Serie TV" + verbose_name_plural = "Serie TV" + + def get_absolute_url(self): + return reverse('serietvdetail', kwargs={'slug': self.slug}) + +class Stagioni(models.Model): + numero_stagione = models.IntegerField() + serie_tv = models.ForeignKey(SerieTV,on_delete=models.CASCADE,related_name="seriestagioni") + + def __str__(self): + return f"{self.serie_tv.titolo} - Stagione {self.numero_stagione}" + + class Meta: + verbose_name = "Stagione" + verbose_name_plural = "Stagioni" + ordering = ['numero_stagione'] + +class Episodi(models.Model): + stagione = models.ForeignKey(Stagioni,on_delete=models.CASCADE,related_name="stagione") + numero_episodio = models.IntegerField() + nome_episodio = models.CharField(max_length=200,default="") + streaming_link = models.URLField() + + def __str__(self): + return f"{self.stagione.serie_tv.titolo} S{self.stagione.numero_stagione} E{self.numero_episodio}" + + class Meta: + verbose_name = "Episodio" + verbose_name_plural = "Episodi" + +class CommentoSerieTV(models.Model): + utente = models.ForeignKey(Profilo,on_delete=models.CASCADE,related_name="commenti_utente_serietv") + commento = models.TextField() + data_commento = models.DateTimeField(auto_now_add=True) + media = models.ForeignKey(SerieTV,on_delete=models.CASCADE,related_name="commenti_serietv") + + class Meta: + verbose_name = "Commento" + verbose_name_plural = "Commenti" + + def __str__(self): + return f"{self.utente.user} ha scritto un commento sulla SerieTV {self.media.titolo}" + + +class SegnalazioneSerieTV(models.Model): + LISTA_PROBLEMI_VIDEO = [ + ('Link Non Funzionante', 'Link Non Funzionante'), + ('Video Pessima Qualitá', 'Video Pessima Qualitá'), + ('Audio Mancante', 'Audio Mancante'), + ('Episodio/i Incompleto', 'Episodio/i Incompleto'), + ('Altro', 'Altro'), + ] + problema_video = models.CharField( + max_length=50, + choices=LISTA_PROBLEMI_VIDEO, + default='Link Non Funzionante', + ) + descrizione_problema = models.TextField() + serietv = models.ForeignKey(SerieTV,on_delete=models.CASCADE,related_name="serietv_segnalata") + + class Meta: + verbose_name = "Segnalazione" + verbose_name_plural = "Segnalazioni" + + def __str__(self): + return f"Hanno Segnalato un Problema sulla Serie TV {self.serietv.titolo}" + + +class Immagini(models.Model): + serietv = models.ForeignKey(SerieTV,on_delete=models.CASCADE,related_name="immagini_serietv") + immagini = models.ImageField(null=True,blank=True) + + def __str__(self): + return f"Immagini della SerieTV {self.serietv.titolo}" + + class Meta: + verbose_name_plural = "Immagini" + diff --git a/SerieTV/tests.py b/SerieTV/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/SerieTV/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/SerieTV/urls.py b/SerieTV/urls.py new file mode 100644 index 0000000..640c3a1 --- /dev/null +++ b/SerieTV/urls.py @@ -0,0 +1,15 @@ +from django.urls import path +from .views import serietv,serietv_detail,add_serietv_api,salva_tvshow,generiserie,generi_lista_serietv,guarda_dopo,preferiti,DeleteComment + + +urlpatterns = [ + path("",serietv,name="SerieTV"), + path('aggiungi_serietv/',add_serietv_api,name='aggiungi_serietv'), + path("generi/",generiserie,name="generiserie"), + path("/",serietv_detail,name="serietvdetail"), + path('/aggiungi_preferiti/',preferiti,name="serietv_preferite"), + path('/aggiungi_guarda_dopo/',guarda_dopo,name="serietv_guarda_dopo"), + path('/elimina-commento//',DeleteComment.as_view(),name="serietv_elimina_commento"), + path('tv_show//////',salva_tvshow,name='salva_tvshow'), + path('genere//',generi_lista_serietv,name="generi_lista_serietv") +] \ No newline at end of file diff --git a/SerieTV/views.py b/SerieTV/views.py new file mode 100644 index 0000000..db81ae7 --- /dev/null +++ b/SerieTV/views.py @@ -0,0 +1,197 @@ +from django.http import HttpResponse,HttpResponseRedirect +from django.shortcuts import render,get_object_or_404,redirect +from django.core.paginator import Paginator +from django.urls.base import reverse, reverse_lazy +from django.views.generic.edit import DeleteView,UpdateView +from .models import SerieTV,Episodi,Stagioni,GenereSerieTV,CommentoSerieTV,Immagini +from .forms import SearchTVShowAPI,CommentiForms,SegnalazioneSerieTVForm +from utils.thetvdbapi import search_tv_show,get_tvshow_info,image_Endpoint +from utils.download_image import get_image +from utils.english_genres_to_italian import englishgenres +from django.contrib.admin.views.decorators import staff_member_required +from django.contrib.auth.decorators import login_required +from django.contrib import messages +from core.models import Profilo +import random +# Create your views here. + + +def generiserie(request): + generi = GenereSerieTV.objects.all() + context = {"generi":generi} + return render(request,'lista_generi.html',context) + +def generi_lista_serietv(request,genere): + genere = get_object_or_404(GenereSerieTV,genere=genere) + serietv = SerieTV.objects.filter(genere=genere) + context = {"genere":genere,"serietv":serietv} + return render(request,'serietv_genre.html',context) + + +def serietv_youmightlike(genres,serietv): + random_picked_genre = random.sample(genres,1) + serietv_same_genres = SerieTV.objects.filter(genere__in=random_picked_genre).values("titolo") + current_serietv = serietv.titolo + serietv_with_same_genre = SerieTV.objects.exclude(titolo=current_serietv) + number_serietv_with_same_genre = SerieTV.objects.filter(genere__in=random_picked_genre).count() + # random_serietv_list = random.randint(1,number_serietv_with_same_genre) + # rand_serietv = random.sample(list(serietv_with_same_genre),min(random_serietv_list, len(serietv_with_same_genre))) # comportamento precedente + rand_serietv = random.sample(list(serietv_with_same_genre),number_serietv_with_same_genre if number_serietv_with_same_genre < 8 else 8) # seleziona casualmente degli elementi univoci nel database + return rand_serietv + + +def serietv(request): + serietv = SerieTV.objects.all().order_by("titolo") + generi = GenereSerieTV.objects.all() + paginator = Paginator(serietv, 100) + numero_pagina = request.GET.get('pagina') + serie = paginator.get_page(numero_pagina) + context = {"serie":serie,"generi":generi} + return render(request,"serietv.html",context) + +def serietv_detail(request,slug): + serietv = get_object_or_404(SerieTV,slug=slug) + serietv.visualizzazioni += 1 + serietv.save() + immagini_serietv = Immagini.objects.filter(serietv=serietv) + commenti = CommentoSerieTV.objects.filter(media=serietv).order_by("-data_commento") + genres = list(serietv.genere.all()) + serietv_foryou = serietv_youmightlike(genres,serietv) + is_favorite = False + watch_later = False + user_commented = False + if request.user.is_authenticated: + profilo = get_object_or_404(Profilo,user=request.user) + preferito = serietv.preferito.filter(user=profilo.user) + guarda = serietv.guarda_dopo.filter(user=profilo.user) + user_commented = CommentoSerieTV.objects.filter(media=serietv, utente=profilo).exists() + if preferito.exists(): + is_favorite = True + if guarda.exists(): + watch_later = True + else: + is_favorite = False + watch_later = False + if request.method == "POST": + form = CommentiForms(request.POST or None) + if form.is_valid(): + form.save(commit=False) + form.instance.media = serietv + profilo = Profilo.objects.get(user=request.user) + form.instance.utente = profilo + form.save() + return HttpResponseRedirect(serietv.get_absolute_url()) + + else: + form = CommentiForms() + if request.method == "POST": + segnala_serietv_form = SegnalazioneSerieTVForm(request.POST or None) + if segnala_serietv_form.is_valid(): + segnala_serietv_form.save(commit=False) + segnala_serietv_form.instance.serietv = serietv + segnala_serietv_form.save() + return HttpResponseRedirect(serietv.get_absolute_url()) + else: + segnala_serietv_form = SegnalazioneSerieTVForm() + context = {"serietv":serietv,"commenti":commenti,"form":form,"serietv_foryou":serietv_foryou,"segnala_serietv_form":segnala_serietv_form,"immagini_serietv":immagini_serietv,"is_favorite":is_favorite,"watch_later":watch_later,"user_commented":user_commented} + return render(request,"details2.html",context) + +@staff_member_required +def add_serietv_api(request): + if request.method == "GET": + form = SearchTVShowAPI(request.GET or None) + if form.is_valid(): + serie = form.cleaned_data["serie_tv"] + data_tv_show = search_tv_show(serie) + tv_genre,tv_show_info = get_tvshow_info(data_tv_show) + titolo = data_tv_show['data'][0]['seriesName'] + descrizione = data_tv_show['data'][0]['overview'] + immagini = data_tv_show['data'][0]['poster'] + img_path = image_Endpoint() + immagini + generi = tv_genre['data']['genre'] + lista_generi = ", ".join(generi) + stagioni = tv_genre['data']['season'] + # for generi in data_tv_show['data'][0]['genre']: + # print(generi) + serie_tv = {"titolo":titolo,"descrizione":descrizione,"poster":img_path,"lista_generi":lista_generi,"stagioni":stagioni,"generi":generi} + return render(request,'visualizza_risultatiserietv.html',serie_tv) + else: + form = SearchTVShowAPI() + context = {"form":form} + return render(request,'aggiungi_serietv_api.html',context) + +@staff_member_required +def salva_tvshow(request,titolo,descrizione,generi,stagioni,poster): + if request.method == "GET": + print(titolo,descrizione,generi) + data_tv_show = search_tv_show(titolo) + tv_genre,tv_show_info = get_tvshow_info(data_tv_show) + background = tv_genre['data']['fanart'] + background_path = 'https://artworks.thetvdb.com/banners/' + background + serietv = SerieTV() + if SerieTV.objects.filter(titolo=titolo).exists(): + return HttpResponse('Serie TV giá presente nel DB!') + else: + serietv.titolo = titolo + serietv.descrizione = descrizione + serietv.immagine_poster = get_image(poster) + serietv.immagine_background = get_image(background_path) + serietv.save() + generi = list(generi.split(", ")) + generi = englishgenres(generi) + for genre in generi: + if GenereSerieTV.objects.filter(genere=genre).exists(): + genere = GenereSerieTV.objects.get(genere=genre) + serietv.genere.add(genere) + else: + GenereSerieTV.objects.get_or_create(genere=genre) + genere = GenereSerieTV.objects.get(genere=genre) + serietv.genere.add(genere) + if stagioni == 1: + season = Stagioni.objects.create(numero_stagione=stagioni,serie_tv=serietv) + for episodes in tv_show_info['data']: + if season.numero_stagione == episodes['airedSeason']: + numero_stagione = Stagioni.objects.get(numero_stagione=season.numero_stagione,serie_tv=season.serie_tv) + print(numero_stagione) + Episodi.objects.create(stagione=numero_stagione,numero_episodio=episodes['airedEpisodeNumber'],streaming_link="",nome_episodio=episodes['episodeName']) + else: + for seasons in range(1,(stagioni+1)): + season = Stagioni.objects.create(numero_stagione=seasons,serie_tv=serietv) + for episodes in tv_show_info['data']: + if season.numero_stagione == episodes['airedSeason']: + numero_stagione = Stagioni.objects.get(numero_stagione=season.numero_stagione,serie_tv=season.serie_tv) + Episodi.objects.create(stagione=numero_stagione,numero_episodio=episodes['airedEpisodeNumber'],streaming_link="",nome_episodio=episodes['episodeName']) + return redirect(serietv.get_absolute_url()) + + + +def preferiti(request,slug): + serietv = get_object_or_404(SerieTV,slug=slug) + user = request.user + profilo = get_object_or_404(Profilo,user=user) + preferito = serietv.preferito.filter(user=profilo.user) + if preferito.exists(): # Controllo se il ManyToManyField esiste filtrandolo con l'id dell'utente che esegue la richiesta + serietv.preferito.remove(profilo) # Se esiste rimuovo dai preferiti + messages.error(request, 'Film tolto dai preferiti correttamente!') # Mostro il messaggio + else: + serietv.preferito.add(profilo) # Se il ManyToManyField non esiste lo creo aggiungendo ai preferiti l'id dell'utente che esegue la richiesta + messages.success(request, 'Film aggiunto ai preferiti correttamente!') # Mostro il messaggio + return HttpResponseRedirect(serietv.get_absolute_url()) # Ritorno l'absolute url del film + +def guarda_dopo(request,slug): + serietv = get_object_or_404(SerieTV,slug=slug) + user = request.user + profilo = get_object_or_404(Profilo,user=user) + guarda_dopo = serietv.guarda_dopo.filter(user=profilo.user) + if guarda_dopo.exists(): + serietv.guarda_dopo.remove(profilo) + else: + serietv.guarda_dopo.add(profilo) + return HttpResponseRedirect(serietv.get_absolute_url()) + +class DeleteComment(DeleteView): + model = CommentoSerieTV + + def get_success_url(self): + tv_show = self.get_object().media + return reverse_lazy('serietvdetail', kwargs={'slug': tv_show.slug}) diff --git a/StreamingSite/__init__.py b/StreamingSite/__init__.py new file mode 100644 index 0000000..742da6a --- /dev/null +++ b/StreamingSite/__init__.py @@ -0,0 +1,3 @@ +from .celery import app as celery_app + +__all__ = ['celery_app'] \ No newline at end of file diff --git a/StreamingSite/__pycache__/__init__.cpython-37.pyc b/StreamingSite/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..09cf6e9 Binary files /dev/null and b/StreamingSite/__pycache__/__init__.cpython-37.pyc differ diff --git a/StreamingSite/__pycache__/__init__.cpython-38.pyc b/StreamingSite/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..c920dc0 Binary files /dev/null and b/StreamingSite/__pycache__/__init__.cpython-38.pyc differ diff --git a/StreamingSite/__pycache__/celery.cpython-37.pyc b/StreamingSite/__pycache__/celery.cpython-37.pyc new file mode 100644 index 0000000..84ceeb6 Binary files /dev/null and b/StreamingSite/__pycache__/celery.cpython-37.pyc differ diff --git a/StreamingSite/__pycache__/celery.cpython-38.pyc b/StreamingSite/__pycache__/celery.cpython-38.pyc new file mode 100644 index 0000000..ad67abf Binary files /dev/null and b/StreamingSite/__pycache__/celery.cpython-38.pyc differ diff --git a/StreamingSite/__pycache__/settings.cpython-37.pyc b/StreamingSite/__pycache__/settings.cpython-37.pyc new file mode 100644 index 0000000..6e5c7ff Binary files /dev/null and b/StreamingSite/__pycache__/settings.cpython-37.pyc differ diff --git a/StreamingSite/__pycache__/settings.cpython-38.pyc b/StreamingSite/__pycache__/settings.cpython-38.pyc new file mode 100644 index 0000000..156ac7a Binary files /dev/null and b/StreamingSite/__pycache__/settings.cpython-38.pyc differ diff --git a/StreamingSite/__pycache__/urls.cpython-37.pyc b/StreamingSite/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..e5ff79d Binary files /dev/null and b/StreamingSite/__pycache__/urls.cpython-37.pyc differ diff --git a/StreamingSite/__pycache__/urls.cpython-38.pyc b/StreamingSite/__pycache__/urls.cpython-38.pyc new file mode 100644 index 0000000..37ed46f Binary files /dev/null and b/StreamingSite/__pycache__/urls.cpython-38.pyc differ diff --git a/StreamingSite/__pycache__/wsgi.cpython-37.pyc b/StreamingSite/__pycache__/wsgi.cpython-37.pyc new file mode 100644 index 0000000..b04920c Binary files /dev/null and b/StreamingSite/__pycache__/wsgi.cpython-37.pyc differ diff --git a/StreamingSite/__pycache__/wsgi.cpython-38.pyc b/StreamingSite/__pycache__/wsgi.cpython-38.pyc new file mode 100644 index 0000000..1fab83e Binary files /dev/null and b/StreamingSite/__pycache__/wsgi.cpython-38.pyc differ diff --git a/StreamingSite/asgi.py b/StreamingSite/asgi.py new file mode 100644 index 0000000..e0bc7a4 --- /dev/null +++ b/StreamingSite/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for StreamingSite 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.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'StreamingSite.settings') + +application = get_asgi_application() diff --git a/StreamingSite/celery.py b/StreamingSite/celery.py new file mode 100644 index 0000000..d02bcc0 --- /dev/null +++ b/StreamingSite/celery.py @@ -0,0 +1,18 @@ +from __future__ import absolute_import +import os +from celery import Celery +from django.conf import settings + +# set the default Django settings module for the 'celery' program. +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'StreamingSite.settings') +app = Celery('StreamingSite') + +# Using a string here means the worker will not have to +# pickle the object when using Windows. +app.config_from_object('django.conf:settings') +app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) + + +@app.task(bind=True) +def debug_task(self): + print('Request: {0!r}'.format(self.request)) \ No newline at end of file diff --git a/StreamingSite/settings.py b/StreamingSite/settings.py new file mode 100644 index 0000000..e5ae305 --- /dev/null +++ b/StreamingSite/settings.py @@ -0,0 +1,155 @@ +""" +Django settings for StreamingSite project. + +Generated by 'django-admin startproject' using Django 3.0.5. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.0/ref/settings/ +""" + +import os + + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = False + +ALLOWED_HOSTS = ["*"] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'crispy_forms', + 'Film', + 'SerieTV', + 'Anime', + 'core' +] + +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 = 'StreamingSite.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [os.path.join(BASE_DIR, 'templates')], + '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', + 'core.context_processors.userprofile' + ], + }, + }, +] + +WSGI_APPLICATION = 'StreamingSite.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.0/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.0/topics/i18n/ + +LANGUAGE_CODE = 'it-IT' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.0/howto/static-files/ + +STATIC_URL = '/static/' + +STATIC_ROOT = '/home/lordchannel/static-serve/' + +STATICFILES_DIRS = [ + os.path.join(BASE_DIR, "static") +] + +MEDIA_ROOT = os.path.join(BASE_DIR, "upload/") + +MEDIA_URL = '/media/' + +LOGIN_REDIRECT_URL = "/" + +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + +# CELERY STUFF +REDIS_HOST = '192.168.1.38' +REDIS_PORT = '32768' +BROKER_URL = 'redis://' + REDIS_HOST + ':' + REDIS_PORT + '/0' +BROKER_TRANSPORT_OPTIONS = {'visibility_timeout': 3600} +CELERY_RESULT_BACKEND = 'redis://' + REDIS_HOST + ':' + REDIS_PORT + '/0' + +SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') +SECURE_SSL_REDIRECT = True +SESSION_COOKIE_SECURE = True +CSRF_COOKIE_SECURE = True + +CRISPY_TEMPLATE_PACK = 'bootstrap4' diff --git a/StreamingSite/urls.py b/StreamingSite/urls.py new file mode 100644 index 0000000..744d900 --- /dev/null +++ b/StreamingSite/urls.py @@ -0,0 +1,33 @@ +"""StreamingSite URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import include,path +from django.conf import settings +from django.conf.urls.static import static +from django.views.generic.base import RedirectView + +urlpatterns = [ + path('admin/', admin.site.urls), + path("serietv/",include('SerieTV.urls')), + path("accounts/",include('django.contrib.auth.urls')), + path("",include('core.urls')), + path("anime/",include('Anime.urls')), + path("film/",include('Film.urls')) + +] + +if settings.DEBUG is True: + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/StreamingSite/wsgi.py b/StreamingSite/wsgi.py new file mode 100644 index 0000000..eaa1218 --- /dev/null +++ b/StreamingSite/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for StreamingSite 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.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'StreamingSite.settings') + +application = get_wsgi_application() diff --git a/celerybeat-schedule.bak b/celerybeat-schedule.bak new file mode 100644 index 0000000..53972c1 --- /dev/null +++ b/celerybeat-schedule.bak @@ -0,0 +1,4 @@ +'entries', (2048, 647) +'__version__', (512, 15) +'tz', (1024, 4) +'utc_enabled', (1536, 4) diff --git a/celerybeat-schedule.dat b/celerybeat-schedule.dat new file mode 100644 index 0000000..ac7fbc5 Binary files /dev/null and b/celerybeat-schedule.dat differ diff --git a/celerybeat-schedule.dir b/celerybeat-schedule.dir new file mode 100644 index 0000000..53972c1 --- /dev/null +++ b/celerybeat-schedule.dir @@ -0,0 +1,4 @@ +'entries', (2048, 647) +'__version__', (512, 15) +'tz', (1024, 4) +'utc_enabled', (1536, 4) diff --git a/celerybeat.pid b/celerybeat.pid new file mode 100644 index 0000000..ad0a9f7 --- /dev/null +++ b/celerybeat.pid @@ -0,0 +1 @@ +14370 diff --git a/core/__init__.py b/core/__init__.py new file mode 100644 index 0000000..ec7e78f --- /dev/null +++ b/core/__init__.py @@ -0,0 +1 @@ +default_app_config = "core.apps.CoreConfig" \ No newline at end of file diff --git a/core/__pycache__/__init__.cpython-37.pyc b/core/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..c9386b5 Binary files /dev/null and b/core/__pycache__/__init__.cpython-37.pyc differ diff --git a/core/__pycache__/__init__.cpython-38.pyc b/core/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..19ff33f Binary files /dev/null and b/core/__pycache__/__init__.cpython-38.pyc differ diff --git a/core/__pycache__/admin.cpython-37.pyc b/core/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..7f84b63 Binary files /dev/null and b/core/__pycache__/admin.cpython-37.pyc differ diff --git a/core/__pycache__/admin.cpython-38.pyc b/core/__pycache__/admin.cpython-38.pyc new file mode 100644 index 0000000..f6b1893 Binary files /dev/null and b/core/__pycache__/admin.cpython-38.pyc differ diff --git a/core/__pycache__/apps.cpython-37.pyc b/core/__pycache__/apps.cpython-37.pyc new file mode 100644 index 0000000..df258ed Binary files /dev/null and b/core/__pycache__/apps.cpython-37.pyc differ diff --git a/core/__pycache__/apps.cpython-38.pyc b/core/__pycache__/apps.cpython-38.pyc new file mode 100644 index 0000000..6f9c399 Binary files /dev/null and b/core/__pycache__/apps.cpython-38.pyc differ diff --git a/core/__pycache__/context_processors.cpython-37.pyc b/core/__pycache__/context_processors.cpython-37.pyc new file mode 100644 index 0000000..8a04221 Binary files /dev/null and b/core/__pycache__/context_processors.cpython-37.pyc differ diff --git a/core/__pycache__/context_processors.cpython-38.pyc b/core/__pycache__/context_processors.cpython-38.pyc new file mode 100644 index 0000000..2de157f Binary files /dev/null and b/core/__pycache__/context_processors.cpython-38.pyc differ diff --git a/core/__pycache__/forms.cpython-37.pyc b/core/__pycache__/forms.cpython-37.pyc new file mode 100644 index 0000000..200565c Binary files /dev/null and b/core/__pycache__/forms.cpython-37.pyc differ diff --git a/core/__pycache__/forms.cpython-38.pyc b/core/__pycache__/forms.cpython-38.pyc new file mode 100644 index 0000000..5835e0f Binary files /dev/null and b/core/__pycache__/forms.cpython-38.pyc differ diff --git a/core/__pycache__/models.cpython-37.pyc b/core/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..1a78441 Binary files /dev/null and b/core/__pycache__/models.cpython-37.pyc differ diff --git a/core/__pycache__/models.cpython-38.pyc b/core/__pycache__/models.cpython-38.pyc new file mode 100644 index 0000000..0163be8 Binary files /dev/null and b/core/__pycache__/models.cpython-38.pyc differ diff --git a/core/__pycache__/signals.cpython-37.pyc b/core/__pycache__/signals.cpython-37.pyc new file mode 100644 index 0000000..beb4a9b Binary files /dev/null and b/core/__pycache__/signals.cpython-37.pyc differ diff --git a/core/__pycache__/signals.cpython-38.pyc b/core/__pycache__/signals.cpython-38.pyc new file mode 100644 index 0000000..8318f74 Binary files /dev/null and b/core/__pycache__/signals.cpython-38.pyc differ diff --git a/core/__pycache__/tasks.cpython-37.pyc b/core/__pycache__/tasks.cpython-37.pyc new file mode 100644 index 0000000..0ea76a5 Binary files /dev/null and b/core/__pycache__/tasks.cpython-37.pyc differ diff --git a/core/__pycache__/tasks.cpython-38.pyc b/core/__pycache__/tasks.cpython-38.pyc new file mode 100644 index 0000000..f030061 Binary files /dev/null and b/core/__pycache__/tasks.cpython-38.pyc differ diff --git a/core/__pycache__/urls.cpython-37.pyc b/core/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..70a92a1 Binary files /dev/null and b/core/__pycache__/urls.cpython-37.pyc differ diff --git a/core/__pycache__/urls.cpython-38.pyc b/core/__pycache__/urls.cpython-38.pyc new file mode 100644 index 0000000..4815585 Binary files /dev/null and b/core/__pycache__/urls.cpython-38.pyc differ diff --git a/core/__pycache__/views.cpython-37.pyc b/core/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000..8104535 Binary files /dev/null and b/core/__pycache__/views.cpython-37.pyc differ diff --git a/core/__pycache__/views.cpython-38.pyc b/core/__pycache__/views.cpython-38.pyc new file mode 100644 index 0000000..9a337fa Binary files /dev/null and b/core/__pycache__/views.cpython-38.pyc differ diff --git a/core/admin.py b/core/admin.py new file mode 100644 index 0000000..4ae68f6 --- /dev/null +++ b/core/admin.py @@ -0,0 +1,5 @@ +from django.contrib import admin +from .models import Profilo +# Register your models here. + +admin.site.register(Profilo) diff --git a/core/apps.py b/core/apps.py new file mode 100644 index 0000000..3d441a1 --- /dev/null +++ b/core/apps.py @@ -0,0 +1,9 @@ +from django.apps import AppConfig + + +class CoreConfig(AppConfig): + name = 'core' + +# Funzione ready per importare i signals + def ready(self): + import core.signals \ No newline at end of file diff --git a/core/context_processors.py b/core/context_processors.py new file mode 100644 index 0000000..aa8f696 --- /dev/null +++ b/core/context_processors.py @@ -0,0 +1,11 @@ +from .models import Profilo +from django.shortcuts import get_object_or_404 +from django.contrib.auth.models import User + +def userprofile(request): + if request.user.is_authenticated: + utente = get_object_or_404(User,username=request.user.username) + profilo = get_object_or_404(Profilo,user=utente) + context = {"profilo":profilo} + return context + return {} \ No newline at end of file diff --git a/core/forms.py b/core/forms.py new file mode 100644 index 0000000..6d21548 --- /dev/null +++ b/core/forms.py @@ -0,0 +1,33 @@ +from django import forms +from django.contrib.auth.forms import UserCreationForm +from django.contrib.auth.models import User +from django.forms import widgets +from .models import Profilo + +class FormRegistrazione(UserCreationForm): + email = forms.CharField(max_length=30,required=True,widget=forms.EmailInput()) + + class Meta: + model = User + fields = ['username', 'email','password1','password2'] + + def clean_email(self): + # Check that email is not duplicate + username = self.cleaned_data["username"] + email = self.cleaned_data["email"] + users = User.objects.filter(email__iexact=email).exclude(username__iexact=username) + if users: + raise forms.ValidationError('Un utente con questa email è già presente.') + return email.lower() + + +class ProfiloForm(forms.ModelForm): + immagine_profilo = forms.FileField(label="",required=True) + background_image = forms.FileField(label="",required=True) + class Meta: + model = Profilo + exclude = ["user","is_online"] + labels = { + "colore_tema": "Colore Tema :", + "biografia": "Scrivi una Biografia..." + } \ No newline at end of file diff --git a/core/migrations/0001_initial.py b/core/migrations/0001_initial.py new file mode 100644 index 0000000..90d6310 --- /dev/null +++ b/core/migrations/0001_initial.py @@ -0,0 +1,30 @@ +# Generated by Django 3.0.7 on 2020-08-01 14:52 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='Profilo', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('immagine_profilo', models.ImageField(default='default.jpg', upload_to='')), + ('is_online', models.BooleanField(default=False)), + ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='profili', to=settings.AUTH_USER_MODEL)), + ], + options={ + 'verbose_name': 'Profilo', + 'verbose_name_plural': 'Profili', + }, + ), + ] diff --git a/core/migrations/0002_auto_20200801_1507.py b/core/migrations/0002_auto_20200801_1507.py new file mode 100644 index 0000000..20cb6e1 --- /dev/null +++ b/core/migrations/0002_auto_20200801_1507.py @@ -0,0 +1,23 @@ +# Generated by Django 3.0.7 on 2020-08-01 15:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='profilo', + name='background_image', + field=models.ImageField(blank=True, null=True, upload_to=''), + ), + migrations.AlterField( + model_name='profilo', + name='immagine_profilo', + field=models.ImageField(default='default.png', upload_to=''), + ), + ] diff --git a/core/migrations/0003_profilo_biografia.py b/core/migrations/0003_profilo_biografia.py new file mode 100644 index 0000000..c61875d --- /dev/null +++ b/core/migrations/0003_profilo_biografia.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-08-01 15:24 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0002_auto_20200801_1507'), + ] + + operations = [ + migrations.AddField( + model_name='profilo', + name='biografia', + field=models.CharField(blank=True, max_length=120, null=True), + ), + ] diff --git a/core/migrations/0004_profilo_colore_tema.py b/core/migrations/0004_profilo_colore_tema.py new file mode 100644 index 0000000..17cb08b --- /dev/null +++ b/core/migrations/0004_profilo_colore_tema.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-08-01 15:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0003_profilo_biografia'), + ] + + operations = [ + migrations.AddField( + model_name='profilo', + name='colore_tema', + field=models.CharField(choices=[('DefaultTheme', 'Tema Default'), ('DeathStar', 'Tema Oscuro'), ('NightMidnight', 'Tema Blu Scuro')], default='DeathStar', max_length=120), + ), + ] diff --git a/core/migrations/0005_auto_20201010_1711.py b/core/migrations/0005_auto_20201010_1711.py new file mode 100644 index 0000000..cd95212 --- /dev/null +++ b/core/migrations/0005_auto_20201010_1711.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.1 on 2020-10-10 15:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0004_profilo_colore_tema'), + ] + + operations = [ + migrations.AlterField( + model_name='profilo', + name='background_image', + field=models.ImageField(blank=True, default='background_image.jpg', null=True, upload_to=''), + ), + ] diff --git a/core/migrations/0006_auto_20201010_1713.py b/core/migrations/0006_auto_20201010_1713.py new file mode 100644 index 0000000..73d11c3 --- /dev/null +++ b/core/migrations/0006_auto_20201010_1713.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.1 on 2020-10-10 15:13 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0005_auto_20201010_1711'), + ] + + operations = [ + migrations.AlterField( + model_name='profilo', + name='background_image', + field=models.ImageField(default='background_image.jpg', upload_to=''), + ), + ] diff --git a/core/migrations/0007_auto_20201011_1251.py b/core/migrations/0007_auto_20201011_1251.py new file mode 100644 index 0000000..f20f471 --- /dev/null +++ b/core/migrations/0007_auto_20201011_1251.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1.1 on 2020-10-11 10:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0006_auto_20201010_1713'), + ] + + operations = [ + migrations.AlterField( + model_name='profilo', + name='background_image', + field=models.ImageField(default='default/Doom.jpg', upload_to=''), + ), + migrations.AlterField( + model_name='profilo', + name='immagine_profilo', + field=models.ImageField(default='default/default.png', upload_to=''), + ), + ] diff --git a/core/migrations/0008_auto_20201011_1255.py b/core/migrations/0008_auto_20201011_1255.py new file mode 100644 index 0000000..b61927f --- /dev/null +++ b/core/migrations/0008_auto_20201011_1255.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.1 on 2020-10-11 10:55 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0007_auto_20201011_1251'), + ] + + operations = [ + migrations.AlterField( + model_name='profilo', + name='background_image', + field=models.ImageField(default='default/Doom.jpeg', upload_to=''), + ), + ] diff --git a/core/migrations/__init__.py b/core/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/core/migrations/__pycache__/0001_initial.cpython-37.pyc b/core/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000..8f90319 Binary files /dev/null and b/core/migrations/__pycache__/0001_initial.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0001_initial.cpython-38.pyc b/core/migrations/__pycache__/0001_initial.cpython-38.pyc new file mode 100644 index 0000000..6ad4438 Binary files /dev/null and b/core/migrations/__pycache__/0001_initial.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0002_auto_20200801_1507.cpython-37.pyc b/core/migrations/__pycache__/0002_auto_20200801_1507.cpython-37.pyc new file mode 100644 index 0000000..4734699 Binary files /dev/null and b/core/migrations/__pycache__/0002_auto_20200801_1507.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0002_auto_20200801_1507.cpython-38.pyc b/core/migrations/__pycache__/0002_auto_20200801_1507.cpython-38.pyc new file mode 100644 index 0000000..f9fd7e3 Binary files /dev/null and b/core/migrations/__pycache__/0002_auto_20200801_1507.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0003_profilo_biografia.cpython-37.pyc b/core/migrations/__pycache__/0003_profilo_biografia.cpython-37.pyc new file mode 100644 index 0000000..ba54637 Binary files /dev/null and b/core/migrations/__pycache__/0003_profilo_biografia.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0003_profilo_biografia.cpython-38.pyc b/core/migrations/__pycache__/0003_profilo_biografia.cpython-38.pyc new file mode 100644 index 0000000..8985f15 Binary files /dev/null and b/core/migrations/__pycache__/0003_profilo_biografia.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0004_profilo_colore_tema.cpython-37.pyc b/core/migrations/__pycache__/0004_profilo_colore_tema.cpython-37.pyc new file mode 100644 index 0000000..f711c2f Binary files /dev/null and b/core/migrations/__pycache__/0004_profilo_colore_tema.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0004_profilo_colore_tema.cpython-38.pyc b/core/migrations/__pycache__/0004_profilo_colore_tema.cpython-38.pyc new file mode 100644 index 0000000..a90943e Binary files /dev/null and b/core/migrations/__pycache__/0004_profilo_colore_tema.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0005_auto_20201010_1711.cpython-37.pyc b/core/migrations/__pycache__/0005_auto_20201010_1711.cpython-37.pyc new file mode 100644 index 0000000..23477c7 Binary files /dev/null and b/core/migrations/__pycache__/0005_auto_20201010_1711.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0005_auto_20201010_1711.cpython-38.pyc b/core/migrations/__pycache__/0005_auto_20201010_1711.cpython-38.pyc new file mode 100644 index 0000000..9f20705 Binary files /dev/null and b/core/migrations/__pycache__/0005_auto_20201010_1711.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0006_auto_20201010_1713.cpython-37.pyc b/core/migrations/__pycache__/0006_auto_20201010_1713.cpython-37.pyc new file mode 100644 index 0000000..5a129b3 Binary files /dev/null and b/core/migrations/__pycache__/0006_auto_20201010_1713.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0006_auto_20201010_1713.cpython-38.pyc b/core/migrations/__pycache__/0006_auto_20201010_1713.cpython-38.pyc new file mode 100644 index 0000000..e754636 Binary files /dev/null and b/core/migrations/__pycache__/0006_auto_20201010_1713.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0007_auto_20201011_1251.cpython-37.pyc b/core/migrations/__pycache__/0007_auto_20201011_1251.cpython-37.pyc new file mode 100644 index 0000000..4630def Binary files /dev/null and b/core/migrations/__pycache__/0007_auto_20201011_1251.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0007_auto_20201011_1251.cpython-38.pyc b/core/migrations/__pycache__/0007_auto_20201011_1251.cpython-38.pyc new file mode 100644 index 0000000..b9d2420 Binary files /dev/null and b/core/migrations/__pycache__/0007_auto_20201011_1251.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/0008_auto_20201011_1255.cpython-37.pyc b/core/migrations/__pycache__/0008_auto_20201011_1255.cpython-37.pyc new file mode 100644 index 0000000..06cf4a7 Binary files /dev/null and b/core/migrations/__pycache__/0008_auto_20201011_1255.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/0008_auto_20201011_1255.cpython-38.pyc b/core/migrations/__pycache__/0008_auto_20201011_1255.cpython-38.pyc new file mode 100644 index 0000000..b839855 Binary files /dev/null and b/core/migrations/__pycache__/0008_auto_20201011_1255.cpython-38.pyc differ diff --git a/core/migrations/__pycache__/__init__.cpython-37.pyc b/core/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..8339105 Binary files /dev/null and b/core/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/core/migrations/__pycache__/__init__.cpython-38.pyc b/core/migrations/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..92a0752 Binary files /dev/null and b/core/migrations/__pycache__/__init__.cpython-38.pyc differ diff --git a/core/models.py b/core/models.py new file mode 100644 index 0000000..08a7331 --- /dev/null +++ b/core/models.py @@ -0,0 +1,28 @@ +from django.db import models +from django.contrib.auth.models import User +from django.urls import reverse +# Create your models here. + +class Profilo(models.Model): # Classe Profilo custom della Classe User + user = models.OneToOneField(User,on_delete=models.CASCADE,related_name="profili") # Proprieta' user collegata tramite OneToOneField alla Classe User + immagine_profilo = models.ImageField(default='default/default.png') # Proprieta' image per caricare un'immagine. In questo caso impostata una di default + background_image = models.ImageField(default='default/Doom.jpeg') + is_online = models.BooleanField(default=False) # Proprieta' is_online per verificare se l'utente é loggato tramite i signals + biografia = models.CharField(max_length=120,blank=True,null=True) + DefaultTheme = 'DefaultTheme' + DarkSide = 'DeathStar' + NightMidnight = 'NightMidnight' + scelte_tema = [ + (DefaultTheme,'Tema Default'), + (DarkSide, 'Tema Oscuro'), + (NightMidnight, 'Tema Blu Scuro') + ] + colore_tema = models.CharField(max_length=120,choices=scelte_tema,default=DarkSide) + + def __str__(self): + return self.user.username + + class Meta: + verbose_name = "Profilo" + verbose_name_plural = "Profili" + diff --git a/core/signals.py b/core/signals.py new file mode 100644 index 0000000..f3256b8 --- /dev/null +++ b/core/signals.py @@ -0,0 +1,32 @@ +from .models import Profilo +from django.contrib.auth.models import User +from django.db.models.signals import post_save +from django.dispatch import receiver +from django.contrib.auth.signals import user_logged_in, user_logged_out +from django.shortcuts import HttpResponseRedirect + + +# Permette di creare un Profilo Custom dichiarato nel models.py +@receiver(post_save, sender=User) +def create_profile(sender, instance, created, **kwargs): + print("Created :", created) + if created: + Profilo.objects.create(user=instance) + +# Permette di salvare il Profilo nel database +@receiver(post_save, sender=User) +def save_profile(sender, instance, **kwargs): + instance.profili.save() + +# Permette di vedere se l'utente é loggato +@receiver(user_logged_in) +def got_online(sender, user, request, **kwargs): + user.profili.is_online = True + user.profili.save() + +# Permette di vedere se l'utente non é loggato +@receiver(user_logged_out) +def got_offline(sender, user, request, **kwargs): + if request.user.is_authenticated: + user.profili.is_online = False + user.profili.save() \ No newline at end of file diff --git a/core/tasks.py b/core/tasks.py new file mode 100644 index 0000000..891e1e2 --- /dev/null +++ b/core/tasks.py @@ -0,0 +1,51 @@ +from celery.task.schedules import crontab +from celery.decorators import periodic_task +from celery.utils.log import get_task_logger +from Film.models import Film +from SerieTV.models import SerieTV +from Anime.models import Anime + +logger = get_task_logger(__name__) + + +@periodic_task( + run_every=(crontab(0, 0, day_of_month='1')), + name="film_reset_views_after_a_month", + ignore_result=True +) +def film_reset_views_after_a_month(): + """ + Resetta le visite di tutti i Film,Anime e Serie TV + """ + for lista_film in Film.objects.all(): + lista_film.visualizzazioni = 0 + lista_film.save() + logger.info("Resettate le Visite Mensili!") + +@periodic_task( + run_every=(crontab(0, 0, day_of_month='1')), + name="anime_reset_views_after_a_month", + ignore_result=True +) +def anime_reset_views_after_a_month(): + """ + Resetta le visite di tutti i Film,Anime e Serie TV + """ + for lista_anime in Anime.objects.all(): + lista_anime.visualizzazioni = 0 + lista_anime.save() + logger.info("Resettate le Visite Mensili!") + +@periodic_task( + run_every=(crontab(0, 0, day_of_month='1')), + name="serietv_reset_views_after_a_month", + ignore_result=True +) +def serietv_reset_views_after_a_month(): + """ + Resetta le visite di tutti i Film,Anime e Serie TV + """ + for lista_serietv in SerieTV.objects.all(): + lista_serietv.visualizzazioni = 0 + lista_serietv.save() + logger.info("Resettate le Visite Mensili!") diff --git a/core/tests.py b/core/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/core/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/core/urls.py b/core/urls.py new file mode 100644 index 0000000..963c0c2 --- /dev/null +++ b/core/urls.py @@ -0,0 +1,9 @@ +from django.urls import path +from .views import accountUtente,homepage,cerca,registrazione + +urlpatterns = [ + path('utente//',accountUtente,name='profilo-utente'), + path('cerca/',cerca,name="cerca-media"), + path('accounts/registrazione',registrazione,name="registrazione-profilo"), + path('',homepage,name='homepage') +] \ No newline at end of file diff --git a/core/views.py b/core/views.py new file mode 100644 index 0000000..b571dc4 --- /dev/null +++ b/core/views.py @@ -0,0 +1,76 @@ +from django.shortcuts import render,get_object_or_404,redirect,HttpResponseRedirect +from .models import Profilo +from django.contrib.auth.models import User, UserManager +from django.contrib.auth import REDIRECT_FIELD_NAME, authenticate, login +from Film.models import Film,Commento +from Anime.models import Anime,CommentoAnime +from SerieTV.models import CommentoSerieTV,SerieTV +from django.db.models import Q +from itertools import chain +from operator import attrgetter +from utils.random_media import random_media +from .forms import FormRegistrazione,ProfiloForm + +def accountUtente(request,username): + utente = get_object_or_404(User,username=username) + profilo = get_object_or_404(Profilo,user=utente) + commenti_film = Commento.objects.filter(utente=profilo).order_by('-data_commento').distinct() + commenti_anime = CommentoAnime.objects.filter(utente=profilo).order_by('-data_commento').distinct() + commenti_serietv = CommentoSerieTV.objects.filter(utente=profilo).order_by('-data_commento').distinct() + commenti = list(sorted(chain(commenti_film, commenti_anime,commenti_serietv), key=attrgetter('data_commento'), reverse=True))[:3] + film_lista_preferiti = profilo.preferiti.all() + film_watch_later = profilo.watch_later.all() + serietv_lista_preferiti = profilo.serietv_preferite.all() + serietv_watch_later = profilo.serietv_watch_later.all() + anime_lista_preferiti = profilo.anime_preferiti.all() + anime_watch_later = profilo.anime_watch_later.all() + if request.method == "POST": + form = ProfiloForm(request.POST or None,request.FILES or None,instance=profilo) + if form.is_valid(): + form.save() + return redirect('profilo-utente',username=profilo) + else: + form = ProfiloForm(instance=profilo) + context = {"utente":profilo,"commenti":commenti,"film_lista_preferiti":film_lista_preferiti,"film_watch_later":film_watch_later,"serietv_lista_preferiti": serietv_lista_preferiti,"serietv_watch_later":serietv_watch_later,"anime_lista_preferiti":anime_lista_preferiti,"anime_watch_later":anime_watch_later,"form":form} + return render(request,'profilo.html',context) + +def homepage(request): + film = Film.objects.all() + anime = Anime.objects.all() + serietv = SerieTV.objects.all() + random_film_serietv_anime = random_media() + ultimi_caricamenti_media = list(sorted(chain(film, anime,serietv), key=attrgetter('creato_in_data'), reverse=True))[:6] + media_popolari = list(sorted(chain(film, anime,serietv), key=attrgetter('visualizzazioni'),reverse=True))[:6] + context = {"ultimi_caricamenti_media":ultimi_caricamenti_media,"random_film_serietv_anime":random_film_serietv_anime,"media_popolari":media_popolari} + return render(request,"homepage.html",context) + +def cerca(request): + if "q" in request.GET: + querystring = request.GET.get("q") + if len(querystring) == 0: + return redirect("/cerca/") + anime = Anime.objects.filter(titolo__icontains=querystring) + serietv = SerieTV.objects.filter(titolo__icontains=querystring) + film = Film.objects.filter(titolo__icontains=querystring) + media = list(chain(film,serietv,anime)) + context = {"media":media} + return render(request,'cerca.html',context) + else: + return render(request, 'cerca.html') + +def registrazione(request): + if request.method == "POST": + form = FormRegistrazione(request.POST) + if form.is_valid(): + username = form.cleaned_data['username'] + email = form.cleaned_data['email'] + password = form.cleaned_data['password1'] + User.objects.create_user(username=username,password=password,email=email) + user = authenticate(username=username,password=password) + login(request,user) + return HttpResponseRedirect("/") + else: + form = FormRegistrazione() + context = {"form": form} + print(context) + return render(request,'registrazione.html',context) diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..96733de Binary files /dev/null and b/db.sqlite3 differ diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..56b5678 --- /dev/null +++ b/manage.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'StreamingSite.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/static/css/bootstrap-grid.min.css b/static/css/bootstrap-grid.min.css new file mode 100644 index 0000000..63e1bc6 --- /dev/null +++ b/static/css/bootstrap-grid.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap Grid v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */@-ms-viewport{width:device-width}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.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%;min-height:1px;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:none}.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:none}.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:none}.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:none}.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:none}.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%}}.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}}.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}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/static/css/bootstrap-reboot.min.css b/static/css/bootstrap-reboot.min.css new file mode 100644 index 0000000..402715d --- /dev/null +++ b/static/css/bootstrap-reboot.min.css @@ -0,0 +1,8 @@ +/*! + * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) + */*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}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,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}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}dfn{font-style:italic}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;-webkit-text-decoration-skip:objects}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;-ms-overflow-style:scrollbar}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}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[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-cancel-button,[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} +/*# sourceMappingURL=bootstrap-reboot.min.css.map */ \ No newline at end of file diff --git a/static/css/button.css b/static/css/button.css new file mode 100644 index 0000000..37b8481 --- /dev/null +++ b/static/css/button.css @@ -0,0 +1,748 @@ +/** +* +* --------------------------------------------------------------------------- +* +* Template : Mybutton - CSS3 Button Collections +* Author : thecodrops +* Author URI : http://thecodrops.com +* --------------------------------------------------------------------------- +* +**/ + + +/*============================= + Common Styles +===============================*/ +[class*="atb-"] {min-width: 95px;padding: 11px 15px;display: inline-block;position: relative;font-size: 12px;font-weight: 400;line-height: 1;white-space: nowrap;vertical-align: middle;cursor: pointer;text-decoration: none !important;text-align: center;} +/* Button Size */ +.atb-large {padding: 13px 20px;font-size: 14px;} +.atb-large[class*="atb-modern-"] {padding: 16px 25px;font-size: 17px;} +.atb-small {padding: 9px 12px;font-size: 11px;} +/* Button Radius */ +.atb-pill {-webkit-border-radius: 40px;border-radius: 40px;} +.atb-round {-webkit-border-radius: 5px;border-radius: 5px;} +/* Fullwidth Button */ +.atb-fullwidth {width: 100%;-webkit-box-sizing: border-box;box-sizing: border-box;} + + +/*============================= + Button Styles +===============================*/ + +/* Basic Button */ +.atb-basic {-webkit-transition: background-color .25s ease;transition: background-color .25s ease;border: 1px solid #f5f5f5;} +.atb-basic.atb-default {background-color: #f5f5f5;color: #444;} +.atb-basic.atb-default:hover {background-color: #eee;color: #666;} +.atb-basic.atb-primary {color: #fff;background-color: #337ab7;border-color: #337ab7;} +.atb-basic.atb-primary:hover {color: #fff;background-color: #286090;border-color: #286090;} +.atb-basic.atb-success {color: #fff;background-color: #5cb85c;border-color: #5cb85c;} +.atb-basic.atb-success:hover {color: #fff;background-color: #449d44;border-color: #449d44;} +.atb-basic.atb-info {color: #fff;background-color: #5bc0de;border-color: #5bc0de;} +.atb-basic.atb-info:hover {color: #fff;background-color: #31b0d5;border-color: #31b0d5;} +.atb-basic.atb-warning {color: #fff;background-color: #f0ad4e;border-color: #f0ad4e;} +.atb-basic.atb-warning:hover {color: #fff;background-color: #ec971f;border-color: #ec971f;} +.atb-basic.atb-danger {color: #fff;background-color: #d9534f;border-color: #d9534f;} +.atb-basic.atb-danger:hover {color: #fff;background-color: #c9302c;border-color: #c9302c;} +.atb-basic.atb-black {color: #fff;background-color: #28373b;border-color: #28373b;} +.atb-basic.atb-black:hover {background-color: #131A1B;border-color: #131A1B;color: #fff;} +.atb-basic.atb-pink {color: #fff;background-color: #9d5db8;border-color: #9d5db8;} +.atb-basic.atb-pink:hover {color: #fff;background-color: #8e44ad;border-color: #8e44ad;} +.atb-basic.atb-turquoise {color: #fff;background-color: #1abc9c;border-color: #1abc9c;} +.atb-basic.atb-turquoise:hover {color: #fff;background-color: #16a085;border-color: #16a085;} + + +/* Basic A */ +.atb-basic-a {border: 2px solid transparent;-webkit-transition: .2s all ease-in-out;transition: .2s all ease-in-out;} +.atb-basic-a:not(.atb-default) {color: #fff;} +.atb-basic-a.atb-default {background: #f5f5f5;color: #444;} +.atb-basic-a.atb-primary {background-color: #337ab7;} +.atb-basic-a.atb-success {background-color: #5cb85c;} +.atb-basic-a.atb-info {background-color: #5bc0de;} +.atb-basic-a.atb-warning {background-color: #f0ad4e;} +.atb-basic-a.atb-danger {background-color: #d9534f;} +.atb-basic-a.atb-black {background-color: #28373b;} +.atb-basic-a.atb-pink {background-color: #9d5db8;} +.atb-basic-a.atb-turquoise {background-color: #1abc9c;} +.atb-basic-a:hover {background: transparent;} +.atb-basic-a.atb-default:hover {border-color: #f5f5f5;color: #777;} +.atb-basic-a.atb-primary:hover {color: #337ab7;border-color: #337ab7;} +.atb-basic-a.atb-success:hover {color: #5cb85c;border-color: #5cb85c;} +.atb-basic-a.atb-info:hover {color: #5bc0de;border-color: #5bc0de;} +.atb-basic-a.atb-warning:hover {color: #f0ad4e;border-color: #f0ad4e;} +.atb-basic-a.atb-danger:hover {color: #c9302c;border-color: #c9302c;} +.atb-basic-a.atb-black:hover {color: #28373b;border-color: #28373b;} +.atb-basic-a.atb-pink:hover {color: #9d5db8;border-color: #9d5db8;} +.atb-basic-a.atb-turquoise:hover {color: #1abc9c;border-color: #1abc9c;} + +/* Basic B */ +.atb-basic-b {border: 1px solid;background: transparent;-webkit-transition: .25s background cubic-bezier(0, 0, 0, 0.2);transition: .25s background cubic-bezier(0, 0, 0, 0.2);} +.atb-basic-b.atb-default {border-color: #f3f3f3;color: #444;} +.atb-basic-b.atb-default:hover {background: #f3f3f3;color: #666;} +.atb-basic-b.atb-primary {color: #337ab7;border-color: #337ab7;} +.atb-basic-b.atb-primary:hover, +.atb-basic-b.atb-primary:active, +.atb-basic-b.atb-primary:focus {background: #337ab7;color: #fff;} +.atb-basic-b.atb-success {color: #5cb85c;border-color: #5cb85c;} +.atb-basic-b.atb-success:hover, +.atb-basic-b.atb-success:active, +.atb-basic-b.atb-success:focus {background: #5cb85c;color: #fff;} +.atb-basic-b.atb-info {color: #5bc0de;border-color: #5bc0de;} +.atb-basic-b.atb-info:hover, +.atb-basic-b.atb-info:active, +.atb-basic-b.atb-info:focus {background: #5bc0de;color: #fff;} +.atb-basic-b.atb-warning {color: #f0ad4e;border-color: #f0ad4e;} +.atb-basic-b.atb-warning:hover, +.atb-basic-b.atb-warning:active, +.atb-basic-b.atb-warning:focus {background: #f0ad4e;color: #fff;} +.atb-basic-b.atb-danger {color: #d9534f;border-color: #d9534f;} +.atb-basic-b.atb-danger:hover, +.atb-basic-b.atb-danger:active, +.atb-basic-b.atb-danger:focus {background: #d9534f;color: #fff;} +.atb-basic-b.atb-black {color: #28373b;border-color: #28373b;} +.atb-basic-b.atb-black:hover, +.atb-basic-b.atb-black:active, +.atb-basic-b.atb-black:focus {background: #28373b;color: #fff;} +.atb-basic-b.atb-pink {color: #9d5db8;border-color: #9d5db8;} +.atb-basic-b.atb-pink:hover, +.atb-basic-b.atb-pink:active, +.atb-basic-b.atb-pink:focus {background: #9d5db8;color: #fff;} +.atb-basic-b.atb-turquoise {color: #1abc9c;border-color: #1abc9c;} +.atb-basic-b.atb-turquoise:hover, +.atb-basic-b.atb-turquoise:active, +.atb-basic-b.atb-turquoise:focus {background: #1abc9c;color: #fff;} + +/* Basic C */ +.atb-basic-c {border: 1px solid #ddd;background: transparent;position: relative;color: #444;} +.atb-basic-c:hover {color: #666;background: transparent;} +.atb-basic-c:before, +.atb-basic-c:after {position: absolute;content: '';height: 1px;width: 7px;background: #ddd;top: 50%;margin-top: -1px; -webkit-transition: .25s width cubic-bezier(0, 0, 0, 0.2);transition: .25s width cubic-bezier(0, 0, 0, 0.2);} +.atb-basic-c:before {left: 0;} +.atb-basic-c:after {width: 0;} +.atb-basic-c:hover:before {width: 10px;} +.atb-basic-c:hover:after {right: 0;width: 10px;} +.atb-basic-c.atb-primary {color: #337ab7;border-color: #337ab7;} +.atb-basic-c.atb-success {color: #5cb85c;border-color: #5cb85c;} +.atb-basic-c.atb-info {color: #5bc0de;border-color: #5bc0de;} +.atb-basic-c.atb-warning {color: #f0ad4e;border-color: #f0ad4e;} +.atb-basic-c.atb-danger {color: #d9534f;border-color: #d9534f;} +.atb-basic-c.atb-black {color: #28373b;border-color: #28373b;} +.atb-basic-c.atb-pink {color: #9d5db8;border-color: #9d5db8;} +.atb-basic-c.atb-turquoise {color: #1abc9c;border-color: #1abc9c;} +.atb-basic-c.atb-primary:before, +.atb-basic-c.atb-primary:after {background: #337ab7;} +.atb-basic-c.atb-success:before, +.atb-basic-c.atb-success:after {background: #5cb85c;} +.atb-basic-c.atb-info:before, +.atb-basic-c.atb-info:after {background: #5bc0de;} +.atb-basic-c.atb-warning:before, +.atb-basic-c.atb-warning:after {background: #f0ad4e;} +.atb-basic-c.atb-danger:before, +.atb-basic-c.atb-danger:after {background: #d9534f;} +.atb-basic-c.atb-black:before, +.atb-basic-c.atb-black:after {background: #28373b;} +.atb-basic-c.atb-pink:before, +.atb-basic-c.atb-pink:after {background: #9d5db8;} +.atb-basic-c.atb-turquoise:before, +.atb-basic-c.atb-turquoise:after {background: #1abc9c;} + +/* Basic D */ +.atb-basic-d {position: relative;-webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);color: #444;z-index: 1;padding: 12px !important;} +.atb-basic-d:hover {color: #666;} +.atb-basic-d:before, +.atb-basic-d:after {position: absolute;content: '';height: 2px;width: 100%;background: #ddd;left: 0; -webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);z-index: -1;} +.atb-basic-d:before {top: 0;} +.atb-basic-d:after {bottom: 0;} +.atb-basic-d:hover:before {height: 50%;} +.atb-basic-d:hover:after {height: 50%;} +.atb-basic-d:not(.atb-default):hover {color: #fff;} +.atb-basic-d.atb-primary {color: #337ab7;} +.atb-basic-d.atb-success {color: #5cb85c;} +.atb-basic-d.atb-info {color: #5bc0de;} +.atb-basic-d.atb-warning {color: #f0ad4e;} +.atb-basic-d.atb-danger {color: #d9534f;} +.atb-basic-d.atb-black {color: #28373b;} +.atb-basic-d.atb-pink {color: #9d5db8;} +.atb-basic-d.atb-turquoise {color: #1abc9c;} +.atb-basic-d.atb-primary:before, +.atb-basic-d.atb-primary:after {background: #337ab7;} +.atb-basic-d.atb-success:before, +.atb-basic-d.atb-success:after {background: #5cb85c;} +.atb-basic-d.atb-info:before, +.atb-basic-d.atb-info:after {background: #5bc0de;} +.atb-basic-d.atb-warning:before, +.atb-basic-d.atb-warning:after {background: #f0ad4e;} +.atb-basic-d.atb-danger:before, +.atb-basic-d.atb-danger:after {background: #d9534f;} +.atb-basic-d.atb-black:before, +.atb-basic-d.atb-black:after {background: #28373b;} +.atb-basic-d.atb-pink:before, +.atb-basic-d.atb-pink:after {background: #9d5db8;} +.atb-basic-d.atb-turquoise:before, +.atb-basic-d.atb-turquoise:after {background: #1abc9c;} + +/* Basic E */ +.atb-basic-e {position: relative;z-index: 1;-webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);color: #444;} +.atb-basic-e:hover {color: #666;} +.atb-basic-e:before, +.atb-basic-e:after {position: absolute;content: '';height: 100%;width: 2px;background: #ddd;top: 0;-webkit-transition: .25s all cubic-bezier(0, 0, 0, 0.2);transition: .25s all cubic-bezier(0, 0, 0, 0.2);z-index: -1;} +.atb-basic-e:before {left: 0;} +.atb-basic-e:after {right: 0;} +.atb-basic-e:hover:before {width: 50%;} +.atb-basic-e:hover:after {width: 50%;} +.atb-basic-e:not(.atb-default):hover {color: #fff;} +.atb-basic-e.atb-primary {color: #337ab7;} +.atb-basic-e.atb-success {color: #5cb85c;} +.atb-basic-e.atb-info {color: #5bc0de;} +.atb-basic-e.atb-warning {color: #f0ad4e;} +.atb-basic-e.atb-danger {color: #d9534f;} +.atb-basic-e.atb-black {color: #28373b;} +.atb-basic-e.atb-pink {color: #9d5db8;} +.atb-basic-e.atb-turquoise {color: #1abc9c;} +.atb-basic-e.atb-primary:before, +.atb-basic-e.atb-primary:after {background: #337ab7;} +.atb-basic-e.atb-success:before, +.atb-basic-e.atb-success:after {background: #5cb85c;} +.atb-basic-e.atb-info:before, +.atb-basic-e.atb-info:after {background: #5bc0de;} +.atb-basic-e.atb-warning:before, +.atb-basic-e.atb-warning:after {background: #f0ad4e;} +.atb-basic-e.atb-danger:before, +.atb-basic-e.atb-danger:after {background: #d9534f;} +.atb-basic-e.atb-black:before, +.atb-basic-e.atb-black:after {background: #28373b;} +.atb-basic-e.atb-pink:before, +.atb-basic-e.atb-pink:after {background: #9d5db8;} +.atb-basic-e.atb-turquoise:before, +.atb-basic-e.atb-turquoise:after {background: #1abc9c;} + +/* Animate A */ +.atb-animate-a {position: relative;z-index: 1;border: 1px solid #f0f0f0;-webkit-transition: all 0.4s;transition: all 0.4s;color: #444;} +.atb-animate-a:before {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #f0f0f0;z-index: -1;opacity: 0;-webkit-transform: scale3d(0.7, 1, 1);transform: scale3d(0.7, 1, 1);-webkit-transition: -webkit-transform 0.4s, opacity 0.4s, background .4s;transition: transform 0.4s, opacity 0.4s, background .4s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);} +.atb-animate-a, +.atb-animate-a:before {-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);} +.atb-animate-a:hover {color: #666;border-color: #f0f0f0;} +.atb-animate-a:hover:before {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} +.atb-animate-a.atb-primary {border-color: #2e6da4;color: #2e6da4;} +.atb-animate-a.atb-primary:hover:before {background: #2e6da4;} +.atb-animate-a.atb-success {color: #4cae4c;border-color: #4cae4c;} +.atb-animate-a.atb-success:hover:before {background: #4cae4c;} +.atb-animate-a.atb-info {color: #46b8da;border-color: #46b8da;} +.atb-animate-a.atb-info:hover:before {background: #46b8da;} +.atb-animate-a.atb-warning {color: #eea236;border-color: #eea236;} +.atb-animate-a.atb-warning:hover:before {background: #eea236;} +.atb-animate-a.atb-danger {color: #d43f3a;border-color: #d43f3a;} +.atb-animate-a.atb-danger:hover:before {background: #d43f3a;} +.atb-animate-a.atb-black {border-color: #28373b;color: #28373b;} +.atb-animate-a.atb-black:hover:before {background: #28373b;} +.atb-animate-a.atb-pink {border-color: #9d5db8;color: #9d5db8;} +.atb-animate-a.atb-pink:hover:before {background: #9d5db8;} +.atb-animate-a.atb-turquoise {border-color: #1abc9c;color: #1abc9c;} +.atb-animate-a.atb-turquoise:hover:before {background: #1abc9c;} +.atb-animate-a:not(.atb-default):hover {color: #fff;} + +/* Animate B */ +.atb-animate-b {overflow: hidden;position: relative;z-index: 1;border: 1px solid transparent;-webkit-transition: border-color 0.3s, color 0.3s;transition: border-color 0.3s, color 0.3s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);box-sizing: border-box;} +.atb-animate-b:not(.atb-default) {color: #fff;} +.atb-animate-b.atb-default {background-color: #f5f5f5;color: #444;} +.atb-animate-b.atb-default:hover {background-color: #eee;color: #666;} +.atb-animate-b.atb-primary {background-color: #337ab7;} +.atb-animate-b.atb-success {background-color: #5cb85c;} +.atb-animate-b.atb-info {background-color: #5bc0de;} +.atb-animate-b.atb-warning {background-color: #f0ad4e;} +.atb-animate-b.atb-danger {background-color: #d9534f;} +.atb-animate-b.atb-black {background-color: #28373b;} +.atb-animate-b.atb-pink {background-color: #9d5db8;} +.atb-animate-b.atb-turquoise {background-color: #1abc9c;} +.atb-animate-b:before {content: '';position: absolute;top: 0;left: 0;width: 150%;height: 100%;background: #ddd;z-index: -1;-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);-webkit-transform-origin: 0% 100%;transform-origin: 0% 100%;-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;transition: transform 0.3s, opacity 0.3s, background-color 0.3s;} +.atb-animate-b:hover:before {opacity: 1;background-color: #ddd;-webkit-transform: rotate3d(0, 0, 1, 0deg);transform: rotate3d(0, 0, 1, 0deg);-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);} +.atb-animate-b.atb-primary:before {background: #286090;} +.atb-animate-b.atb-primary:hover {border-color: #204d74;} +.atb-animate-b.atb-primary:hover:before {background-color: #204d74;} +.atb-animate-b.atb-success:before {background: #5cb85c;} +.atb-animate-b.atb-success:hover {border-color: #398439;} +.atb-animate-b.atb-success:hover:before {background-color: #398439;} +.atb-animate-b.atb-info:before {background: #5bc0de;} +.atb-animate-b.atb-info:hover {border-color: #269abc;} +.atb-animate-b.atb-info:hover:before {background-color: #269abc;} +.atb-animate-b.atb-warning:before {background: #f0ad4e;} +.atb-animate-b.atb-warning:hover {border-color: #d58512;} +.atb-animate-b.atb-warning:hover:before {background-color: #d58512;} +.atb-animate-b.atb-danger:before {background: #d9534f;} +.atb-animate-b.atb-danger:hover {border-color: #ac2925;} +.atb-animate-b.atb-danger:hover:before {background-color: #ac2925;} +.atb-animate-b.atb-black:before {background: #28373b;} +.atb-animate-b.atb-black:hover {border-color: #131A1B;} +.atb-animate-b.atb-black:hover:before {background-color: #131A1B;} +.atb-animate-b.atb-pink:before {background: #9d5db8;} +.atb-animate-b.atb-pink:hover {border-color: #733D8B;} +.atb-animate-b.atb-pink:hover:before {background-color: #733D8B;} +.atb-animate-b.atb-turquoise:before {background: #1abc9c;} +.atb-animate-b.atb-turquoise:hover {border-color: #129077;} +.atb-animate-b.atb-turquoise:hover:before {background-color: #129077;} + +/* Animate C*/ +.atb-animate-c {border: 1px solid;background: transparent;position: relative;z-index: 1;-webkit-transition: .3s ease all;transition: .3s ease all;} +.atb-animate-c:after {content: '';position: absolute;z-index: -1;-webkit-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;width: 100%;height: 0;top: 0;left: 0;} +.atb-animate-c:not(.atb-default):hover, +.atb-animate-c:not(.atb-default):active {color: #fff;} +.atb-animate-c:hover:after, +.atb-animate-c:active:after {height: 100%;} +.atb-animate-c.atb-default {border-color: #eee;color: #444;} +.atb-animate-c.atb-default:after {background: #eee;} +.atb-animate-c.atb-primary {border-color: #337ab7;color: #337ab7;} +.atb-animate-c.atb-primary:after {background: #337ab7;} +.atb-animate-c.atb-success {border-color: #5cb85c;color: #5cb85c;} +.atb-animate-c.atb-success:after {background: #5cb85c;} +.atb-animate-c.atb-info {border-color: #5bc0de;color: #5bc0de;} +.atb-animate-c.atb-info:after {background: #5bc0de;} +.atb-animate-c.atb-warning {border-color: #f0ad4e;color: #f0ad4e;} +.atb-animate-c.atb-warning:after {background: #f0ad4e;} +.atb-animate-c.atb-danger {border-color: #d9534f;color: #d9534f;} +.atb-animate-c.atb-danger:after {background: #d9534f;} +.atb-animate-c.atb-black {border-color: #28373b;color: #28373b;} +.atb-animate-c.atb-black:after {background: #28373b;} +.atb-animate-c.atb-pink {border-color: #9d5db8;color: #9d5db8;} +.atb-animate-c.atb-pink:after {background: #9d5db8;} +.atb-animate-c.atb-turquoise {border-color: #1abc9c;color: #1abc9c;} +.atb-animate-c.atb-turquoise:after {background: #1abc9c;} + +/* Animate D*/ +.atb-animate-d {border: 1px solid;background: transparent;position: relative;z-index: 1;-webkit-transition: .3s ease all;transition: .3s ease all;} +.atb-animate-d:after {content: '';position: absolute;-webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);width: 0;height: 100%;top: 0;left: 0;z-index: -1;} +.atb-animate-d:not(.atb-default):hover, +.atb-animate-d:not(.atb-default):active {color: #fff;} +.atb-animate-d:hover:after, +.atb-animate-d:active:after {width: 100%;} +.atb-animate-d.atb-default {border-color: #eee;color: #444;} +.atb-animate-d.atb-default:after {background: #eee;} +.atb-animate-d.atb-primary {border-color: #337ab7;color: #337ab7;} +.atb-animate-d.atb-primary:after {background: #337ab7;} +.atb-animate-d.atb-success {border-color: #5cb85c;color: #5cb85c;} +.atb-animate-d.atb-success:after {background: #5cb85c;} +.atb-animate-d.atb-info {border-color: #5bc0de;color: #5bc0de;} +.atb-animate-d.atb-info:after {background: #5bc0de;} +.atb-animate-d.atb-warning {border-color: #f0ad4e;color: #f0ad4e;} +.atb-animate-d.atb-warning:after {background: #f0ad4e;} +.atb-animate-d.atb-danger {border-color: #d9534f;color: #d9534f;} +.atb-animate-d.atb-danger:after {background: #d9534f;} +.atb-animate-d.atb-black {border-color: #28373b;color: #28373b;} +.atb-animate-d.atb-black:after {background: #28373b;} +.atb-animate-d.atb-pink {border-color: #9d5db8;color: #9d5db8;} +.atb-animate-d.atb-pink:after {background: #9d5db8;} +.atb-animate-d.atb-turquoise {border-color: #1abc9c;color: #1abc9c;} +.atb-animate-d.atb-turquoise:after {background: #1abc9c;} + +/* Animate E*/ +.atb-animate-e {border: 1px solid;position: relative;overflow: hidden;z-index: 1;-webkit-transition: .2s cubic-bezier(0.19, 0.4, 0.9, 0.76) background;transition: .2s cubic-bezier(0.19, 0.4, 0.9, 0.76) background;} +.atb-animate-e:after {content: '';position: absolute;width: 100%;height: 0;top: 50%;left: 50%;opacity: 0;-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);transform: translateX(-50%) translateY(-50%) rotate(45deg);-webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);transition: all 0.4s cubic-bezier(0, 0, 0, 0.3);} +.atb-animate-e:not(.atb-default):after {background: rgba(255,255,255,0.15);} +.atb-animate-e:not(.atb-default):hover, +.atb-animate-e:not(.atb-default):active {color: #fff;} +.atb-animate-e:hover:after, +.atb-animate-e:active:after {height: 100%;opacity: 1;} +.atb-animate-e.atb-default {border-color: #eee;color: #444;} +.atb-animate-e.atb-default {border-color: rgba(0,0,0,0.05);} +.atb-animate-e.atb-default:after {background: rgba(0,0,0,0.05);} +.atb-animate-e.atb-primary {border-color: #337ab7;color: #337ab7;} +.atb-animate-e.atb-success {border-color: #5cb85c;color: #5cb85c;} +.atb-animate-e.atb-info {border-color: #5bc0de;color: #5bc0de;} +.atb-animate-e.atb-warning {border-color: #f0ad4e;color: #f0ad4e;} +.atb-animate-e.atb-danger {border-color: #d9534f;color: #d9534f;} +.atb-animate-e.atb-black {border-color: #28373b;color: #28373b;} +.atb-animate-e.atb-pink {border-color: #9d5db8;color: #9d5db8;} +.atb-animate-e.atb-turquoise {border-color: #1abc9c;color: #1abc9c;} +.atb-animate-e.atb-default:hover {background-color: #eee;color: #666;} +.atb-animate-e.atb-primary:hover {background-color: #337ab7;} +.atb-animate-e.atb-success:hover {background-color: #5cb85c;} +.atb-animate-e.atb-info:hover {background-color: #5bc0de;} +.atb-animate-e.atb-warning:hover {background-color: #f0ad4e;} +.atb-animate-e.atb-danger:hover {background-color: #d9534f;} +.atb-animate-e.atb-black:hover {background-color: #28373b;} +.atb-animate-e.atb-pink:hover {background-color: #9d5db8;} +.atb-animate-e.atb-turquoise:hover {background-color: #1abc9c;} + +/* Animate E*/ +.atb-animate-f {margin: 1em 2em;-webkit-transition: color 0.3s;transition: color 0.3s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);color: #444;} +.atb-animate-f:not(.atb-default) {color: #fff;} +.atb-animate-f:before, +.atb-animate-f:after {content: '';position: absolute;border-radius: inherit;background: #eee;z-index: -1;} +.atb-animate-f:before {top: -3px;bottom: -3px;left: -3px;right: -3px;opacity: 0.3;-webkit-transform: scale3d(0.7, 1, 1);transform: scale3d(0.7, 1, 1);-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;transition: transform 0.3s, opacity 0.3s;} +.atb-animate-f:after {top: 0;left: 0;width: 100%;height: 100%;-webkit-transform: scale3d(1.1, 1, 1);transform: scale3d(1.1, 1, 1);-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;transition: transform 0.3s, background-color 0.3s;} +.atb-animate-f:before, +.atb-animate-f:after {-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);} +.atb-animate-f:hover:before {opacity: 1;} +.atb-animate-f:hover:after {background-color: #fff !important;} +.atb-animate-f:hover:after, +.atb-animate-f:hover:before {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);} +.atb-animate-f.atb-primary:hover {color: #337ab7;} +.atb-animate-f.atb-primary:before, +.atb-animate-f.atb-primary:after {background: #337ab7;} +.atb-animate-f.atb-success:hover {color: #5cb85c;} +.atb-animate-f.atb-success:before, +.atb-animate-f.atb-success:after {background: #5cb85c;} +.atb-animate-f.atb-info:hover {color: #5bc0de;} +.atb-animate-f.atb-info:before, +.atb-animate-f.atb-info:after {background: #5bc0de;} +.atb-animate-f.atb-warning:hover {color: #f0ad4e;} +.atb-animate-f.atb-warning:before, +.atb-animate-f.atb-warning:after {background: #f0ad4e;} +.atb-animate-f.atb-danger:hover {color: #d9534f;} +.atb-animate-f.atb-danger:before, +.atb-animate-f.atb-danger:after {background: #d9534f;} +.atb-animate-f.atb-black:hover {color: #28373b;} +.atb-animate-f.atb-black:before, +.atb-animate-f.atb-black:after {background: #28373b;} +.atb-animate-f.atb-pink:hover {color: #9d5db8;} +.atb-animate-f.atb-pink:before, +.atb-animate-f.atb-pink:after {background: #9d5db8;} +.atb-animate-f.atb-turquoise:hover {color: #1abc9c;} +.atb-animate-f.atb-turquoise:before, +.atb-animate-f.atb-turquoise:after {background: #1abc9c;} + +/* Modern A*/ +.atb-modern-a {overflow: hidden;color: #444;border: 2px solid #eee;} +.atb-modern-a::before, +.atb-modern-a::after {content: attr(data-text);position: absolute;width: 100%;height: 50%;left: 0;background: #eee;color: #444;overflow: hidden;-webkit-transition: -webkit-transform 0.3s;transition: transform 0.3s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);} +.atb-modern-a:not(.atb-default)::before, +.atb-modern-a:not(.atb-default)::after {color: #fff} +.atb-modern-a::before {top: 0;padding-top: .8em;} +.atb-modern-a::after {bottom: 0;line-height: 0;} +.atb-modern-a > span {display: block;-webkit-transform: scale3d(0.2, 0.2, 1);transform: scale3d(0.2, 0.2, 1);opacity: 0;-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;transition: transform 0.3s, opacity 0.3s;-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);} +.atb-modern-a:hover::before {-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);} +.atb-modern-a:hover::after {-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} +.atb-modern-a:hover > span {opacity: 1;-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);} +.atb-modern-a.atb-primary {color: #337ab7;border-color: #337ab7;} +.atb-modern-a.atb-primary::before, +.atb-modern-a.atb-primary::after {background: #337ab7;} +.atb-modern-a.atb-success {color: #5cb85c;border-color: #5cb85c;} +.atb-modern-a.atb-success::before, +.atb-modern-a.atb-success::after {background: #5cb85c;} +.atb-modern-a.atb-info {color: #5bc0de;border-color: #5bc0de;} +.atb-modern-a.atb-info::before, +.atb-modern-a.atb-info::after {background: #5bc0de;} +.atb-modern-a.atb-warning {color: #f0ad4e;border-color: #f0ad4e;} +.atb-modern-a.atb-warning::before, +.atb-modern-a.atb-warning::after {background: #f0ad4e;} +.atb-modern-a.atb-danger {color: #d9534f;border-color: #d9534f;} +.atb-modern-a.atb-danger::before, +.atb-modern-a.atb-danger::after {background: #d9534f;} +.atb-modern-a.atb-black {color: #28373b;border-color: #28373b;} +.atb-modern-a.atb-black::before, +.atb-modern-a.atb-black::after {background: #28373b;} +.atb-modern-a.atb-pink {color: #9d5db8;border-color: #9d5db8;} +.atb-modern-a.atb-pink::before, +.atb-modern-a.atb-pink::after {background: #9d5db8;} +.atb-modern-a.atb-turquoise {color: #1abc9c;border-color: #1abc9c;} +.atb-modern-a.atb-turquoise::before, +.atb-modern-a.atb-turquoise::after {background: #1abc9c;} + +/* Modern B*/ +.atb-modern-b {background: #eee;color: #444;overflow: hidden;border: 2px solid #eee;-webkit-transition: all .25s cubic-bezier(0.25, 0.1, 0.62, 0.76);transition: all .25s cubic-bezier(0.25, 0.1, 0.62, 0.76);} +.atb-modern-b > span {display: inline-block;opacity: 0;-webkit-transform: translate3d(0, -10px, 0);transform: translate3d(0, -10px, 0);-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;transition: transform 0.3s, opacity 0.3s;-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);} +.atb-modern-b::before {content: attr(data-text);position: absolute;top: 0;left: 0;width: 100%;height: 100%;padding: 1em 0;-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;transition: transform 0.3s, opacity 0.3s;-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);} +.atb-modern-b:hover::before {opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} +.atb-modern-b:hover > span {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} +.atb-modern-b:hover > span:nth-child(1) {-webkit-transition-delay: 0.045s;transition-delay: 0.045s;} +.atb-modern-b:hover > span:nth-child(2) {-webkit-transition-delay: 0.09s;transition-delay: 0.09s;} +.atb-modern-b:hover > span:nth-child(3) {-webkit-transition-delay: 0.135s;transition-delay: 0.135s;} +.atb-modern-b:hover > span:nth-child(4) {-webkit-transition-delay: 0.18s;transition-delay: 0.18s;} +.atb-modern-b:hover > span:nth-child(5) {-webkit-transition-delay: 0.225s;transition-delay: 0.225s;} +.atb-modern-b:hover > span:nth-child(6) {-webkit-transition-delay: 0.27s;transition-delay: 0.27s;} +.atb-modern-b:hover > span:nth-child(7) {-webkit-transition-delay: 0.315s;transition-delay: 0.315s;} +.atb-modern-b:hover > span:nth-child(8) {-webkit-transition-delay: 0.36s;transition-delay: 0.36s;} +.atb-modern-b:hover > span:nth-child(9) {-webkit-transition-delay: 0.405s;transition-delay: 0.405s;} +.atb-modern-b:hover > span:nth-child(10) {-webkit-transition-delay: 0.45s;transition-delay: 0.45s;} +.atb-modern-b:not(.atb-default) {color: #fff;} +.atb-modern-b.atb-primary {background-color: #337ab7;border-color: #337ab7;} +.atb-modern-b.atb-success {background-color: #5cb85c;border-color: #5cb85c;} +.atb-modern-b.atb-info {background-color: #5bc0de;border-color: #5bc0de;} +.atb-modern-b.atb-warning {background-color: #f0ad4e;border-color: #f0ad4e;} +.atb-modern-b.atb-danger {background-color: #d9534f;border-color: #d9534f;} +.atb-modern-b.atb-black {background-color: #28373b;border-color: #28373b;} +.atb-modern-b.atb-pink {background-color: #9d5db8;border-color: #9d5db8;} +.atb-modern-b.atb-turquoise {background-color: #1abc9c;border-color: #1abc9c;} +.atb-modern-b:hover {background-color: #fff;} +.atb-modern-b.atb-primary:hover {color: #337ab7;} +.atb-modern-b.atb-success:hover {color: #5cb85c;} +.atb-modern-b.atb-info:hover {color: #5bc0de;} +.atb-modern-b.atb-warning:hover {color: #f0ad4e;} +.atb-modern-b.atb-danger:hover {color: #d9534f;} +.atb-modern-b.atb-black:hover {color: #28373b;} +.atb-modern-b.atb-pink:hover {color: #9d5db8;} +.atb-modern-b.atb-turquoise:hover {color: #1abc9c;} + +/*Modern C*/ +.atb-modern-c {background: #eee;color: #444;overflow: hidden;border: 2px solid #eee;-webkit-transition: all .25s cubic-bezier(0.25, 0.1, 0.62, 0.76);transition: all .25s cubic-bezier(0.25, 0.1, 0.62, 0.76);} +.atb-modern-c > span {display: inline-block;} +.atb-modern-c:hover > span:nth-child(odd) {-webkit-animation: anim-modern-c1 0.5s forwards;animation: anim-modern-c1 0.5s forwards;} +.atb-modern-c:hover > span:nth-child(even) {-webkit-animation: anim-modern-c2 0.5s forwards;animation: anim-modern-c2 0.5s forwards;} +.atb-modern-c:hover > span:nth-child(odd), +.atb-modern-c:hover > span:nth-child(even) {-webkit-animation-timing-function: cubic-bezier(0.75, 0, 0.125, 1);transition-animation-function: cubic-bezier(0.75, 0, 0.125, 1);} +@-webkit-keyframes anim-modern-c1 { + 0%, + 100% {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} + 49% {opacity: 1;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} + 50% {opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);color: inherit;} + 51% {opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);} +} + +@keyframes anim-modern-c1 { + 0%, + 100% {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} + 49% {opacity: 1;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} + 50% {opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);color: inherit;} + 51% {opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);} +} +@-webkit-keyframes anim-modern-c2 { + 0%, + 100% {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} + 49% {opacity: 1;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);} + 50% {opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);color: inherit;} + 51% {opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} +} + +@keyframes anim-modern-c2 { + 0%, + 100% {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} + 49% {opacity: 1;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);} + 50% {opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);color: inherit;} + 51% {opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} +} +.atb-modern-c:hover > span:nth-child(1) {-webkit-animation-delay: 0s;animation-delay: 0s;} +.atb-modern-c:hover > span:nth-child(2) {-webkit-animation-delay: 0.05s;animation-delay: 0.05s;} +.atb-modern-c:hover > span:nth-child(3) {-webkit-animation-delay: 0.1s;animation-delay: 0.1s;} +.atb-modern-c:hover > span:nth-child(4) {-webkit-animation-delay: 0.15s;animation-delay: 0.15s;} +.atb-modern-c:hover > span:nth-child(5) {-webkit-animation-delay: 0.2s;animation-delay: 0.2s;} +.atb-modern-c:hover > span:nth-child(6) {-webkit-animation-delay: 0.25s;animation-delay: 0.25s;} +.atb-modern-c:hover > span:nth-child(7) {-webkit-animation-delay: 0.3s;animation-delay: 0.3s;} +.atb-modern-c:hover > span:nth-child(8) {-webkit-animation-delay: 0.35s;animation-delay: 0.35s;} +.atb-modern-c:hover > span:nth-child(9) {-webkit-animation-delay: 0.4s;animation-delay: 0.4s;} +.atb-modern-c:hover > span:nth-child(10) {-webkit-animation-delay: 0.45s;animation-delay: 0.45s;} +.atb-modern-c:hover > span:nth-child(11) {-webkit-animation-delay: 0.5s;animation-delay: 0.5s;} +.atb-modern-c:not(.atb-default) {color: #fff;} +.atb-modern-c.atb-primary {background-color: #337ab7;border-color: #337ab7;} +.atb-modern-c.atb-success {background-color: #5cb85c;border-color: #5cb85c;} +.atb-modern-c.atb-info {background-color: #5bc0de;border-color: #5bc0de;} +.atb-modern-c.atb-warning {background-color: #f0ad4e;border-color: #f0ad4e;} +.atb-modern-c.atb-danger {background-color: #d9534f;border-color: #d9534f;} +.atb-modern-c.atb-black {background-color: #28373b;border-color: #28373b;} +.atb-modern-c.atb-pink {background-color: #9d5db8;border-color: #9d5db8;} +.atb-modern-c.atb-turquoise {background-color: #1abc9c;border-color: #1abc9c;} +.atb-modern-c:hover {background-color: #fff;} +.atb-modern-c.atb-primary:hover {color: #337ab7;} +.atb-modern-c.atb-success:hover {color: #5cb85c;} +.atb-modern-c.atb-info:hover {color: #5bc0de;} +.atb-modern-c.atb-warning:hover {color: #f0ad4e;} +.atb-modern-c.atb-danger:hover {color: #d9534f;} +.atb-modern-c.atb-black:hover {color: #28373b;} +.atb-modern-c.atb-pink:hover {color: #9d5db8;} +.atb-modern-c.atb-turquoise:hover {color: #1abc9c;} + +/* Modern D */ +.atb-modern-d {background: #eee;color: #444;overflow: hidden;-webkit-transition: color 0.3s;transition: color 0.3s;z-index: 1;border: 2px solid #eee;} +.atb-modern-d::before, +.atb-modern-d::after {content: '';position: absolute;height: 100%;width: 100%;bottom: 100%;left: 0;z-index: -1;-webkit-transition: -webkit-transform 0.3s;transition: transform 0.3s;-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);} +.atb-modern-d::before {background: rgba(0,0,0,0.05);} +.atb-modern-d::after {background: rgba(0,0,0,0.1);} +.atb-modern-d:hover {color: #fff;} +.atb-modern-d:hover::before, +.atb-modern-d:hover::after {-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);} +.atb-modern-d:hover::after {-webkit-transition-delay: 0.175s;transition-delay: 0.175s;} +.atb-modern-d:not(.atb-default) {color: #fff;} +.atb-modern-d:not(.atb-default)::before {background: rgba(255,255,255,0.1);} +.atb-modern-d:not(.atb-default)::after {background: rgba(255,255,255,0.2);} +.atb-modern-d.atb-primary {background-color: #337ab7;border-color: #337ab7;} +.atb-modern-d.atb-success {background-color: #5cb85c;border-color: #5cb85c;} +.atb-modern-d.atb-info {background-color: #5bc0de;border-color: #5bc0de;} +.atb-modern-d.atb-warning {background-color: #f0ad4e;border-color: #f0ad4e;} +.atb-modern-d.atb-danger {background-color: #d9534f;border-color: #d9534f;} +.atb-modern-d.atb-black {background-color: #28373b;border-color: #28373b;} +.atb-modern-d.atb-pink {background-color: #9d5db8;border-color: #9d5db8;} +.atb-modern-d.atb-turquoise {background-color: #1abc9c;border-color: #1abc9c;} + +/* 3D A */ +.atb-3d-a {background: #eee;color: #444;box-shadow: 0 6px #ddd;} +.atb-3d-a:hover {box-shadow: 0 4px #ddd;top: 2px;} +.atb-3d-a:active {box-shadow: 0 0 #ddd;top: 6px;} +.atb-3d-a:not(.atb-default) {color: #fff;} +.atb-3d-a.atb-primary {background-color: #337ab7;box-shadow: 0 6px #285F8F;} +.atb-3d-a.atb-success {background-color: #5cb85c;box-shadow: 0 6px #459D45;} +.atb-3d-a.atb-info {background-color: #5bc0de;box-shadow: 0 6px #289FC3;} +.atb-3d-a.atb-warning {background-color: #f0ad4e;box-shadow: 0 6px #EC961D;} +.atb-3d-a.atb-danger {background-color: #d9534f;box-shadow: 0 6px #D43F3B;} +.atb-3d-a.atb-black {background-color: #28373b;box-shadow: 0 6px #0d1213;} +.atb-3d-a.atb-pink {background-color: #9d5db8;box-shadow: 0 6px #82459D;} +.atb-3d-a.atb-turquoise {background-color: #1abc9c;box-shadow: 0 6px #149077;} +.atb-3d-a.atb-primary:hover {box-shadow: 0 4px #285F8F;top: 2px;} +.atb-3d-a.atb-success:hover {box-shadow: 0 4px #459D45;top: 2px;} +.atb-3d-a.atb-info:hover {box-shadow: 0 4px #289FC3;top: 2px;} +.atb-3d-a.atb-warning:hover {box-shadow: 0 4px #EC961D;top: 2px;} +.atb-3d-a.atb-danger:hover {box-shadow: 0 4px #D43F3B;top: 2px;} +.atb-3d-a.atb-black:hover {box-shadow: 0 4px #0d1213;top: 2px;} +.atb-3d-a.atb-pink:hover {box-shadow: 0 4px #82459D;top: 2px;} +.atb-3d-a.atb-turquoise:hover {box-shadow: 0 4px #149077;top: 2px;} +.atb-3d-a.atb-primary:active {box-shadow: 0 0 #285F8F;top: 6px;} +.atb-3d-a.atb-success:active {box-shadow: 0 0 #459D45;top: 6px;} +.atb-3d-a.atb-info:active {box-shadow: 0 0 #289FC3;top: 6px;} +.atb-3d-a.atb-warning:active {box-shadow: 0 0 #EC961D;top: 6px;} +.atb-3d-a.atb-danger:active {box-shadow: 0 0 #D43F3B;top: 6px;} +.atb-3d-a.atb-black:active {box-shadow: 0 0 #0d1213;top: 6px;} +.atb-3d-a.atb-pink:active {box-shadow: 0 0 #82459D;top: 6px;} +.atb-3d-a.atb-turquoise:active {box-shadow: 0 0 #149077;top: 6px;} + +/* 3D B */ +.atb-3d-b {background: #eee;color: #444;box-shadow: 4px 4px #ddd;} +.atb-3d-b:hover {box-shadow: 3px 3px #ddd;top: 1px;} +.atb-3d-b:active {box-shadow: 0 0 #ddd;top: 4px;} +.atb-3d-b:not(.atb-default) {color: #fff;} +.atb-3d-b.atb-primary {background-color: #337ab7;box-shadow: 4px 4px #285F8F;} +.atb-3d-b.atb-success {background-color: #5cb85c;box-shadow: 4px 4px #459D45;} +.atb-3d-b.atb-info {background-color: #5bc0de;box-shadow: 4px 4px #289FC3;} +.atb-3d-b.atb-warning {background-color: #f0ad4e;box-shadow: 4px 4px #EC961D;} +.atb-3d-b.atb-danger {background-color: #d9534f;box-shadow: 4px 4px #D43F3B;} +.atb-3d-b.atb-black {background-color: #28373b;box-shadow: 4px 4px #0d1213;} +.atb-3d-b.atb-pink {background-color: #9d5db8;box-shadow: 4px 4px #82459D;} +.atb-3d-b.atb-turquoise {background-color: #1abc9c;box-shadow: 4px 4px #149077;} +.atb-3d-b.atb-primary:hover {box-shadow: 3px 3px #285F8F;top: 1px;} +.atb-3d-b.atb-success:hover {box-shadow: 3px 3px #459D45;top: 1px;} +.atb-3d-b.atb-info:hover {box-shadow: 3px 3px #289FC3;top: 1px;} +.atb-3d-b.atb-warning:hover {box-shadow: 3px 3px #EC961D;top: 1px;} +.atb-3d-b.atb-danger:hover {box-shadow: 3px 3px #D43F3B;top: 1px;} +.atb-3d-b.atb-black:hover {box-shadow: 3px 3px #0d1213;top: 1px;} +.atb-3d-b.atb-pink:hover {box-shadow: 3px 3px #82459D;top: 1px;} +.atb-3d-b.atb-turquoise:hover {box-shadow: 3px 3px #149077;top: 1px;} +.atb-3d-b.atb-primary:active {box-shadow: 0 0 #285F8F;top: 4px;} +.atb-3d-b.atb-success:active {box-shadow: 0 0 #459D45;top: 4px;} +.atb-3d-b.atb-info:active {box-shadow: 0 0 #289FC3;top: 4px;} +.atb-3d-b.atb-warning:active {box-shadow: 0 0 #EC961D;top: 4px;} +.atb-3d-b.atb-danger:active {box-shadow: 0 0 #D43F3B;top: 4px;} +.atb-3d-b.atb-black:active {box-shadow: 0 0 #0d1213;top: 4px;} +.atb-3d-b.atb-pink:active {box-shadow: 0 0 #82459D;top: 4px;} +.atb-3d-b.atb-turquoise:active {box-shadow: 0 0 #149077;top: 4px;} + +/* 3D C */ +.atb-3d-c {background: #eee;color: #444;box-shadow: 4px 0 #ddd;} +.atb-3d-c:hover {box-shadow: 2px 0 #ddd;left: 1px;} +.atb-3d-c:active {box-shadow: 0 0 #ddd;left: 4px;} +.atb-3d-c:not(.atb-default) {color: #fff;} +.atb-3d-c.atb-primary {background-color: #337ab7;box-shadow: 4px 0 #285F8F;} +.atb-3d-c.atb-success {background-color: #5cb85c;box-shadow: 4px 0 #459D45;} +.atb-3d-c.atb-info {background-color: #5bc0de;box-shadow: 4px 0 #289FC3;} +.atb-3d-c.atb-warning {background-color: #f0ad4e;box-shadow: 4px 0 #EC961D;} +.atb-3d-c.atb-danger {background-color: #d9534f;box-shadow: 4px 0 #D43F3B;} +.atb-3d-c.atb-black {background-color: #28373b;box-shadow: 4px 0 #0d1213;} +.atb-3d-c.atb-pink {background-color: #9d5db8;box-shadow: 4px 0 #82459D;} +.atb-3d-c.atb-turquoise {background-color: #1abc9c;box-shadow: 4px 0 #149077;} +.atb-3d-c.atb-primary:hover {box-shadow: 2px 0 #285F8F;left: 1px;} +.atb-3d-c.atb-success:hover {box-shadow: 2px 0 #459D45;left: 1px;} +.atb-3d-c.atb-info:hover {box-shadow: 2px 0 #289FC3;left: 1px;} +.atb-3d-c.atb-warning:hover {box-shadow: 2px 0 #EC961D;left: 1px;} +.atb-3d-c.atb-danger:hover {box-shadow: 2px 0 #D43F3B;left: 1px;} +.atb-3d-c.atb-black:hover {box-shadow: 2px 0 #0d1213;left: 1px;} +.atb-3d-c.atb-pink:hover {box-shadow: 2px 0 #82459D;left: 1px;} +.atb-3d-c.atb-turquoise:hover {box-shadow: 2px 0 #149077;left: 1px;} +.atb-3d-c.atb-primary:active {box-shadow: 0 0 #285F8F;left: 4px;} +.atb-3d-c.atb-success:active {box-shadow: 0 0 #459D45;left: 4px;} +.atb-3d-c.atb-info:active {box-shadow: 0 0 #289FC3;left: 4px;} +.atb-3d-c.atb-warning:active {box-shadow: 0 0 #EC961D;left: 4px;} +.atb-3d-c.atb-danger:active {box-shadow: 0 0 #D43F3B;left: 4px;} +.atb-3d-c.atb-black:active {box-shadow: 0 0 #0d1213;left: 4px;} +.atb-3d-c.atb-pink:active {box-shadow: 0 0 #82459D;left: 4px;} +.atb-3d-c.atb-turquoise:active {box-shadow: 0 0 #149077;left: 4px;} + +/* 3D D */ +.atb-3d-d {background: #eee;color: #444;box-shadow: -4px 0 #ddd;} +.atb-3d-d:hover {box-shadow: -2px 0 #ddd;left: -1px;} +.atb-3d-d:active {box-shadow: 0 0 #ddd;left: -4px;} +.atb-3d-d:not(.atb-default) {color: #fff;} +.atb-3d-d.atb-primary {background-color: #337ab7;box-shadow: -4px 0 #285F8F;} +.atb-3d-d.atb-success {background-color: #5cb85c;box-shadow: -4px 0 #459D45;} +.atb-3d-d.atb-info {background-color: #5bc0de;box-shadow: -4px 0 #289FC3;} +.atb-3d-d.atb-warning {background-color: #f0ad4e;box-shadow: -4px 0 #EC961D;} +.atb-3d-d.atb-danger {background-color: #d9534f;box-shadow: -4px 0 rgb(208, 5, 0);} +.atb-3d-d.atb-black {background-color: #28373b;box-shadow: -4px 0 #0d1213;} +.atb-3d-d.atb-pink {background-color: #9d5db8;box-shadow: -4px 0 #82459D;} +.atb-3d-d.atb-turquoise {background-color: #1abc9c;box-shadow: -4px 0 #149077;} +.atb-3d-d.atb-primary:hover {box-shadow: -2px 0 #285F8F;left: -1px;} +.atb-3d-d.atb-success:hover {box-shadow: -2px 0 #459D45;left: -1px;} +.atb-3d-d.atb-info:hover {box-shadow: -2px 0 #289FC3;left: -1px;} +.atb-3d-d.atb-warning:hover {box-shadow: -2px 0 #EC961D;left: -1px;} +.atb-3d-d.atb-danger:hover {box-shadow: -2px 0 rgb(208, 5, 0);left: -1px;} +.atb-3d-d.atb-black:hover {box-shadow: -2px 0 #0d1213;left: -1px;} +.atb-3d-d.atb-pink:hover {box-shadow: -2px 0 #82459D;left: -1px;} +.atb-3d-d.atb-turquoise:hover {box-shadow: -2px 0 #149077;left: -1px;} +.atb-3d-d.atb-primary:active {box-shadow: 0 0 #285F8F;left: -4px;} +.atb-3d-d.atb-success:active {box-shadow: 0 0 #459D45;left: -4px;} +.atb-3d-d.atb-info:active {box-shadow: 0 0 #289FC3;left: -4px;} +.atb-3d-d.atb-warning:active {box-shadow: 0 0 #EC961D;left: -4px;} +.atb-3d-d.atb-danger:active {box-shadow: 0 0 rgb(208, 5, 0);left: -4px;} +.atb-3d-d.atb-black:active {box-shadow: 0 0 #0d1213;left: -4px;} +.atb-3d-d.atb-pink:active {box-shadow: 0 0 #82459D;left: -4px;} +.atb-3d-d.atb-turquoise:active {box-shadow: 0 0 #149077;left: -4px;} + + +/*Social Baic a*/ +.ats-basic-a {padding-left: 0;} +.ats-basic-a li {display: inline-block;margin: .5em;} +.ats-basic-a li a {display: block;position: relative;} +.ats-basic-a li a span {position: absolute;top: -38px;left: 0;padding: 3px 18px;background: rgba(0,0,0,0.65);-webkit-transform: skewX(-10deg);transform: skewX(-10deg);color: #fff;font-size: 11px;letter-spacing: 1px;display: inline-block;visibility: hidden;opacity: 0;-webkit-transition: top .25s cubic-bezier(0.25, 0.1, 0.66, 0.68), opacity .25s cubic-bezier(0.25, 0.1, 0.63, 0.6);transition: top .25s cubic-bezier(0.25, 0.1, 0.66, 0.68), opacity .25s cubic-bezier(0.25, 0.1, 0.63, 0.6);} +.ats-basic-a li a span:after {content: '';position: absolute;left: 20px;border: 6px solid transparent;border-top-color: rgba(0, 0, 0, 0.65);bottom: -12px;} +.ats-basic-a li a:hover span {top: -40px;opacity: 1;visibility: visible;} +.ats-basic-a li a i {height: 70px;width: 70px;line-height: 70px;font-size: 26px;text-align: center;color: #bbb;background-color: rgba(0,0,0,0.1);-webit-box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.05);box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.05);-webkit-transform: skewX(-10deg);transform: skewX(-10deg);-webkit-transition: background-color .3s ease, color .1s ease-in-out;transition: background-color .3s ease, color .1s ease-in-out;} +.ats-basic-a.light li a i {color: #e8e8e8;background-color: rgba(255, 255, 255, 0.1);box-shadow: 3px 3px 0px rgba(255, 255, 255, 0.05);} +.ats-basic-a li a i:hover {color: #fff} +.ats-basic-a li a:hover i[class*="-facebook"] {background-color: #4766A9;} +.ats-basic-a li a:hover i[class*="-twitter"] {background-color: #00ACED;} +.ats-basic-a li a:hover i[class*="-telegram-plane"] {background-color: #0088cc;} +.ats-basic-a li a:hover i[class*="-google-plus"] {background-color: #DB4437;} +.ats-basic-a li a:hover i[class*="-dribbble"] {background-color: #CB5D9C;} +.ats-basic-a li a:hover i[class*="-linkedin"] {background-color: #0177B5;} +.ats-basic-a li a:hover i[class*="-instagram"] {background-color: #97369D;} +.ats-basic-a li a:hover i[class*="-discord"] {background-color: #7289da;} +.ats-basic-a li a:hover i[class*="-pinterest"] {background-color: #BB0B1F;} +.ats-basic-a li a:hover i[class*="-github"] {background-color: #323131;} +.ats-basic-a li a:hover i[class*="-flickr"] {background-color: #FF1981;} +.ats-basic-a li a:hover i[class*="-vk"] {background-color: #4C75A3;} + +/*Baic b*/ +.ats-basic-b {padding-left: 0;} +.ats-basic-b li {display: inline-block;margin: .5em;} +.ats-basic-b li a {display: block;position: relative;} +.ats-basic-b li a span {position: absolute;top: -38px;left: 0;padding: 6px 26px;background: rgba(0,0,0,0.65);color: #fff;font-size: 12px;letter-spacing: 1px;border-radius: 20px;display: inline-block;visibility: hidden;opacity: 0;-webkit-transition: top .25s cubic-bezier(0.25, 0.1, 0.66, 0.68), opacity .25s cubic-bezier(0.25, 0.1, 0.63, 0.6);transition: top .25s cubic-bezier(0.25, 0.1, 0.66, 0.68), opacity .25s cubic-bezier(0.25, 0.1, 0.63, 0.6);} +.ats-basic-b li a span:after {content: '';position: absolute;left: 20px;border: 6px solid transparent;border-top-color: rgba(0, 0, 0, 0.65);bottom: -12px;} +.ats-basic-b li a:hover span {top: -46px;opacity: 1;visibility: visible;} +.ats-basic-b li a i {height: 100px;width: 100px;line-height: 100px;font-size: 34px;text-align: center;border-radius: 50%;color: #bbb;background-color: rgba(0,0,0,0.1);-webkit-transition: background-color .3s ease, color .1s ease-in-out;transition: background-color .3s ease, color .1s ease-in-out;} +.ats-basic-b.light li a i {color: #e8e8e8;background-color: rgba(255, 255, 255, 0.1);} +.ats-basic-b li a i:hover {color: #fff} +.ats-basic-b li a:hover i[class*="-facebook"] {background-color: #4766A9;} +.ats-basic-b li a:hover i[class*="-twitter"] {background-color: #00ACED;} +.ats-basic-b li a:hover i[class*="-google-plus"] {background-color: #DB4437;} +.ats-basic-b li a:hover i[class*="-dribbble"] {background-color: #CB5D9C;} +.ats-basic-b li a:hover i[class*="-linkedin"] {background-color: #0177B5;} +.ats-basic-b li a:hover i[class*="-instagram"] {background-color: #97369D;} +.ats-basic-b li a:hover i[class*="-pinterest"] {background-color: #BB0B1F;} +.ats-basic-b li a:hover i[class*="-github"] {background-color: #323131;} +.ats-basic-b li a:hover i[class*="-flickr"] {background-color: #FF1981;} +.ats-basic-b li a:hover i[class*="-vk"] {background-color: #4C75A3;} + +/*Social Baic C*/ +.ats-basic-c {padding-left: 0;} +.ats-basic-c li {display: inline-block;} +.ats-basic-c li + li {margin: 0 5px 9px 0;} +.ats-basic-c li a {display: block;position: relative;font-size: 10px;padding: 6px 15px;background-color: rgba(0,0,0,0.05);text-decoration: none;color: #bbb;-webkit-transition: .1s cubic-bezier(0, 0, 0.02, 0.04) background-color;transition: .1s cubic-bezier(0, 0, 0.02, 0.04) background-color;} +.ats-basic-c.light li a {background-color: rgba(255,255,255,0.1);color: #fff;} +.ats-basic-c.light li span {color: #ddd;} +.ats-basic-c li a span {text-transform: uppercase;letter-spacing: 1px;} +.ats-basic-c li a i {margin-right: 6px;font-size: 13px;} +.ats-basic-c li a:hover {color: #fff;} +.ats-basic-c li a.facebook:hover {background-color: #4766A9;} +.ats-basic-c li a.twitter:hover {background-color: #00ACED;} +.ats-basic-c li a.google-plus:hover {background-color: #DB4437;} +.ats-basic-c li a.dribbble:hover {background-color: #CB5D9C;} +.ats-basic-c li a.linkedin:hover {background-color: #0177B5;} +.ats-basic-c li a.instagram:hover {background-color: #97369D;} +.ats-basic-c li a.pinterest:hover {background-color: #BB0B1F;} +.ats-basic-c li a.github:hover {background-color: #323131;} +.ats-basic-c li a.flickr:hover {background-color: #FF1981;} +.ats-basic-c li a.vk:hover {background-color: #4C75A3;} + diff --git a/static/css/default-skin.css b/static/css/default-skin.css new file mode 100644 index 0000000..5378560 --- /dev/null +++ b/static/css/default-skin.css @@ -0,0 +1,482 @@ +/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */ +/* + + Contents: + + 1. Buttons + 2. Share modal and links + 3. Index indicator ("1 of X" counter) + 4. Caption + 5. Loading indicator + 6. Additional styles (root element, top bar, idle state, hidden state, etc.) + +*/ +/* + + 1. Buttons + + */ +/* + + + + + + + + + {% elif nome_film == None %} +
+
+
+

Nessun Film Trovato! Riprova!

+
+
+
+ {% endif %} + + + + + + + \ No newline at end of file diff --git a/templates/cerca.html b/templates/cerca.html new file mode 100644 index 0000000..eae2bea --- /dev/null +++ b/templates/cerca.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %} CERCA {% endblock title %} + +{% block content %} + + + +
+
+
+
+
+ +

CERCA FILM,SERIE TV e ANIME

+ +
+
+
+
+
+ + + +
+
+
+ + {% for media_trovati in media %} +
+
+
+ + + + +
+
+

{{ media_trovati.titolo }}

+ + {% for genere_media in media_trovati.genere.all %} + {{ genere_media.genere }} + {% endfor %} + + {{ media_trovati.voto }} +
+
+
+ {% empty %} +
+

+ Ci dispiace, nessun contenuto trovato... +

+
+ {% endfor %} + + +
+
+
+ +{% endblock content %} \ No newline at end of file diff --git a/templates/details1.html b/templates/details1.html new file mode 100644 index 0000000..c68e149 --- /dev/null +++ b/templates/details1.html @@ -0,0 +1,347 @@ +{% extends 'base.html' %} +{% load static %} + + +{% block title %} LORDCHANNEL {{ film.titolo }} {% endblock title %} +{% block content %} + +
+ +
+ + + + +
+
+ +
+

{{ film.titolo }}

+
+ + + +
+
+ +
+
+ +
+
+ + + +
+
+
+ {{ film.voto }} + +
    +
  • {{ film.qualità_video }}
  • +
  • {{ film.età_consigliata }}
  • +
+
+ +
    +
  • Generi : + {% for generi in film.genere.all %} + {{ generi.genere }} + {% endfor %} +
  • +
  • Data di Uscita : {{ film.data_uscita }}
  • +
  • Durata: {{ film.durata }}
  • +
  • Lingua: ITA
  • +
+ +
+ {{ film.descrizione }} +
+
+
+ +
+
+
+ + + + +
+
+ +
+ Disponibile per i dispositivi: +
    +
  • IOS
  • +
  • Android
  • +
  • Windows
  • +
  • Smart TV
  • +
+
+ + + + + +
+
+ + {% if request.user.is_authenticated %} + {% if is_favorite %} + + {% else %} + + {% endif %} + {% if watch_later %} + + {% else %} + + {% endif %} + {% endif %} + + + + + +
+ + +
+ + + +
+
+
+
+
+ +

CONTENUTI AGGIUNTIVI

+ + + + + + + +
+ + + +
+ +
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
    + {% if request.user.is_authenticated %} + {% for comments in commenti %} +
  • +
    + + {{ comments.utente.user }} + {{ comments.data_commento }} +
    +

    {{ comments.commento }}

    +
  • + {% empty %} +
  • +

    Nessun Commento Scritto! Inzia Ora!

    +
  • + + {% endfor %} + {% include 'aggiungiCommento.html' %} + {% else %} +
  • +

    Per poter commentare devi loggarti...

    +
  • + {% endif %} +
+
+ +
+
+ +
+
+ +
+
+ {% if film.trailer %} + + {% else %} + + {% endif %} + +
+ +
+ +
+
+ +
+ + + +
+
+ +
+ + +
+
+ +
+

Ti Potrebbero Interessare...

+
+ + {% for similiar_film in you_migth_like %} + +
+
+
+ + + + +
+
+

{{ similiar_film.titolo }}

+ + {% for genres in similiar_film.genere.all %} + {{ genres.genere }} + {% endfor %} + + {{ similiar_film.voto }} +
+
+
+ {% endfor %} + +
+
+ +
+
+
+ + {% include 'photo.html' %} + {% endblock content %} + {% block javascript %} + + {% endblock javascript %} \ No newline at end of file diff --git a/templates/details2.html b/templates/details2.html new file mode 100644 index 0000000..3e0a419 --- /dev/null +++ b/templates/details2.html @@ -0,0 +1,349 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %} LORDCHANNEL {{ serietv.titolo }} {% endblock title %} + +{% block style %} + +{% endblock style %} + + +{% block content %} + +
+ +
+ + + +
+
+ +
+

{{ serietv.titolo }}

+
+ + + +
+
+
+ +
+
+ +
+
+ + + +
+
+
+ {{ serietv.voto }} + +
    +
  • {{ serietv.qualità_video }}
  • +
  • {{ serietv.età_consigliata }}
  • +
+
+ +
    +
  • Generi: + {% for genres in serietv.genere.all %} + {{ genres.genere }} + {% endfor %} +
  • +
  • Data di Uscita: {{ serietv.data_uscita }}
  • +
  • Durata: {{ serietv.durata }}
  • +
  • Lingua: ITA
  • +
+ +
+ {{ serietv.descrizione }} +
+
+
+ +
+
+
+ + + +
+
+ {% if serietv.trailer %} + + {% else %} + + {% endif %} + +
+
+ + + +
+
+ {% for seasons in serietv.seriestagioni.all %} +
+
+ +
+ +
+
+ + + + + + + + + + {% for episodes in seasons.stagione.all %} + + + + + {% endfor %} + +
#Titolo
{{ episodes.numero_episodio }}
+
+
+
+ {% endfor %} +
+
+
+ + +
+
+ +
+ Disponibile per i dispositivi: +
    +
  • IOS
  • +
  • Android
  • +
  • Windows
  • +
  • Smart TV
  • +
+
+ + + + + +
+
+ + + + + +
+ + +
+ + + +
+
+
+
+
+ +

CONTENUTI AGGIUNTIVI

+ + + + + + + +
+ + + +
+ +
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
    + {% if request.user.is_authenticated %} + {% for comments in commenti %} +
  • +
    + + {{ comments.utente.user }} + {{ comments.data_commento }} +
    +

    {{ comments.commento }}

    +
  • + {% empty %} +
  • +

    Nessun Commento Scritto! Inzia Ora!

    +
  • + + {% endfor %} +
    + {% csrf_token %} + {{ form.commento.errors }} + {{ form.commento }} + +
    + {% else %} +
  • +

    Per poter commentare devi loggarti...

    +
  • + {% endif %} +
+
+ +
+
+ +
+ + + +
+
+ +
+ + +
+
+ +
+

Ti potrebbero interessare...

+
+ + + + {% for serietv_youmightlike in serietv_foryou %} +
+
+
+ + + + +
+
+

{{ serietv_youmightlike.titolo }}

+ + {% for serietv_youmightlikegenres in serietv_youmightlike.genere.all %} + {{ serietv_youmightlikegenres.genere }} + {% endfor %} + + {{ serietv_youmightlike.voto }} +
+
+
+ {% endfor %} + +
+
+ +
+
+
+ + {% include 'photo.html' %} +{% endblock content %} \ No newline at end of file diff --git a/templates/film.html b/templates/film.html new file mode 100644 index 0000000..023dc24 --- /dev/null +++ b/templates/film.html @@ -0,0 +1,126 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %}LISTA FILM {% endblock title %} + +{% block content %} + + + +
+
+
+
+
+ +

FILM

+ +
+
+
+
+
+ + + +
+
+
+
+
+
+ +
+ GENERE: + + + + +
+ + + + + +
+
+
+
+
+
+ + + + + + + +
+
+
+ + {% for lista_film in films %} +
+
+
+ + + + +
+
+

{{ lista_film.titolo }}

+ + {% for genere_film in lista_film.genere.all %} + {{ genere_film.genere }} + {% endfor %} + + {{ lista_film.voto }} +
+
+
+ {% endfor %} + + {% if films.has_other_pages %} + +
+
    + {% if films.has_previous %} +
  • + +
  • + {% endif %} + {% for i in films.paginator.page_range %} + {% if films.number == i %} +
  • {{i}}
  • + {% else %} +
  • {{i}}
  • + {% endif %} + {% endfor %} + {% if films.has_next %} +
  • + +
  • + {% endif %} +
+
+ + {% endif %} +
+
+
+ + + + +{% endblock content %} + + diff --git a/templates/film_backup.html b/templates/film_backup.html new file mode 100644 index 0000000..9d9b9fc --- /dev/null +++ b/templates/film_backup.html @@ -0,0 +1,13 @@ + + + + + + Document + + + {% for movie in films %} + {{ movie.titolo }} + {% endfor %} + + \ No newline at end of file diff --git a/templates/film_cerca.html b/templates/film_cerca.html new file mode 100644 index 0000000..97f4524 --- /dev/null +++ b/templates/film_cerca.html @@ -0,0 +1,45 @@ + + + + + + + + + + + Hello, world! + + + + + + + + + + + \ No newline at end of file diff --git a/templates/films_genere.html b/templates/films_genere.html new file mode 100644 index 0000000..3b1f873 --- /dev/null +++ b/templates/films_genere.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %}LISTA FILM PER GENERE {{ genere }} {% endblock title %} + +{% block content %} + + + +
+
+
+
+
+ +

FILM PER GENERE : {{ genere }}

+ +
+
+
+
+
+ + +
+
+
+ + {% for film_genere in film %} +
+
+
+ + + + +
+
+

{{ film_genere.titolo }}

+ + {% for genere_film in film_genere.genere.all %} + {{ genere_film.genere }} + {% endfor %} + + {{ film_genere.voto }} +
+
+
+ {% endfor %} + +
+
+
+ +{% endblock content %} \ No newline at end of file diff --git a/templates/homepage.html b/templates/homepage.html new file mode 100644 index 0000000..d48f412 --- /dev/null +++ b/templates/homepage.html @@ -0,0 +1,327 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %} LORDCHANNEL - HOMEPAGE {% endblock title %} +{% block content %} +{% block style %} + +{% endblock style %} + + +
+
+
+
+
+ +

Articoli Recenti

+ +
+
+
+
+ +
+ +
+
+
+ + {% for ultimi_articoli in ultimi_caricamenti_media %} +
+
+
+
+
+ + + + +
+
+ +
+
+

{{ ultimi_articoli.titolo }}

+ + {% for genres_ultimi_articolo in ultimi_articoli.genere.all %} + {{ genres_ultimi_articolo.genere }} + {% endfor %} + + +
+ {{ ultimi_articoli.voto }} + +
    +
  • {{ ultimi_articoli.qualità_video }}
  • +
  • {{ ultimi_articoli.età_consigliata }}
  • +
  • {{ ultimi_articoli.lingua }}
  • +
+
+ +
+

{{ ultimi_articoli.descrizione|truncatewords:35 }}

+
+
+
+
+
+
+ + {% endfor %} +
+
+
+ +
+
+ + + +
+
+
+
+ +

Non sai cosa Guardare Stasera? Ti Consigliamo...

+ +
+
+
+
+
+
+ + + + +
+
+
+

FILM

+ + + +
+ +
+ +
+
+
+
+ + +
+
+ + + + +
+
+
+

SERIETV

+ + + +
+ +
+ +
+
+
+
+ + + + +
+
+ + + + +
+
+
+

ANIME

+ + + +
+ +
+ + +
+
+ + + +
+
+
+
+ +

Contenuti piú visti del mese...

+ +
+
+
+
+ +
+
+ {% for popular_post in media_popolari %} +
+
+
+
+
+ + + + +
+
+ +
+
+

{{ popular_post.titolo }}

+ + {% for genres_popular_post in popular_post.genere.all %} + {{ genres_popular_post.genere }} + {% endfor %} + + +
+ {{ popular_post.voto }} + +
    +
  • {{ popular_post.visualizzazioni }} {% if popular_post.visualizzazioni == 1 %} Visualizzazione {% else %} Visualizzazioni {% endif %}
  • +
+
+
+

{{ popular_post.descrizione|truncatewords:28 }}

+
+
+
+
+
+
+ + {% endfor %} +
+
+
+ +
+ +{% endblock %} \ No newline at end of file diff --git a/templates/lista_generi.html b/templates/lista_generi.html new file mode 100644 index 0000000..eb59a47 --- /dev/null +++ b/templates/lista_generi.html @@ -0,0 +1,13 @@ + + + + + + Lista Generi + + + {% for genres in generi%} +

{{ genres.genere }}

+ {% endfor %} + + \ No newline at end of file diff --git a/templates/lista_generi_film.html b/templates/lista_generi_film.html new file mode 100644 index 0000000..8ad1242 --- /dev/null +++ b/templates/lista_generi_film.html @@ -0,0 +1,13 @@ + + + + + + Lista Film Generi + + + {% for generi in generi_film %} +

{{ generi.genere }}

+ {% endfor %} + + \ No newline at end of file diff --git a/templates/photo.html b/templates/photo.html new file mode 100644 index 0000000..8926dbc --- /dev/null +++ b/templates/photo.html @@ -0,0 +1,51 @@ + + \ No newline at end of file diff --git a/templates/profilo.html b/templates/profilo.html new file mode 100644 index 0000000..6401e4f --- /dev/null +++ b/templates/profilo.html @@ -0,0 +1,589 @@ +{% load static %} +{% load crispy_forms_tags %} + + + + + + + + + + + + + + + + + Profilo di {{ utente.user }} + + + + +
+
+
+
+ Immagine Profilo di {{ utente.user.username }} +
+
+

{{ utente.user }}

+
+
+

{% if utente.biografia == None %} Nessuna biografia al momento D: {% else %} + {{utente.biografia }} {% endif %}

+ {% if request.user == utente.user %} + + +
+ + +
+ + + + + {% endif %} +
+
+ +
+
+ + + + + + + + +
+
+ {% if utente.is_online %} +
+ Profilo Online +
+ {% else %} +
+ Profilo Offline +
+ {% endif %} +
+
+

ULTIMI COMMENTI

+
+ + + {% for comments in commenti %} + + + + + + {% empty %} +

Nessun Commento Scritto D:

+ {% endfor %} + +
+

{{ comments.media.titolo }}

+
+

{{comments.commento|truncatewords:8 }}

+
+
+
+
+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/registration/logged_out.html b/templates/registration/logged_out.html new file mode 100644 index 0000000..43d93a4 --- /dev/null +++ b/templates/registration/logged_out.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} +{% block content %} +
+
+
+
+
+
+

Logout eseguito correttamente!

+

Verrai reindirizzato alla homepage tra 5 secondi...

+
+
+
+
+
+ + {% endblock content %} + + {% block javascript %} + + {% endblock javascript %} + \ No newline at end of file diff --git a/templates/registration/login.html b/templates/registration/login.html new file mode 100644 index 0000000..833df9e --- /dev/null +++ b/templates/registration/login.html @@ -0,0 +1,76 @@ +{% extends 'base.html' %} +{% load static %} + +{% block style %} + +{% endblock style %} + + +{% block content %} +{% if not request.user.is_authenticated %} +
+
+
+
+
+ +
+ {% csrf_token %} + + {% for field in form %} +
+ {% if field.errors %} + {{ field.errors }} + {% endif %} + {{ field }} +
+ {% endfor %} + + + + Non hai un account? Registrati! + + Password Dimenticata? +
+ +
+
+
+
+
+{% else %} + +
+
+
+
+
+ Caro Utente, sei giá loggato! +
+
+
+
+
+ +{% endif %} + + + {% endblock content %} + {% block javascript %} + + {% endblock javascript %} + diff --git a/templates/registration/password_change_done.html b/templates/registration/password_change_done.html new file mode 100644 index 0000000..3677e5a --- /dev/null +++ b/templates/registration/password_change_done.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +{% block content %} + +
+
+
+
+
+
+

Password cambiata con successo!

+
+
+
+
+
+ {% endblock content %} \ No newline at end of file diff --git a/templates/registration/password_change_form.html b/templates/registration/password_change_form.html new file mode 100644 index 0000000..c37008c --- /dev/null +++ b/templates/registration/password_change_form.html @@ -0,0 +1,77 @@ +{% extends "base.html" %} +{% load static %} + +{% block style %} + +{% endblock style %} + + +{% block content %} + +
+
+
+
+
+ +
+ {% csrf_token %} + + +
+ {{ form }} +
+ + +
+ +
+
+
+
+
+ {% endblock content %} + + +{% block javascript %} + + +{% endblock javascript %} diff --git a/templates/registration/password_reset_complete.html b/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..f92706e --- /dev/null +++ b/templates/registration/password_reset_complete.html @@ -0,0 +1,18 @@ +{% extends 'base.html' %} + +{% block content %} +
+
+
+
+
+
+
La Password é stata cambiata con successo!
+
Ora puoi procedere con il Login
+
+
+
+
+
+
+{% endblock content %} diff --git a/templates/registration/password_reset_confirm.html b/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..460b059 --- /dev/null +++ b/templates/registration/password_reset_confirm.html @@ -0,0 +1,81 @@ +{% extends "base.html" %} +{% load static %} + +{% block style %} + +{% endblock style %} + + +{% block content %} + +
+
+
+
+
+ {% if validlink %} + +
+ {% csrf_token %} + + +
+ {{ form }} +
+ + +
+ + {% else %} +

Il link seguito non è più valido!

+ {% endif %} +
+
+
+
+
+ {% endblock content %} + + +{% block javascript %} + + +{% endblock javascript %} diff --git a/templates/registration/password_reset_done.html b/templates/registration/password_reset_done.html new file mode 100644 index 0000000..30467b4 --- /dev/null +++ b/templates/registration/password_reset_done.html @@ -0,0 +1,18 @@ +{% extends 'base.html' %} + +{% block content %} +
+
+
+
+
+
+
Ti abbiamo inviato via mail le istruzioni per il cambio password!
+
Visita la tua casella di posta e segui il link allegato per procedere.
+
+
+
+
+
+
+{% endblock content %} diff --git a/templates/registration/password_reset_email.html b/templates/registration/password_reset_email.html new file mode 100644 index 0000000..1aea708 --- /dev/null +++ b/templates/registration/password_reset_email.html @@ -0,0 +1,4 @@ +Qualcuno ha richiesto un password reset per l'account associato alla mail {{ email }}. +Se non hai richiesto alcun cambio password puoi ignorare questa mail. +Segui il link qua sotto se invece desideri procedere: +{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} diff --git a/templates/registration/password_reset_form.html b/templates/registration/password_reset_form.html new file mode 100644 index 0000000..4f6ce71 --- /dev/null +++ b/templates/registration/password_reset_form.html @@ -0,0 +1,58 @@ +{% extends "base.html" %} +{% load static %} + +{% block style %} + +{% endblock style %} + + +{% block content %} + +
+
+
+
+
+ +
+ {% csrf_token %} + + +
+ {{ form }} + +
+ + + + Ti Manderemo un link tramite Email +
+ +
+
+
+
+
+ {% endblock content %} + + +{% block javascript %} + + +{% endblock javascript %} + \ No newline at end of file diff --git a/templates/registrazione.html b/templates/registrazione.html new file mode 100644 index 0000000..e483b32 --- /dev/null +++ b/templates/registrazione.html @@ -0,0 +1,73 @@ +{% extends 'base.html' %} +{% load static %} + +{% block style %} + +{% endblock style %} + + +{% block content %} +{% if not request.user.is_authenticated %} +
+
+
+
+
+ +
+ {% csrf_token %} + + {% for field in form %} +
+ {% if field.errors %} + {{ field.errors }} + {% endif %} + {{ field }} +
+ {% endfor %} + + + Hai giá un account? Esegui il Login! +
+ +
+
+
+
+
+ {% else %} + +
+
+
+
+
+ Caro Utente, sei giá registrato! +
+
+
+
+
+ +{% endif %} + + {% endblock content %} + {% block javascript %} + + {% endblock javascript %} \ No newline at end of file diff --git a/templates/serietv.html b/templates/serietv.html new file mode 100644 index 0000000..ed4f7e6 --- /dev/null +++ b/templates/serietv.html @@ -0,0 +1,123 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %}LISTA SERIETV {% endblock title %} + +{% block content %} + + + +
+
+
+
+
+ +

SERIE TV

+ +
+
+
+
+
+ + + +
+
+
+
+
+
+ +
+ GENERE: + + + + +
+ + + + + +
+
+
+
+
+
+ + + + + + +
+
+
+ + {% for lista_serietv in serie %} +
+
+
+ + + + +
+
+

{{ lista_serietv.titolo }}

+ + {% for genere_serietv in lista_serietv.genere.all %} + {{ genere_serietv.genere }} + {% endfor %} + + {{ lista_serietv.voto }} +
+
+
+ {% endfor %} + + + {% if serie.has_other_pages %} + +
+
    + {% if serie.has_previous %} +
  • + +
  • + {% endif %} + {% for i in serie.paginator.page_range %} + {% if serie.number == i %} +
  • {{i}}
  • + {% else %} +
  • {{i}}
  • + {% endif %} + {% endfor %} + {% if serie.has_next %} +
  • + +
  • + {% endif %} +
+
+ + {% endif %} +
+
+
+ +{% endblock content %} + + \ No newline at end of file diff --git a/templates/serietv_detail.html b/templates/serietv_detail.html new file mode 100644 index 0000000..f462a0a --- /dev/null +++ b/templates/serietv_detail.html @@ -0,0 +1,8 @@ +{{ serietv.titolo }} +{% for stagione in serietv.seriestagioni.all %} +

Stagione : {{ stagione.numero_stagione }}

+{% for episodes in stagione.stagione.all %} +

Episodi : {{ episodes.numero_episodio }} Streaming Link : {{ episodes.streaming_link }}

+
+{% endfor %} +{% endfor %} \ No newline at end of file diff --git a/templates/serietv_genre.html b/templates/serietv_genre.html new file mode 100644 index 0000000..558bd6c --- /dev/null +++ b/templates/serietv_genre.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %}LISTA FILM PER GENERE {{ genere }} {% endblock title %} + +{% block content %} + + + +
+
+
+
+
+ +

SERIE TV PER GENERE : {{ genere }}

+ +
+
+
+
+
+ + +
+
+
+ + {% for tvshow in serietv %} +
+
+
+ + + + +
+
+

{{ tvshow.titolo }}

+ + {% for genere_serietv in tvshow.genere.all %} + {{ genere_serietv.genere }} + {% endfor %} + + {{ tvshow.voto }} +
+
+
+ {% endfor %} + +
+
+
+ +{% endblock content %} \ No newline at end of file diff --git a/templates/visualizza_risultatianime.html b/templates/visualizza_risultatianime.html new file mode 100644 index 0000000..1f7a5ae --- /dev/null +++ b/templates/visualizza_risultatianime.html @@ -0,0 +1,64 @@ + + + + + + + Serie TV - {{ titolo }} + + + {% if titolo %} +
+
+
+ Card image cap +
+
{{ titolo }}
+

Descrizione : {{ descrizione }}.

+

Generi : {{ lista_generi }}

+
+ + + + + +
+
+
+
+ {% elif titolo == None %} +
+
+
+

Nessun Film Trovato! Riprova!

+
+
+
+ {% endif %} + + + + + \ No newline at end of file diff --git a/templates/visualizza_risultatiserietv.html b/templates/visualizza_risultatiserietv.html new file mode 100644 index 0000000..c753966 --- /dev/null +++ b/templates/visualizza_risultatiserietv.html @@ -0,0 +1,64 @@ + + + + + + + Serie TV - {{ titolo }} + + + {% if titolo %} +
+
+
+ Card image cap +
+
{{ titolo }}
+

Descrizione : {{ descrizione }}.

+

Generi : {{ lista_generi }}

+
+ + + + + +
+
+
+
+ {% elif titolo == None %} +
+
+
+

Nessun Film Trovato! Riprova!

+
+
+
+ {% endif %} + + + + + \ No newline at end of file diff --git a/upload/001.jpg b/upload/001.jpg new file mode 100644 index 0000000..9f51cca Binary files /dev/null and b/upload/001.jpg differ diff --git a/upload/003CAC2C-13A1-449F-86CA-4546AB2B5AF6.jpeg b/upload/003CAC2C-13A1-449F-86CA-4546AB2B5AF6.jpeg new file mode 100644 index 0000000..b657ef7 Binary files /dev/null and b/upload/003CAC2C-13A1-449F-86CA-4546AB2B5AF6.jpeg differ diff --git a/upload/01.jpg b/upload/01.jpg new file mode 100644 index 0000000..de4a26c Binary files /dev/null and b/upload/01.jpg differ diff --git a/upload/01.png b/upload/01.png new file mode 100644 index 0000000..896fc7a Binary files /dev/null and b/upload/01.png differ diff --git a/upload/03.jpg b/upload/03.jpg new file mode 100644 index 0000000..d91097d Binary files /dev/null and b/upload/03.jpg differ diff --git a/upload/04.jpg b/upload/04.jpg new file mode 100644 index 0000000..3d50308 Binary files /dev/null and b/upload/04.jpg differ diff --git a/upload/065b39d17dae89bf0bf3127e2a83be0a.jpg b/upload/065b39d17dae89bf0bf3127e2a83be0a.jpg new file mode 100644 index 0000000..f77b113 Binary files /dev/null and b/upload/065b39d17dae89bf0bf3127e2a83be0a.jpg differ diff --git a/upload/08-harry-potter-cho-chang-l-ordine-della-fenice.jpg b/upload/08-harry-potter-cho-chang-l-ordine-della-fenice.jpg new file mode 100644 index 0000000..bb74cf8 Binary files /dev/null and b/upload/08-harry-potter-cho-chang-l-ordine-della-fenice.jpg differ diff --git a/upload/08b7a79b197f9767e9f92679dfdb5f0bde0e5882_s2_n2.jpg b/upload/08b7a79b197f9767e9f92679dfdb5f0bde0e5882_s2_n2.jpg new file mode 100644 index 0000000..9d38295 Binary files /dev/null and b/upload/08b7a79b197f9767e9f92679dfdb5f0bde0e5882_s2_n2.jpg differ diff --git a/upload/09ccf9e7bc512ef8a5448e46a97d4164.png b/upload/09ccf9e7bc512ef8a5448e46a97d4164.png new file mode 100644 index 0000000..cb1a502 Binary files /dev/null and b/upload/09ccf9e7bc512ef8a5448e46a97d4164.png differ diff --git a/upload/0_syH6aWdjf_Pp9d3Q.jpg b/upload/0_syH6aWdjf_Pp9d3Q.jpg new file mode 100644 index 0000000..4f537a1 Binary files /dev/null and b/upload/0_syH6aWdjf_Pp9d3Q.jpg differ diff --git a/upload/0f0eyswbpwc31aaa.png b/upload/0f0eyswbpwc31aaa.png new file mode 100644 index 0000000..9d3e65d Binary files /dev/null and b/upload/0f0eyswbpwc31aaa.png differ diff --git a/upload/1050899.jpg b/upload/1050899.jpg new file mode 100644 index 0000000..762d5b6 Binary files /dev/null and b/upload/1050899.jpg differ diff --git a/upload/105245.jpg b/upload/105245.jpg new file mode 100644 index 0000000..1ce1d67 Binary files /dev/null and b/upload/105245.jpg differ diff --git a/upload/10_6789_L.jpg b/upload/10_6789_L.jpg new file mode 100644 index 0000000..e38dd71 Binary files /dev/null and b/upload/10_6789_L.jpg differ diff --git a/upload/1200px-Abominevole_dottor_Phibes.png b/upload/1200px-Abominevole_dottor_Phibes.png new file mode 100644 index 0000000..9527254 Binary files /dev/null and b/upload/1200px-Abominevole_dottor_Phibes.png differ diff --git a/upload/1341951.jpg b/upload/1341951.jpg new file mode 100644 index 0000000..0640e5d Binary files /dev/null and b/upload/1341951.jpg differ diff --git a/upload/1341965.jpg b/upload/1341965.jpg new file mode 100644 index 0000000..acfd331 Binary files /dev/null and b/upload/1341965.jpg differ diff --git a/upload/1341975.jpg b/upload/1341975.jpg new file mode 100644 index 0000000..3849eb1 Binary files /dev/null and b/upload/1341975.jpg differ diff --git a/upload/1371044919_1.png b/upload/1371044919_1.png new file mode 100644 index 0000000..0e17f4b Binary files /dev/null and b/upload/1371044919_1.png differ diff --git a/upload/13FUpGdCRFBcMBAk3PJ5iIY5mFw.jpg b/upload/13FUpGdCRFBcMBAk3PJ5iIY5mFw.jpg new file mode 100644 index 0000000..288f70e Binary files /dev/null and b/upload/13FUpGdCRFBcMBAk3PJ5iIY5mFw.jpg differ diff --git a/upload/141be39598a32d6d8be1fd54c20b757ede8695ab4ca9052a521e9f5c70ebc745._RI_V_TTW_.jpg b/upload/141be39598a32d6d8be1fd54c20b757ede8695ab4ca9052a521e9f5c70ebc745._RI_V_TTW_.jpg new file mode 100644 index 0000000..b0cf7d4 Binary files /dev/null and b/upload/141be39598a32d6d8be1fd54c20b757ede8695ab4ca9052a521e9f5c70ebc745._RI_V_TTW_.jpg differ diff --git a/upload/14503-tumblr_mf6wm1rjfc1rvhqlvo1_1280copy.jpg b/upload/14503-tumblr_mf6wm1rjfc1rvhqlvo1_1280copy.jpg new file mode 100644 index 0000000..d2c06b8 Binary files /dev/null and b/upload/14503-tumblr_mf6wm1rjfc1rvhqlvo1_1280copy.jpg differ diff --git a/upload/1480450681_oceania-disney.jpg b/upload/1480450681_oceania-disney.jpg new file mode 100644 index 0000000..c8d6d7b Binary files /dev/null and b/upload/1480450681_oceania-disney.jpg differ diff --git a/upload/1488893392_indiana-jonespg.jpg b/upload/1488893392_indiana-jonespg.jpg new file mode 100644 index 0000000..1fd5318 Binary files /dev/null and b/upload/1488893392_indiana-jonespg.jpg differ diff --git a/upload/14WfjE0xEXMKHOILpvB2zCOmItN.jpg b/upload/14WfjE0xEXMKHOILpvB2zCOmItN.jpg new file mode 100644 index 0000000..a97837b Binary files /dev/null and b/upload/14WfjE0xEXMKHOILpvB2zCOmItN.jpg differ diff --git a/upload/1544289813_image.jpg b/upload/1544289813_image.jpg new file mode 100644 index 0000000..ac3e8af Binary files /dev/null and b/upload/1544289813_image.jpg differ diff --git a/upload/17RaWPrzGHHrau8XNuvhdgffbnk.jpg b/upload/17RaWPrzGHHrau8XNuvhdgffbnk.jpg new file mode 100644 index 0000000..8d9c136 Binary files /dev/null and b/upload/17RaWPrzGHHrau8XNuvhdgffbnk.jpg differ diff --git a/upload/17e9c9bbc662f5114c2d36fad3809a9a.jpg b/upload/17e9c9bbc662f5114c2d36fad3809a9a.jpg new file mode 100644 index 0000000..7ca9ae9 Binary files /dev/null and b/upload/17e9c9bbc662f5114c2d36fad3809a9a.jpg differ diff --git a/upload/17m0v3g9pge25jpg.jpg b/upload/17m0v3g9pge25jpg.jpg new file mode 100644 index 0000000..ea576fc Binary files /dev/null and b/upload/17m0v3g9pge25jpg.jpg differ diff --git a/upload/19150ed4e1115d24b396e11faa4cf3e0892c5fc8.jpeg b/upload/19150ed4e1115d24b396e11faa4cf3e0892c5fc8.jpeg new file mode 100644 index 0000000..b77f607 Binary files /dev/null and b/upload/19150ed4e1115d24b396e11faa4cf3e0892c5fc8.jpeg differ diff --git a/upload/19dhTeG0NZi278126-1.jpg b/upload/19dhTeG0NZi278126-1.jpg new file mode 100644 index 0000000..2fdc28f Binary files /dev/null and b/upload/19dhTeG0NZi278126-1.jpg differ diff --git a/upload/19xaXjRifDSgxsk5BK4uIkp0ZDu.jpg b/upload/19xaXjRifDSgxsk5BK4uIkp0ZDu.jpg new file mode 100644 index 0000000..d44d2fb Binary files /dev/null and b/upload/19xaXjRifDSgxsk5BK4uIkp0ZDu.jpg differ diff --git a/upload/1AnfXMG9PPMVjwXcHW6JLSJUbPo.jpg b/upload/1AnfXMG9PPMVjwXcHW6JLSJUbPo.jpg new file mode 100644 index 0000000..fcc93ef Binary files /dev/null and b/upload/1AnfXMG9PPMVjwXcHW6JLSJUbPo.jpg differ diff --git a/upload/1CdZUyN7Xm3IzKfojU67ZEDxnFl.jpg b/upload/1CdZUyN7Xm3IzKfojU67ZEDxnFl.jpg new file mode 100644 index 0000000..0b6141b Binary files /dev/null and b/upload/1CdZUyN7Xm3IzKfojU67ZEDxnFl.jpg differ diff --git a/upload/1DDQYLzdZej0fh4V7jlaUKJhNL9.jpg b/upload/1DDQYLzdZej0fh4V7jlaUKJhNL9.jpg new file mode 100644 index 0000000..9825d69 Binary files /dev/null and b/upload/1DDQYLzdZej0fh4V7jlaUKJhNL9.jpg differ diff --git a/upload/1EEMdXW63wY6iSM1Mp1A3RPzxKN.jpg b/upload/1EEMdXW63wY6iSM1Mp1A3RPzxKN.jpg new file mode 100644 index 0000000..8050734 Binary files /dev/null and b/upload/1EEMdXW63wY6iSM1Mp1A3RPzxKN.jpg differ diff --git a/upload/1GJvBE7UWU1WOVi0XREl4JQc7f8.jpg b/upload/1GJvBE7UWU1WOVi0XREl4JQc7f8.jpg new file mode 100644 index 0000000..634462e Binary files /dev/null and b/upload/1GJvBE7UWU1WOVi0XREl4JQc7f8.jpg differ diff --git a/upload/1H4rURyS7torFuY6cXn5WbU7O49.jpg b/upload/1H4rURyS7torFuY6cXn5WbU7O49.jpg new file mode 100644 index 0000000..2a79c18 Binary files /dev/null and b/upload/1H4rURyS7torFuY6cXn5WbU7O49.jpg differ diff --git a/upload/1IDeqYHVPLv278126-1.jpg b/upload/1IDeqYHVPLv278126-1.jpg new file mode 100644 index 0000000..a8e18d7 Binary files /dev/null and b/upload/1IDeqYHVPLv278126-1.jpg differ diff --git a/upload/1JlbnzFqp0KQBquCvSmoeWMe274.jpg b/upload/1JlbnzFqp0KQBquCvSmoeWMe274.jpg new file mode 100644 index 0000000..f732cba Binary files /dev/null and b/upload/1JlbnzFqp0KQBquCvSmoeWMe274.jpg differ diff --git a/upload/1MQy25hijTuTn0N50lZpQ8uId3i.jpg b/upload/1MQy25hijTuTn0N50lZpQ8uId3i.jpg new file mode 100644 index 0000000..fc82da7 Binary files /dev/null and b/upload/1MQy25hijTuTn0N50lZpQ8uId3i.jpg differ diff --git a/upload/1Mnz9uBOQRPJqL0rMtWlbGiKl7l.jpg b/upload/1Mnz9uBOQRPJqL0rMtWlbGiKl7l.jpg new file mode 100644 index 0000000..c861ec5 Binary files /dev/null and b/upload/1Mnz9uBOQRPJqL0rMtWlbGiKl7l.jpg differ diff --git a/upload/1MyTFWvJ8lTsMC1AcbK07hcJ0hp.jpg b/upload/1MyTFWvJ8lTsMC1AcbK07hcJ0hp.jpg new file mode 100644 index 0000000..4d6c6ed Binary files /dev/null and b/upload/1MyTFWvJ8lTsMC1AcbK07hcJ0hp.jpg differ diff --git a/upload/1PxYL2Y.jpg b/upload/1PxYL2Y.jpg new file mode 100644 index 0000000..cf2367a Binary files /dev/null and b/upload/1PxYL2Y.jpg differ diff --git a/upload/1Q1tAM49hoT3Hsj2kpx8O34kG01.jpg b/upload/1Q1tAM49hoT3Hsj2kpx8O34kG01.jpg new file mode 100644 index 0000000..40907d8 Binary files /dev/null and b/upload/1Q1tAM49hoT3Hsj2kpx8O34kG01.jpg differ diff --git a/upload/1Up6JVFow29weJeBSBzar6OiYYi.jpg b/upload/1Up6JVFow29weJeBSBzar6OiYYi.jpg new file mode 100644 index 0000000..48af238 Binary files /dev/null and b/upload/1Up6JVFow29weJeBSBzar6OiYYi.jpg differ diff --git a/upload/1VeYSi4Jeu6EVkMzDpH0F7XZ1xw.jpg b/upload/1VeYSi4Jeu6EVkMzDpH0F7XZ1xw.jpg new file mode 100644 index 0000000..959865b Binary files /dev/null and b/upload/1VeYSi4Jeu6EVkMzDpH0F7XZ1xw.jpg differ diff --git a/upload/1ZkFCJwN6hNUdNZUIUCeugja06j.jpg b/upload/1ZkFCJwN6hNUdNZUIUCeugja06j.jpg new file mode 100644 index 0000000..09382d5 Binary files /dev/null and b/upload/1ZkFCJwN6hNUdNZUIUCeugja06j.jpg differ diff --git a/upload/1ZoWbowxWxs0W87glE9TNeoVU32.jpg b/upload/1ZoWbowxWxs0W87glE9TNeoVU32.jpg new file mode 100644 index 0000000..10e0ad1 Binary files /dev/null and b/upload/1ZoWbowxWxs0W87glE9TNeoVU32.jpg differ diff --git a/upload/1aRr2EbyZ1zo6IHlPDq1klvTV67.jpg b/upload/1aRr2EbyZ1zo6IHlPDq1klvTV67.jpg new file mode 100644 index 0000000..9ca1fda Binary files /dev/null and b/upload/1aRr2EbyZ1zo6IHlPDq1klvTV67.jpg differ diff --git a/upload/1ac40c4bcf26aae21d07fb8.jpg b/upload/1ac40c4bcf26aae21d07fb8.jpg new file mode 100644 index 0000000..a84f8b5 Binary files /dev/null and b/upload/1ac40c4bcf26aae21d07fb8.jpg differ diff --git a/upload/1bd0prG5LfaRTVLFRneWyjg92nE.jpg b/upload/1bd0prG5LfaRTVLFRneWyjg92nE.jpg new file mode 100644 index 0000000..af23afa Binary files /dev/null and b/upload/1bd0prG5LfaRTVLFRneWyjg92nE.jpg differ diff --git a/upload/1iKfA0vKBGVt6vcz5Y6cTxZNKk9.jpg b/upload/1iKfA0vKBGVt6vcz5Y6cTxZNKk9.jpg new file mode 100644 index 0000000..452035d Binary files /dev/null and b/upload/1iKfA0vKBGVt6vcz5Y6cTxZNKk9.jpg differ diff --git a/upload/1mTmiHTo5oQRL60LltSX4innNs6.png b/upload/1mTmiHTo5oQRL60LltSX4innNs6.png new file mode 100644 index 0000000..404eafa Binary files /dev/null and b/upload/1mTmiHTo5oQRL60LltSX4innNs6.png differ diff --git a/upload/1mTmiHTo5oQRL60LltSX4innNs644444.png b/upload/1mTmiHTo5oQRL60LltSX4innNs644444.png new file mode 100644 index 0000000..6ab3721 Binary files /dev/null and b/upload/1mTmiHTo5oQRL60LltSX4innNs644444.png differ diff --git a/upload/1mTmiHTo5oQRL60LltSX4innNs6_2.jpg b/upload/1mTmiHTo5oQRL60LltSX4innNs6_2.jpg new file mode 100644 index 0000000..0b43ebc Binary files /dev/null and b/upload/1mTmiHTo5oQRL60LltSX4innNs6_2.jpg differ diff --git a/upload/1mTmiHTo5oQRL60LltSX4innNs6_2ssss.jpg b/upload/1mTmiHTo5oQRL60LltSX4innNs6_2ssss.jpg new file mode 100644 index 0000000..43ba8a3 Binary files /dev/null and b/upload/1mTmiHTo5oQRL60LltSX4innNs6_2ssss.jpg differ diff --git a/upload/1nPitMtQEsgRaOr43NVsXCfAlle.jpg b/upload/1nPitMtQEsgRaOr43NVsXCfAlle.jpg new file mode 100644 index 0000000..710733e Binary files /dev/null and b/upload/1nPitMtQEsgRaOr43NVsXCfAlle.jpg differ diff --git a/upload/1nvxTT64TpyXv9mY15UiVBtNS88.jpg b/upload/1nvxTT64TpyXv9mY15UiVBtNS88.jpg new file mode 100644 index 0000000..31ec509 Binary files /dev/null and b/upload/1nvxTT64TpyXv9mY15UiVBtNS88.jpg differ diff --git a/upload/1pjMhcDSlWT7hYzxB38wwlp7Wc6.jpg b/upload/1pjMhcDSlWT7hYzxB38wwlp7Wc6.jpg new file mode 100644 index 0000000..c61c882 Binary files /dev/null and b/upload/1pjMhcDSlWT7hYzxB38wwlp7Wc6.jpg differ diff --git a/upload/1qB1z8qNKMm2q61WTyA6hDXoc7L.jpg b/upload/1qB1z8qNKMm2q61WTyA6hDXoc7L.jpg new file mode 100644 index 0000000..97d7678 Binary files /dev/null and b/upload/1qB1z8qNKMm2q61WTyA6hDXoc7L.jpg differ diff --git a/upload/1uQSh7P3k0oRbRf0vH8GVt4thpP.jpg b/upload/1uQSh7P3k0oRbRf0vH8GVt4thpP.jpg new file mode 100644 index 0000000..cf1f2ab Binary files /dev/null and b/upload/1uQSh7P3k0oRbRf0vH8GVt4thpP.jpg differ diff --git a/upload/1unwHSf97dP1Paud696Eh98F5yj.jpg b/upload/1unwHSf97dP1Paud696Eh98F5yj.jpg new file mode 100644 index 0000000..7baaa9f Binary files /dev/null and b/upload/1unwHSf97dP1Paud696Eh98F5yj.jpg differ diff --git a/upload/1xEGP18w4Q6fYlUsSSxtCmNWJNe.jpg b/upload/1xEGP18w4Q6fYlUsSSxtCmNWJNe.jpg new file mode 100644 index 0000000..00861cb Binary files /dev/null and b/upload/1xEGP18w4Q6fYlUsSSxtCmNWJNe.jpg differ diff --git a/upload/201ItC57cxtZiQOarhaTxkEkFQb.jpg b/upload/201ItC57cxtZiQOarhaTxkEkFQb.jpg new file mode 100644 index 0000000..faaf287 Binary files /dev/null and b/upload/201ItC57cxtZiQOarhaTxkEkFQb.jpg differ diff --git a/upload/20Hl3MRIYhu8T2vvlEC8MjS6YX.jpg b/upload/20Hl3MRIYhu8T2vvlEC8MjS6YX.jpg new file mode 100644 index 0000000..48b4667 Binary files /dev/null and b/upload/20Hl3MRIYhu8T2vvlEC8MjS6YX.jpg differ diff --git a/upload/20th_century_fox-006999-Full-Image_GalleryBackground-en-US-1483993797530._RI_.jpg b/upload/20th_century_fox-006999-Full-Image_GalleryBackground-en-US-1483993797530._RI_.jpg new file mode 100644 index 0000000..25a5045 Binary files /dev/null and b/upload/20th_century_fox-006999-Full-Image_GalleryBackground-en-US-1483993797530._RI_.jpg differ diff --git a/upload/211516.jpg b/upload/211516.jpg new file mode 100644 index 0000000..273e179 Binary files /dev/null and b/upload/211516.jpg differ diff --git a/upload/216968.jpg b/upload/216968.jpg new file mode 100644 index 0000000..3b2e47f Binary files /dev/null and b/upload/216968.jpg differ diff --git a/upload/219181-2.jpg b/upload/219181-2.jpg new file mode 100644 index 0000000..12aebbf Binary files /dev/null and b/upload/219181-2.jpg differ diff --git a/upload/219181-3.jpg b/upload/219181-3.jpg new file mode 100644 index 0000000..860e4e5 Binary files /dev/null and b/upload/219181-3.jpg differ diff --git a/upload/224801.jpg b/upload/224801.jpg new file mode 100644 index 0000000..5433fe4 Binary files /dev/null and b/upload/224801.jpg differ diff --git a/upload/22h4lNjlm3XYGJimNaKk61NS3Hj.jpg b/upload/22h4lNjlm3XYGJimNaKk61NS3Hj.jpg new file mode 100644 index 0000000..c17d58c Binary files /dev/null and b/upload/22h4lNjlm3XYGJimNaKk61NS3Hj.jpg differ diff --git a/upload/230801.jpg b/upload/230801.jpg new file mode 100644 index 0000000..f9b666b Binary files /dev/null and b/upload/230801.jpg differ diff --git a/upload/234405.png b/upload/234405.png new file mode 100644 index 0000000..a80c457 Binary files /dev/null and b/upload/234405.png differ diff --git a/upload/241381.jpg b/upload/241381.jpg new file mode 100644 index 0000000..2455261 Binary files /dev/null and b/upload/241381.jpg differ diff --git a/upload/241384.jpg b/upload/241384.jpg new file mode 100644 index 0000000..0df037d Binary files /dev/null and b/upload/241384.jpg differ diff --git a/upload/247997-2.jpg b/upload/247997-2.jpg new file mode 100644 index 0000000..491ca48 Binary files /dev/null and b/upload/247997-2.jpg differ diff --git a/upload/248742-1.jpg b/upload/248742-1.jpg new file mode 100644 index 0000000..154ca8d Binary files /dev/null and b/upload/248742-1.jpg differ diff --git a/upload/248742-2.jpg b/upload/248742-2.jpg new file mode 100644 index 0000000..c871dac Binary files /dev/null and b/upload/248742-2.jpg differ diff --git a/upload/249004-1.jpg b/upload/249004-1.jpg new file mode 100644 index 0000000..4cd643d Binary files /dev/null and b/upload/249004-1.jpg differ diff --git a/upload/250498-4.jpg b/upload/250498-4.jpg new file mode 100644 index 0000000..d3ff572 Binary files /dev/null and b/upload/250498-4.jpg differ diff --git a/upload/250498-9.jpg b/upload/250498-9.jpg new file mode 100644 index 0000000..88e939a Binary files /dev/null and b/upload/250498-9.jpg differ diff --git a/upload/251085-15.jpg b/upload/251085-15.jpg new file mode 100644 index 0000000..a35e2f8 Binary files /dev/null and b/upload/251085-15.jpg differ diff --git a/upload/258107-4.jpg b/upload/258107-4.jpg new file mode 100644 index 0000000..38f0a6f Binary files /dev/null and b/upload/258107-4.jpg differ diff --git a/upload/258107-8.jpg b/upload/258107-8.jpg new file mode 100644 index 0000000..b6a8655 Binary files /dev/null and b/upload/258107-8.jpg differ diff --git a/upload/25850f8a0fe94be7f0965d12b2c2d963.jpg b/upload/25850f8a0fe94be7f0965d12b2c2d963.jpg new file mode 100644 index 0000000..0edf2c2 Binary files /dev/null and b/upload/25850f8a0fe94be7f0965d12b2c2d963.jpg differ diff --git a/upload/259063-18.jpg b/upload/259063-18.jpg new file mode 100644 index 0000000..03c8ac4 Binary files /dev/null and b/upload/259063-18.jpg differ diff --git a/upload/259063-9.jpg b/upload/259063-9.jpg new file mode 100644 index 0000000..ab2828f Binary files /dev/null and b/upload/259063-9.jpg differ diff --git a/upload/278126-1.jpg b/upload/278126-1.jpg new file mode 100644 index 0000000..a8e18d7 Binary files /dev/null and b/upload/278126-1.jpg differ diff --git a/upload/279977-2.jpg b/upload/279977-2.jpg new file mode 100644 index 0000000..7470b2e Binary files /dev/null and b/upload/279977-2.jpg differ diff --git a/upload/279977-4.jpg b/upload/279977-4.jpg new file mode 100644 index 0000000..d1938f7 Binary files /dev/null and b/upload/279977-4.jpg differ diff --git a/upload/295759-7.jpg b/upload/295759-7.jpg new file mode 100644 index 0000000..997cc20 Binary files /dev/null and b/upload/295759-7.jpg differ diff --git a/upload/298358.jpg b/upload/298358.jpg new file mode 100644 index 0000000..1235bf5 Binary files /dev/null and b/upload/298358.jpg differ diff --git a/upload/299988.jpg b/upload/299988.jpg new file mode 100644 index 0000000..5529e94 Binary files /dev/null and b/upload/299988.jpg differ diff --git a/upload/29d3819883bf56b90415f37d490393ea.jpg b/upload/29d3819883bf56b90415f37d490393ea.jpg new file mode 100644 index 0000000..ac700ff Binary files /dev/null and b/upload/29d3819883bf56b90415f37d490393ea.jpg differ diff --git a/upload/29t27rSQel2Ao8I7OwUkUF66RVB.jpg b/upload/29t27rSQel2Ao8I7OwUkUF66RVB.jpg new file mode 100644 index 0000000..56b3fd8 Binary files /dev/null and b/upload/29t27rSQel2Ao8I7OwUkUF66RVB.jpg differ diff --git a/upload/2FHxjY1SMrYGVHeHWhB05HlQs4X.jpg b/upload/2FHxjY1SMrYGVHeHWhB05HlQs4X.jpg new file mode 100644 index 0000000..5a462c1 Binary files /dev/null and b/upload/2FHxjY1SMrYGVHeHWhB05HlQs4X.jpg differ diff --git a/upload/2FYzxgLNuNVwncilzUeCGbOQzP7.jpg b/upload/2FYzxgLNuNVwncilzUeCGbOQzP7.jpg new file mode 100644 index 0000000..125183e Binary files /dev/null and b/upload/2FYzxgLNuNVwncilzUeCGbOQzP7.jpg differ diff --git a/upload/2GB3sdsWn3drlkwGMMNQ3KFNbIV.jpg b/upload/2GB3sdsWn3drlkwGMMNQ3KFNbIV.jpg new file mode 100644 index 0000000..a8f02cd Binary files /dev/null and b/upload/2GB3sdsWn3drlkwGMMNQ3KFNbIV.jpg differ diff --git a/upload/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg b/upload/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg new file mode 100644 index 0000000..8e450d0 Binary files /dev/null and b/upload/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg differ diff --git a/upload/2J283YNxKhxAqHeVegUJ5mzLfGb.jpg b/upload/2J283YNxKhxAqHeVegUJ5mzLfGb.jpg new file mode 100644 index 0000000..55ab9cb Binary files /dev/null and b/upload/2J283YNxKhxAqHeVegUJ5mzLfGb.jpg differ diff --git a/upload/2OrF1sbCr9K994uuwxnyWTzC9HI.jpg b/upload/2OrF1sbCr9K994uuwxnyWTzC9HI.jpg new file mode 100644 index 0000000..94e716d Binary files /dev/null and b/upload/2OrF1sbCr9K994uuwxnyWTzC9HI.jpg differ diff --git a/upload/2_8087_L.jpg b/upload/2_8087_L.jpg new file mode 100644 index 0000000..7380d7f Binary files /dev/null and b/upload/2_8087_L.jpg differ diff --git a/upload/2d3fe1144e802656550862ea8dab8319.jpeg b/upload/2d3fe1144e802656550862ea8dab8319.jpeg new file mode 100644 index 0000000..95e667d Binary files /dev/null and b/upload/2d3fe1144e802656550862ea8dab8319.jpeg differ diff --git a/upload/2dFQAkvntyGEGeUG0nwYv8UR3jq.jpg b/upload/2dFQAkvntyGEGeUG0nwYv8UR3jq.jpg new file mode 100644 index 0000000..5d10ec9 Binary files /dev/null and b/upload/2dFQAkvntyGEGeUG0nwYv8UR3jq.jpg differ diff --git a/upload/2ezMKcw090lTq7dA7AY0lr2gOP1.jpg b/upload/2ezMKcw090lTq7dA7AY0lr2gOP1.jpg new file mode 100644 index 0000000..ea3dbca Binary files /dev/null and b/upload/2ezMKcw090lTq7dA7AY0lr2gOP1.jpg differ diff --git a/upload/2fYL7A7lDzApoTQuwGheMlhmq5e.jpg b/upload/2fYL7A7lDzApoTQuwGheMlhmq5e.jpg new file mode 100644 index 0000000..d11209a Binary files /dev/null and b/upload/2fYL7A7lDzApoTQuwGheMlhmq5e.jpg differ diff --git a/upload/2fYpTOh14qgJgOiATC56IUjT5Ar.jpg b/upload/2fYpTOh14qgJgOiATC56IUjT5Ar.jpg new file mode 100644 index 0000000..43a5d06 Binary files /dev/null and b/upload/2fYpTOh14qgJgOiATC56IUjT5Ar.jpg differ diff --git a/upload/2h00HrZs89SL3tXB4nbkiM7BKHs.jpg b/upload/2h00HrZs89SL3tXB4nbkiM7BKHs.jpg new file mode 100644 index 0000000..6ddf954 Binary files /dev/null and b/upload/2h00HrZs89SL3tXB4nbkiM7BKHs.jpg differ diff --git a/upload/2hMt6zKQsvYvH3ZRe8T6RzAD2XB.jpg b/upload/2hMt6zKQsvYvH3ZRe8T6RzAD2XB.jpg new file mode 100644 index 0000000..5b52e92 Binary files /dev/null and b/upload/2hMt6zKQsvYvH3ZRe8T6RzAD2XB.jpg differ diff --git a/upload/2iYGupPBwkt9EblbAk6ktoz0MdR.jpg b/upload/2iYGupPBwkt9EblbAk6ktoz0MdR.jpg new file mode 100644 index 0000000..6737319 Binary files /dev/null and b/upload/2iYGupPBwkt9EblbAk6ktoz0MdR.jpg differ diff --git a/upload/2kDwpHDhCtTXtBIwAaZITUkQyZU.jpg b/upload/2kDwpHDhCtTXtBIwAaZITUkQyZU.jpg new file mode 100644 index 0000000..ac0bc9f Binary files /dev/null and b/upload/2kDwpHDhCtTXtBIwAaZITUkQyZU.jpg differ diff --git a/upload/2krQpOb9GXQGYh2YyiadotkVYcq.jpg b/upload/2krQpOb9GXQGYh2YyiadotkVYcq.jpg new file mode 100644 index 0000000..b7312ad Binary files /dev/null and b/upload/2krQpOb9GXQGYh2YyiadotkVYcq.jpg differ diff --git a/upload/2nKd8gPu1wsscRWylkPFpXVybak.jpg b/upload/2nKd8gPu1wsscRWylkPFpXVybak.jpg new file mode 100644 index 0000000..e8e862f Binary files /dev/null and b/upload/2nKd8gPu1wsscRWylkPFpXVybak.jpg differ diff --git a/upload/2ogVOei8k5WPixP2RVJFMn16zII.jpg b/upload/2ogVOei8k5WPixP2RVJFMn16zII.jpg new file mode 100644 index 0000000..6c38673 Binary files /dev/null and b/upload/2ogVOei8k5WPixP2RVJFMn16zII.jpg differ diff --git a/upload/2pbHi6QNgeD8v2iDUteuU6HQbuN.jpg b/upload/2pbHi6QNgeD8v2iDUteuU6HQbuN.jpg new file mode 100644 index 0000000..e6b4855 Binary files /dev/null and b/upload/2pbHi6QNgeD8v2iDUteuU6HQbuN.jpg differ diff --git a/upload/2pbHi6QNgeD8v2iDUteuU6HQbuN_lkkc7zF.jpg b/upload/2pbHi6QNgeD8v2iDUteuU6HQbuN_lkkc7zF.jpg new file mode 100644 index 0000000..e6b4855 Binary files /dev/null and b/upload/2pbHi6QNgeD8v2iDUteuU6HQbuN_lkkc7zF.jpg differ diff --git a/upload/2uuyLEYaJsJKB733gRLPqJ26Exn.jpg b/upload/2uuyLEYaJsJKB733gRLPqJ26Exn.jpg new file mode 100644 index 0000000..a3cbc9b Binary files /dev/null and b/upload/2uuyLEYaJsJKB733gRLPqJ26Exn.jpg differ diff --git a/upload/30Dv2pY9PPqtf2pD2shogYomS9G.jpg b/upload/30Dv2pY9PPqtf2pD2shogYomS9G.jpg new file mode 100644 index 0000000..5e0f06f Binary files /dev/null and b/upload/30Dv2pY9PPqtf2pD2shogYomS9G.jpg differ diff --git a/upload/30e328dadf8698fc29ea7b444dd5023f78fd5b69_s2_n2.png b/upload/30e328dadf8698fc29ea7b444dd5023f78fd5b69_s2_n2.png new file mode 100644 index 0000000..f2d4aef Binary files /dev/null and b/upload/30e328dadf8698fc29ea7b444dd5023f78fd5b69_s2_n2.png differ diff --git a/upload/311877-1.jpg b/upload/311877-1.jpg new file mode 100644 index 0000000..7467722 Binary files /dev/null and b/upload/311877-1.jpg differ diff --git a/upload/311877-2.jpg b/upload/311877-2.jpg new file mode 100644 index 0000000..d255402 Binary files /dev/null and b/upload/311877-2.jpg differ diff --git a/upload/311877-4.jpg b/upload/311877-4.jpg new file mode 100644 index 0000000..dea2845 Binary files /dev/null and b/upload/311877-4.jpg differ diff --git a/upload/311903-5.jpg b/upload/311903-5.jpg new file mode 100644 index 0000000..658ab14 Binary files /dev/null and b/upload/311903-5.jpg differ diff --git a/upload/311903-6.jpg b/upload/311903-6.jpg new file mode 100644 index 0000000..eb4208e Binary files /dev/null and b/upload/311903-6.jpg differ diff --git a/upload/31635.jpg b/upload/31635.jpg new file mode 100644 index 0000000..3ce426b Binary files /dev/null and b/upload/31635.jpg differ diff --git a/upload/31ydTGLSnK6fWf07XlwJpWBr4GL.jpg b/upload/31ydTGLSnK6fWf07XlwJpWBr4GL.jpg new file mode 100644 index 0000000..dfb24f8 Binary files /dev/null and b/upload/31ydTGLSnK6fWf07XlwJpWBr4GL.jpg differ diff --git a/upload/32.jpg b/upload/32.jpg new file mode 100644 index 0000000..cd6ea05 Binary files /dev/null and b/upload/32.jpg differ diff --git a/upload/326109-3.jpg b/upload/326109-3.jpg new file mode 100644 index 0000000..572d959 Binary files /dev/null and b/upload/326109-3.jpg differ diff --git a/upload/32b74fcbccb74ce073b0d1bad3f06c80.jpg b/upload/32b74fcbccb74ce073b0d1bad3f06c80.jpg new file mode 100644 index 0000000..26d51f5 Binary files /dev/null and b/upload/32b74fcbccb74ce073b0d1bad3f06c80.jpg differ diff --git a/upload/32c1d8e0-2f2d-11ea-b7b8-7ab2a5316d12.jpg b/upload/32c1d8e0-2f2d-11ea-b7b8-7ab2a5316d12.jpg new file mode 100644 index 0000000..3718432 Binary files /dev/null and b/upload/32c1d8e0-2f2d-11ea-b7b8-7ab2a5316d12.jpg differ diff --git a/upload/338865d51dbe30a24a68.jpg b/upload/338865d51dbe30a24a68.jpg new file mode 100644 index 0000000..bb096e7 Binary files /dev/null and b/upload/338865d51dbe30a24a68.jpg differ diff --git a/upload/340890-1.jpg b/upload/340890-1.jpg new file mode 100644 index 0000000..a3c2a7a Binary files /dev/null and b/upload/340890-1.jpg differ diff --git a/upload/341395-1.jpg b/upload/341395-1.jpg new file mode 100644 index 0000000..a36a206 Binary files /dev/null and b/upload/341395-1.jpg differ diff --git a/upload/34IHcuX7b1uE9fGN5AT0Uo89qR9.jpg b/upload/34IHcuX7b1uE9fGN5AT0Uo89qR9.jpg new file mode 100644 index 0000000..749e48f Binary files /dev/null and b/upload/34IHcuX7b1uE9fGN5AT0Uo89qR9.jpg differ diff --git a/upload/351FKulpjWbwT4rqYsm2C1EQEo1.jpg b/upload/351FKulpjWbwT4rqYsm2C1EQEo1.jpg new file mode 100644 index 0000000..d72a67c Binary files /dev/null and b/upload/351FKulpjWbwT4rqYsm2C1EQEo1.jpg differ diff --git a/upload/356-3561630_sleeping-beauty-angelina-jolie-as-maleficent-forest-maleficent.jpg b/upload/356-3561630_sleeping-beauty-angelina-jolie-as-maleficent-forest-maleficent.jpg new file mode 100644 index 0000000..c5698cc Binary files /dev/null and b/upload/356-3561630_sleeping-beauty-angelina-jolie-as-maleficent-forest-maleficent.jpg differ diff --git a/upload/35wqrUpVaC8ulFHdAhKx7GUGKYY.jpg b/upload/35wqrUpVaC8ulFHdAhKx7GUGKYY.jpg new file mode 100644 index 0000000..4d57aff Binary files /dev/null and b/upload/35wqrUpVaC8ulFHdAhKx7GUGKYY.jpg differ diff --git a/upload/360264.png b/upload/360264.png new file mode 100644 index 0000000..d67742f Binary files /dev/null and b/upload/360264.png differ diff --git a/upload/36esZhEltjCJvQVAsLKEIUo6Jaf.jpg b/upload/36esZhEltjCJvQVAsLKEIUo6Jaf.jpg new file mode 100644 index 0000000..dd831d9 Binary files /dev/null and b/upload/36esZhEltjCJvQVAsLKEIUo6Jaf.jpg differ diff --git a/upload/3752694-highriseinvasion.jpg b/upload/3752694-highriseinvasion.jpg new file mode 100644 index 0000000..569a25a Binary files /dev/null and b/upload/3752694-highriseinvasion.jpg differ diff --git a/upload/37pOD0fSlZ0EWgdtrXmEUtvC02P.jpg b/upload/37pOD0fSlZ0EWgdtrXmEUtvC02P.jpg new file mode 100644 index 0000000..bc1a03e Binary files /dev/null and b/upload/37pOD0fSlZ0EWgdtrXmEUtvC02P.jpg differ diff --git a/upload/38XXVy0ERYTlAZ4OHMSa3kyR2J2.jpg b/upload/38XXVy0ERYTlAZ4OHMSa3kyR2J2.jpg new file mode 100644 index 0000000..123936c Binary files /dev/null and b/upload/38XXVy0ERYTlAZ4OHMSa3kyR2J2.jpg differ diff --git a/upload/38nPzYkleyaewfgmzZsH0BoPI5e.jpg b/upload/38nPzYkleyaewfgmzZsH0BoPI5e.jpg new file mode 100644 index 0000000..3110178 Binary files /dev/null and b/upload/38nPzYkleyaewfgmzZsH0BoPI5e.jpg differ diff --git a/upload/39kg1yGt9qxPwMuG1a5ysfe3gfG.jpg b/upload/39kg1yGt9qxPwMuG1a5ysfe3gfG.jpg new file mode 100644 index 0000000..c5a964c Binary files /dev/null and b/upload/39kg1yGt9qxPwMuG1a5ysfe3gfG.jpg differ diff --git a/upload/3BNbh8ODH68JRLEc4YveMHuTcH1.jpg b/upload/3BNbh8ODH68JRLEc4YveMHuTcH1.jpg new file mode 100644 index 0000000..5821cac Binary files /dev/null and b/upload/3BNbh8ODH68JRLEc4YveMHuTcH1.jpg differ diff --git a/upload/3FS3oBdorgczgfCkFi2u8ZTFfpS.jpg b/upload/3FS3oBdorgczgfCkFi2u8ZTFfpS.jpg new file mode 100644 index 0000000..364af3a Binary files /dev/null and b/upload/3FS3oBdorgczgfCkFi2u8ZTFfpS.jpg differ diff --git a/upload/3FXLxOnd5LnvK8F5jUbIXOF9p9Y.jpg b/upload/3FXLxOnd5LnvK8F5jUbIXOF9p9Y.jpg new file mode 100644 index 0000000..9303106 Binary files /dev/null and b/upload/3FXLxOnd5LnvK8F5jUbIXOF9p9Y.jpg differ diff --git a/upload/3GwYDxFCzPCEGVM2VvP9DLldaUz.jpg b/upload/3GwYDxFCzPCEGVM2VvP9DLldaUz.jpg new file mode 100644 index 0000000..21dc9b0 Binary files /dev/null and b/upload/3GwYDxFCzPCEGVM2VvP9DLldaUz.jpg differ diff --git a/upload/3GwYDxFCzPCEGVM2VvP9DLldaUz_WNJWFDs.jpg b/upload/3GwYDxFCzPCEGVM2VvP9DLldaUz_WNJWFDs.jpg new file mode 100644 index 0000000..40efcf5 Binary files /dev/null and b/upload/3GwYDxFCzPCEGVM2VvP9DLldaUz_WNJWFDs.jpg differ diff --git a/upload/3H94YlnYWVLKQKEnfTBKvrCmHmt.jpg b/upload/3H94YlnYWVLKQKEnfTBKvrCmHmt.jpg new file mode 100644 index 0000000..dbe79e8 Binary files /dev/null and b/upload/3H94YlnYWVLKQKEnfTBKvrCmHmt.jpg differ diff --git a/upload/3KA7SQMiIeOEaRI6U83hfVz2Kmb.jpg b/upload/3KA7SQMiIeOEaRI6U83hfVz2Kmb.jpg new file mode 100644 index 0000000..5f6f265 Binary files /dev/null and b/upload/3KA7SQMiIeOEaRI6U83hfVz2Kmb.jpg differ diff --git a/upload/3NZ5y4oLwvm1KF99m0DPQoqpEAP.jpg b/upload/3NZ5y4oLwvm1KF99m0DPQoqpEAP.jpg new file mode 100644 index 0000000..c56cb5e Binary files /dev/null and b/upload/3NZ5y4oLwvm1KF99m0DPQoqpEAP.jpg differ diff --git a/upload/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg b/upload/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg new file mode 100644 index 0000000..3164fc8 Binary files /dev/null and b/upload/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg differ diff --git a/upload/3PdyEeIjz1OM0Id3rMMbjJeCycX.jpg b/upload/3PdyEeIjz1OM0Id3rMMbjJeCycX.jpg new file mode 100644 index 0000000..5d22d31 Binary files /dev/null and b/upload/3PdyEeIjz1OM0Id3rMMbjJeCycX.jpg differ diff --git a/upload/3Rfvhy1Nl6sSGJwyjb0QiZzZYlB.jpg b/upload/3Rfvhy1Nl6sSGJwyjb0QiZzZYlB.jpg new file mode 100644 index 0000000..3648437 Binary files /dev/null and b/upload/3Rfvhy1Nl6sSGJwyjb0QiZzZYlB.jpg differ diff --git a/upload/3RhEtfs3tSXAZvgpFEkY945URxe.jpg b/upload/3RhEtfs3tSXAZvgpFEkY945URxe.jpg new file mode 100644 index 0000000..75587b5 Binary files /dev/null and b/upload/3RhEtfs3tSXAZvgpFEkY945URxe.jpg differ diff --git a/upload/3YhhTzAFj8SEf9zB7mgBMAQtIOU.jpg b/upload/3YhhTzAFj8SEf9zB7mgBMAQtIOU.jpg new file mode 100644 index 0000000..16fc75a Binary files /dev/null and b/upload/3YhhTzAFj8SEf9zB7mgBMAQtIOU.jpg differ diff --git a/upload/3YoB2B7JMn8mJ8IsZDn80Zuyocq.jpg b/upload/3YoB2B7JMn8mJ8IsZDn80Zuyocq.jpg new file mode 100644 index 0000000..d02b288 Binary files /dev/null and b/upload/3YoB2B7JMn8mJ8IsZDn80Zuyocq.jpg differ diff --git a/upload/3a2q0H3qGfw9IqXoDHK1w9ouQ8O.jpg b/upload/3a2q0H3qGfw9IqXoDHK1w9ouQ8O.jpg new file mode 100644 index 0000000..1900833 Binary files /dev/null and b/upload/3a2q0H3qGfw9IqXoDHK1w9ouQ8O.jpg differ diff --git a/upload/3aAV0sWY3NowjZP0OwWTIV4Z7vB.jpg b/upload/3aAV0sWY3NowjZP0OwWTIV4Z7vB.jpg new file mode 100644 index 0000000..8c29bac Binary files /dev/null and b/upload/3aAV0sWY3NowjZP0OwWTIV4Z7vB.jpg differ diff --git a/upload/3cyjYtLWCBE1uvWINHFsFnE8LUK.jpg b/upload/3cyjYtLWCBE1uvWINHFsFnE8LUK.jpg new file mode 100644 index 0000000..a238104 Binary files /dev/null and b/upload/3cyjYtLWCBE1uvWINHFsFnE8LUK.jpg differ diff --git a/upload/3drtqLOARQEuFgEmGRlMlWpV3Eb.jpg b/upload/3drtqLOARQEuFgEmGRlMlWpV3Eb.jpg new file mode 100644 index 0000000..5e97dab Binary files /dev/null and b/upload/3drtqLOARQEuFgEmGRlMlWpV3Eb.jpg differ diff --git a/upload/3drtqLOARQEuFgEmGRlMlWpV3Eb_o22PKw0.jpg b/upload/3drtqLOARQEuFgEmGRlMlWpV3Eb_o22PKw0.jpg new file mode 100644 index 0000000..4cb492d Binary files /dev/null and b/upload/3drtqLOARQEuFgEmGRlMlWpV3Eb_o22PKw0.jpg differ diff --git a/upload/3ef08d4f0e330b9f4f.jpg b/upload/3ef08d4f0e330b9f4f.jpg new file mode 100644 index 0000000..6f3a7d3 Binary files /dev/null and b/upload/3ef08d4f0e330b9f4f.jpg differ diff --git a/upload/3g8vyePqVatTaUSnrNnrrwguhxM.jpg b/upload/3g8vyePqVatTaUSnrNnrrwguhxM.jpg new file mode 100644 index 0000000..0b1781b Binary files /dev/null and b/upload/3g8vyePqVatTaUSnrNnrrwguhxM.jpg differ diff --git a/upload/3q3801i63sL9cuUulFr5PSYmExi.jpg b/upload/3q3801i63sL9cuUulFr5PSYmExi.jpg new file mode 100644 index 0000000..61ef59d Binary files /dev/null and b/upload/3q3801i63sL9cuUulFr5PSYmExi.jpg differ diff --git a/upload/3qwn4a8pCFC1ugDIOkFND74h3Ce.jpg b/upload/3qwn4a8pCFC1ugDIOkFND74h3Ce.jpg new file mode 100644 index 0000000..a5048f7 Binary files /dev/null and b/upload/3qwn4a8pCFC1ugDIOkFND74h3Ce.jpg differ diff --git a/upload/3rlclw8qHWEX2hYHNi7dAaW1e0.jpg b/upload/3rlclw8qHWEX2hYHNi7dAaW1e0.jpg new file mode 100644 index 0000000..4fb6aff Binary files /dev/null and b/upload/3rlclw8qHWEX2hYHNi7dAaW1e0.jpg differ diff --git a/upload/3sarRtgbXgqtdZ68LsLvAKyAktn.jpg b/upload/3sarRtgbXgqtdZ68LsLvAKyAktn.jpg new file mode 100644 index 0000000..2710c37 Binary files /dev/null and b/upload/3sarRtgbXgqtdZ68LsLvAKyAktn.jpg differ diff --git a/upload/3wiSgRRKokK660O75vJAGmk7FWF.jpg b/upload/3wiSgRRKokK660O75vJAGmk7FWF.jpg new file mode 100644 index 0000000..f248e8d Binary files /dev/null and b/upload/3wiSgRRKokK660O75vJAGmk7FWF.jpg differ diff --git a/upload/3x9JFFg6kvihztxTUeQ3WQ94TT4.jpg b/upload/3x9JFFg6kvihztxTUeQ3WQ94TT4.jpg new file mode 100644 index 0000000..84de7a4 Binary files /dev/null and b/upload/3x9JFFg6kvihztxTUeQ3WQ94TT4.jpg differ diff --git a/upload/3xM4Eg9.png b/upload/3xM4Eg9.png new file mode 100644 index 0000000..55e6412 Binary files /dev/null and b/upload/3xM4Eg9.png differ diff --git a/upload/3xkCVq0LM1YaMNmavuhEvtASu6K.jpg b/upload/3xkCVq0LM1YaMNmavuhEvtASu6K.jpg new file mode 100644 index 0000000..4fb6302 Binary files /dev/null and b/upload/3xkCVq0LM1YaMNmavuhEvtASu6K.jpg differ diff --git a/upload/3zbcXxdrSAeMb5rnXW0Y0WalB3w.jpg b/upload/3zbcXxdrSAeMb5rnXW0Y0WalB3w.jpg new file mode 100644 index 0000000..147b806 Binary files /dev/null and b/upload/3zbcXxdrSAeMb5rnXW0Y0WalB3w.jpg differ diff --git a/upload/41348_hd.jpg b/upload/41348_hd.jpg new file mode 100644 index 0000000..39430cf Binary files /dev/null and b/upload/41348_hd.jpg differ diff --git a/upload/41jBNeamguFypWSpHMSeKZPEWgh.jpg b/upload/41jBNeamguFypWSpHMSeKZPEWgh.jpg new file mode 100644 index 0000000..7a00977 Binary files /dev/null and b/upload/41jBNeamguFypWSpHMSeKZPEWgh.jpg differ diff --git a/upload/44277.jpg b/upload/44277.jpg new file mode 100644 index 0000000..607cd56 Binary files /dev/null and b/upload/44277.jpg differ diff --git a/upload/44284.jpg b/upload/44284.jpg new file mode 100644 index 0000000..193e21d Binary files /dev/null and b/upload/44284.jpg differ diff --git a/upload/44mAbdjGrJJQ4hzkKx2Z2EsninZ.jpg b/upload/44mAbdjGrJJQ4hzkKx2Z2EsninZ.jpg new file mode 100644 index 0000000..0988238 Binary files /dev/null and b/upload/44mAbdjGrJJQ4hzkKx2Z2EsninZ.jpg differ diff --git a/upload/4577Y70bqaMpAVtstGuq73w3uwJ.jpg b/upload/4577Y70bqaMpAVtstGuq73w3uwJ.jpg new file mode 100644 index 0000000..4040f19 Binary files /dev/null and b/upload/4577Y70bqaMpAVtstGuq73w3uwJ.jpg differ diff --git a/upload/468714rKVDNItnO2UI4eTgLsrT5.jpg b/upload/468714rKVDNItnO2UI4eTgLsrT5.jpg new file mode 100644 index 0000000..43ab8cf Binary files /dev/null and b/upload/468714rKVDNItnO2UI4eTgLsrT5.jpg differ diff --git a/upload/475938.jpg b/upload/475938.jpg new file mode 100644 index 0000000..cb64e2d Binary files /dev/null and b/upload/475938.jpg differ diff --git a/upload/475939.jpg b/upload/475939.jpg new file mode 100644 index 0000000..05c0c60 Binary files /dev/null and b/upload/475939.jpg differ diff --git a/upload/475940.jpg b/upload/475940.jpg new file mode 100644 index 0000000..076a096 Binary files /dev/null and b/upload/475940.jpg differ diff --git a/upload/475943.jpg b/upload/475943.jpg new file mode 100644 index 0000000..4e6da1b Binary files /dev/null and b/upload/475943.jpg differ diff --git a/upload/475944.jpg b/upload/475944.jpg new file mode 100644 index 0000000..3ee9326 Binary files /dev/null and b/upload/475944.jpg differ diff --git a/upload/47a0bb17c73a8bb8c04e6b9fb97578fd8e2df179_s2_n2.jpg b/upload/47a0bb17c73a8bb8c04e6b9fb97578fd8e2df179_s2_n2.jpg new file mode 100644 index 0000000..939e41e Binary files /dev/null and b/upload/47a0bb17c73a8bb8c04e6b9fb97578fd8e2df179_s2_n2.jpg differ diff --git a/upload/490728.jpg b/upload/490728.jpg new file mode 100644 index 0000000..53cc55d Binary files /dev/null and b/upload/490728.jpg differ diff --git a/upload/490741.jpg b/upload/490741.jpg new file mode 100644 index 0000000..b20a3c4 Binary files /dev/null and b/upload/490741.jpg differ diff --git a/upload/498_hd.jpg b/upload/498_hd.jpg new file mode 100644 index 0000000..5616c1d Binary files /dev/null and b/upload/498_hd.jpg differ diff --git a/upload/4BDslNOc-1024x551.jpeg b/upload/4BDslNOc-1024x551.jpeg new file mode 100644 index 0000000..7e357fe Binary files /dev/null and b/upload/4BDslNOc-1024x551.jpeg differ diff --git a/upload/4BLkWnNHwGdcwkivXHBTuOH1hEO.jpg b/upload/4BLkWnNHwGdcwkivXHBTuOH1hEO.jpg new file mode 100644 index 0000000..3e7c30d Binary files /dev/null and b/upload/4BLkWnNHwGdcwkivXHBTuOH1hEO.jpg differ diff --git a/upload/4CKACr2phot5Df3pF80sXlgqKL7.jpg b/upload/4CKACr2phot5Df3pF80sXlgqKL7.jpg new file mode 100644 index 0000000..8b09988 Binary files /dev/null and b/upload/4CKACr2phot5Df3pF80sXlgqKL7.jpg differ diff --git a/upload/4CSg1R8vABzAXqmKYlse1vN17Yc.jpg b/upload/4CSg1R8vABzAXqmKYlse1vN17Yc.jpg new file mode 100644 index 0000000..f66f625 Binary files /dev/null and b/upload/4CSg1R8vABzAXqmKYlse1vN17Yc.jpg differ diff --git a/upload/4DD64C30-8E51-4905-A919-FC0AA5BFC432.jpeg b/upload/4DD64C30-8E51-4905-A919-FC0AA5BFC432.jpeg new file mode 100644 index 0000000..4ae14a8 Binary files /dev/null and b/upload/4DD64C30-8E51-4905-A919-FC0AA5BFC432.jpeg differ diff --git a/upload/4GlSMUpzSd3cliYGFJVziSDX53S.jpg b/upload/4GlSMUpzSd3cliYGFJVziSDX53S.jpg new file mode 100644 index 0000000..4574033 Binary files /dev/null and b/upload/4GlSMUpzSd3cliYGFJVziSDX53S.jpg differ diff --git a/upload/4GzJmG9pqil2PGYLNN5WhlLdljP.jpg b/upload/4GzJmG9pqil2PGYLNN5WhlLdljP.jpg new file mode 100644 index 0000000..071f77b Binary files /dev/null and b/upload/4GzJmG9pqil2PGYLNN5WhlLdljP.jpg differ diff --git a/upload/4LqTz99IMflMkHUcwUguEbLvTuU.jpg b/upload/4LqTz99IMflMkHUcwUguEbLvTuU.jpg new file mode 100644 index 0000000..169842c Binary files /dev/null and b/upload/4LqTz99IMflMkHUcwUguEbLvTuU.jpg differ diff --git a/upload/4Q4ysnEKboNDU8AFLMvbeyQavVq.jpg b/upload/4Q4ysnEKboNDU8AFLMvbeyQavVq.jpg new file mode 100644 index 0000000..b8bd834 Binary files /dev/null and b/upload/4Q4ysnEKboNDU8AFLMvbeyQavVq.jpg differ diff --git a/upload/4RTG2AaqZ9eleL51ryWwv78WwDu.jpg b/upload/4RTG2AaqZ9eleL51ryWwv78WwDu.jpg new file mode 100644 index 0000000..b9e7656 Binary files /dev/null and b/upload/4RTG2AaqZ9eleL51ryWwv78WwDu.jpg differ diff --git a/upload/4Wr3rvZuZmnj93amaXK1qB5JHWl.jpg b/upload/4Wr3rvZuZmnj93amaXK1qB5JHWl.jpg new file mode 100644 index 0000000..e51807d Binary files /dev/null and b/upload/4Wr3rvZuZmnj93amaXK1qB5JHWl.jpg differ diff --git a/upload/4X7NkX3sVJrUM2a8uijmg4u7HPl.jpg b/upload/4X7NkX3sVJrUM2a8uijmg4u7HPl.jpg new file mode 100644 index 0000000..8fb68dc Binary files /dev/null and b/upload/4X7NkX3sVJrUM2a8uijmg4u7HPl.jpg differ diff --git a/upload/4Y4c7HEdtrZiw7QiUc3dHmfZvsI.jpg b/upload/4Y4c7HEdtrZiw7QiUc3dHmfZvsI.jpg new file mode 100644 index 0000000..de7963b Binary files /dev/null and b/upload/4Y4c7HEdtrZiw7QiUc3dHmfZvsI.jpg differ diff --git a/upload/4ZPtUs7zcCpW9oWTeZ02NHJxtmx.jpg b/upload/4ZPtUs7zcCpW9oWTeZ02NHJxtmx.jpg new file mode 100644 index 0000000..6edecbe Binary files /dev/null and b/upload/4ZPtUs7zcCpW9oWTeZ02NHJxtmx.jpg differ diff --git a/upload/4c8MAzmIQ4mLSXqtmxfS7DRhfpI.jpg b/upload/4c8MAzmIQ4mLSXqtmxfS7DRhfpI.jpg new file mode 100644 index 0000000..390d472 Binary files /dev/null and b/upload/4c8MAzmIQ4mLSXqtmxfS7DRhfpI.jpg differ diff --git a/upload/4cEIewBCuUD278126-1.jpg b/upload/4cEIewBCuUD278126-1.jpg new file mode 100644 index 0000000..a8e18d7 Binary files /dev/null and b/upload/4cEIewBCuUD278126-1.jpg differ diff --git a/upload/4cO5RHnpGXTBesX51JX5OVeNjDl.jpg b/upload/4cO5RHnpGXTBesX51JX5OVeNjDl.jpg new file mode 100644 index 0000000..72ffd9c Binary files /dev/null and b/upload/4cO5RHnpGXTBesX51JX5OVeNjDl.jpg differ diff --git a/upload/4cpGytCB0eqvRks4FAlJoUJiFPG.jpg b/upload/4cpGytCB0eqvRks4FAlJoUJiFPG.jpg new file mode 100644 index 0000000..b37d033 Binary files /dev/null and b/upload/4cpGytCB0eqvRks4FAlJoUJiFPG.jpg differ diff --git a/upload/4dw4JX6uqGPO5v5bJYusaGNSON2.jpg b/upload/4dw4JX6uqGPO5v5bJYusaGNSON2.jpg new file mode 100644 index 0000000..4832356 Binary files /dev/null and b/upload/4dw4JX6uqGPO5v5bJYusaGNSON2.jpg differ diff --git a/upload/4eTiLRTYwAVQyQAjuFuf3BXAony.jpg b/upload/4eTiLRTYwAVQyQAjuFuf3BXAony.jpg new file mode 100644 index 0000000..a6a6ea6 Binary files /dev/null and b/upload/4eTiLRTYwAVQyQAjuFuf3BXAony.jpg differ diff --git a/upload/4ex4AN9SbGxHwBbcKqsVV3rAIeO.jpg b/upload/4ex4AN9SbGxHwBbcKqsVV3rAIeO.jpg new file mode 100644 index 0000000..53bd8ff Binary files /dev/null and b/upload/4ex4AN9SbGxHwBbcKqsVV3rAIeO.jpg differ diff --git a/upload/4fglJIuTKRhYim2r5hRTNpbldfq.jpg b/upload/4fglJIuTKRhYim2r5hRTNpbldfq.jpg new file mode 100644 index 0000000..f00b557 Binary files /dev/null and b/upload/4fglJIuTKRhYim2r5hRTNpbldfq.jpg differ diff --git a/upload/4kso0W083RoI7IMcYQcHTeJDfPH.jpg b/upload/4kso0W083RoI7IMcYQcHTeJDfPH.jpg new file mode 100644 index 0000000..1c8f684 Binary files /dev/null and b/upload/4kso0W083RoI7IMcYQcHTeJDfPH.jpg differ diff --git a/upload/4nN0EYNbOWHJ9UO39maO5Kvcdfa.jpg b/upload/4nN0EYNbOWHJ9UO39maO5Kvcdfa.jpg new file mode 100644 index 0000000..6d0497f Binary files /dev/null and b/upload/4nN0EYNbOWHJ9UO39maO5Kvcdfa.jpg differ diff --git a/upload/4nPxh0JAu4Ts9GlBP2nAZGUeLiT.jpg b/upload/4nPxh0JAu4Ts9GlBP2nAZGUeLiT.jpg new file mode 100644 index 0000000..752e16c Binary files /dev/null and b/upload/4nPxh0JAu4Ts9GlBP2nAZGUeLiT.jpg differ diff --git a/upload/4ooZwR267AZXEvXziUNgLQlj6YR.jpg b/upload/4ooZwR267AZXEvXziUNgLQlj6YR.jpg new file mode 100644 index 0000000..6eb31b9 Binary files /dev/null and b/upload/4ooZwR267AZXEvXziUNgLQlj6YR.jpg differ diff --git a/upload/4ooZwR267AZXEvXziUNgLQlj6YR_eQZSSpv.jpg b/upload/4ooZwR267AZXEvXziUNgLQlj6YR_eQZSSpv.jpg new file mode 100644 index 0000000..7f3a597 Binary files /dev/null and b/upload/4ooZwR267AZXEvXziUNgLQlj6YR_eQZSSpv.jpg differ diff --git a/upload/4pbluKz5k0XUhA8C8zF0UH63kFi.jpg b/upload/4pbluKz5k0XUhA8C8zF0UH63kFi.jpg new file mode 100644 index 0000000..b06beca Binary files /dev/null and b/upload/4pbluKz5k0XUhA8C8zF0UH63kFi.jpg differ diff --git a/upload/4s2d3xdyqotiVNHTlTlJjrr3q0H.jpg b/upload/4s2d3xdyqotiVNHTlTlJjrr3q0H.jpg new file mode 100644 index 0000000..47e79ab Binary files /dev/null and b/upload/4s2d3xdyqotiVNHTlTlJjrr3q0H.jpg differ diff --git a/upload/4s2d3xdyqotiVNHTlTlJjrr3q0H_kmHcWAr.jpg b/upload/4s2d3xdyqotiVNHTlTlJjrr3q0H_kmHcWAr.jpg new file mode 100644 index 0000000..a98564e Binary files /dev/null and b/upload/4s2d3xdyqotiVNHTlTlJjrr3q0H_kmHcWAr.jpg differ diff --git a/upload/4t0BWAnW5a2SzCwL01egNIgMqeL.jpg b/upload/4t0BWAnW5a2SzCwL01egNIgMqeL.jpg new file mode 100644 index 0000000..c27bed1 Binary files /dev/null and b/upload/4t0BWAnW5a2SzCwL01egNIgMqeL.jpg differ diff --git a/upload/4waXf28obXu6azfrAgtc7RjhgMT.jpg b/upload/4waXf28obXu6azfrAgtc7RjhgMT.jpg new file mode 100644 index 0000000..6befcea Binary files /dev/null and b/upload/4waXf28obXu6azfrAgtc7RjhgMT.jpg differ diff --git a/upload/4yAQQ9IUEai0hiI7g3I8YWQtFQO.jpg b/upload/4yAQQ9IUEai0hiI7g3I8YWQtFQO.jpg new file mode 100644 index 0000000..f35ec5d Binary files /dev/null and b/upload/4yAQQ9IUEai0hiI7g3I8YWQtFQO.jpg differ diff --git a/upload/4ykgOpku7PLAQxlZ18sPfCSarM5.jpg b/upload/4ykgOpku7PLAQxlZ18sPfCSarM5.jpg new file mode 100644 index 0000000..2763e80 Binary files /dev/null and b/upload/4ykgOpku7PLAQxlZ18sPfCSarM5.jpg differ diff --git a/upload/52151-el-aninuevo-trailer.jpg b/upload/52151-el-aninuevo-trailer.jpg new file mode 100644 index 0000000..33f13ca Binary files /dev/null and b/upload/52151-el-aninuevo-trailer.jpg differ diff --git a/upload/52674-h.jpg b/upload/52674-h.jpg new file mode 100644 index 0000000..e1f4b54 Binary files /dev/null and b/upload/52674-h.jpg differ diff --git a/upload/528116.jpg b/upload/528116.jpg new file mode 100644 index 0000000..92c60d6 Binary files /dev/null and b/upload/528116.jpg differ diff --git a/upload/52f2732fecad04a110c251ae.jpg b/upload/52f2732fecad04a110c251ae.jpg new file mode 100644 index 0000000..7718fe7 Binary files /dev/null and b/upload/52f2732fecad04a110c251ae.jpg differ diff --git a/upload/52xxft7Ccb742qlp42EBHqS6n8j.jpg b/upload/52xxft7Ccb742qlp42EBHqS6n8j.jpg new file mode 100644 index 0000000..8981e7d Binary files /dev/null and b/upload/52xxft7Ccb742qlp42EBHqS6n8j.jpg differ diff --git a/upload/54507_hd.jpg b/upload/54507_hd.jpg new file mode 100644 index 0000000..2f439c4 Binary files /dev/null and b/upload/54507_hd.jpg differ diff --git a/upload/54ac8f1bf374fcd4be09b0f7021d93898d6bf4f5_s2_n2.jpg b/upload/54ac8f1bf374fcd4be09b0f7021d93898d6bf4f5_s2_n2.jpg new file mode 100644 index 0000000..1a88e17 Binary files /dev/null and b/upload/54ac8f1bf374fcd4be09b0f7021d93898d6bf4f5_s2_n2.jpg differ diff --git a/upload/555613.png b/upload/555613.png new file mode 100644 index 0000000..4b8299d Binary files /dev/null and b/upload/555613.png differ diff --git a/upload/556525.jpg b/upload/556525.jpg new file mode 100644 index 0000000..0ec0065 Binary files /dev/null and b/upload/556525.jpg differ diff --git a/upload/559370.jpg b/upload/559370.jpg new file mode 100644 index 0000000..e0e227f Binary files /dev/null and b/upload/559370.jpg differ diff --git a/upload/55l5a4iKGcIPlhBVhPd7HTlY3m1.jpg b/upload/55l5a4iKGcIPlhBVhPd7HTlY3m1.jpg new file mode 100644 index 0000000..ece2290 Binary files /dev/null and b/upload/55l5a4iKGcIPlhBVhPd7HTlY3m1.jpg differ diff --git a/upload/56-567861_assassins-creed-hd-screencaps-assassins-creed-movie-maria.jpg b/upload/56-567861_assassins-creed-hd-screencaps-assassins-creed-movie-maria.jpg new file mode 100644 index 0000000..b927c74 Binary files /dev/null and b/upload/56-567861_assassins-creed-hd-screencaps-assassins-creed-movie-maria.jpg differ diff --git a/upload/560999.jpg b/upload/560999.jpg new file mode 100644 index 0000000..b26040a Binary files /dev/null and b/upload/560999.jpg differ diff --git a/upload/563067.jpg b/upload/563067.jpg new file mode 100644 index 0000000..ec1abc7 Binary files /dev/null and b/upload/563067.jpg differ diff --git a/upload/57fad25cae6c63ff2cbb1d2790cd266e44e86f87_s2_n2.png b/upload/57fad25cae6c63ff2cbb1d2790cd266e44e86f87_s2_n2.png new file mode 100644 index 0000000..b4771df Binary files /dev/null and b/upload/57fad25cae6c63ff2cbb1d2790cd266e44e86f87_s2_n2.png differ diff --git a/upload/57fad25cae6c63ff2cbb1d2790cd266e44e86f87_s2_n2_LnSrvrI.png b/upload/57fad25cae6c63ff2cbb1d2790cd266e44e86f87_s2_n2_LnSrvrI.png new file mode 100644 index 0000000..b4771df Binary files /dev/null and b/upload/57fad25cae6c63ff2cbb1d2790cd266e44e86f87_s2_n2_LnSrvrI.png differ diff --git a/upload/582103.jpg b/upload/582103.jpg new file mode 100644 index 0000000..f8088f4 Binary files /dev/null and b/upload/582103.jpg differ diff --git a/upload/5869FD69-22B5-448D-AB62-828905ECAD9F.jpeg b/upload/5869FD69-22B5-448D-AB62-828905ECAD9F.jpeg new file mode 100644 index 0000000..b657ef7 Binary files /dev/null and b/upload/5869FD69-22B5-448D-AB62-828905ECAD9F.jpeg differ diff --git a/upload/5AFD5E3F-E1C6-4961-9DEE-BB9DC592B2C3.jpeg b/upload/5AFD5E3F-E1C6-4961-9DEE-BB9DC592B2C3.jpeg new file mode 100644 index 0000000..53ec4a4 Binary files /dev/null and b/upload/5AFD5E3F-E1C6-4961-9DEE-BB9DC592B2C3.jpeg differ diff --git a/upload/5AXtwreCVNUdEZVP5sU1OK0dzbY.jpg b/upload/5AXtwreCVNUdEZVP5sU1OK0dzbY.jpg new file mode 100644 index 0000000..23d5e8c Binary files /dev/null and b/upload/5AXtwreCVNUdEZVP5sU1OK0dzbY.jpg differ diff --git a/upload/5BmP3oKqStYSPinFYKuJbHvxoA8.jpg b/upload/5BmP3oKqStYSPinFYKuJbHvxoA8.jpg new file mode 100644 index 0000000..5e96d1b Binary files /dev/null and b/upload/5BmP3oKqStYSPinFYKuJbHvxoA8.jpg differ diff --git a/upload/5BoVHPeNHbXED4iNpJc2kHEdjUu.jpg b/upload/5BoVHPeNHbXED4iNpJc2kHEdjUu.jpg new file mode 100644 index 0000000..4103c14 Binary files /dev/null and b/upload/5BoVHPeNHbXED4iNpJc2kHEdjUu.jpg differ diff --git a/upload/5C3RriLKkIAQtQMx85JLtu4rVI2.jpg b/upload/5C3RriLKkIAQtQMx85JLtu4rVI2.jpg new file mode 100644 index 0000000..a2d3817 Binary files /dev/null and b/upload/5C3RriLKkIAQtQMx85JLtu4rVI2.jpg differ diff --git a/upload/5Equwb5JA3AHXVnVCm5EtYZFGfn.jpg b/upload/5Equwb5JA3AHXVnVCm5EtYZFGfn.jpg new file mode 100644 index 0000000..0d280e0 Binary files /dev/null and b/upload/5Equwb5JA3AHXVnVCm5EtYZFGfn.jpg differ diff --git a/upload/5ExgYTRafm4kFRwHp2jH6C23Yl4.jpg b/upload/5ExgYTRafm4kFRwHp2jH6C23Yl4.jpg new file mode 100644 index 0000000..6db0e73 Binary files /dev/null and b/upload/5ExgYTRafm4kFRwHp2jH6C23Yl4.jpg differ diff --git a/upload/5GbOpFMowOhMDevhbOBoTq4Wtbw.jpg b/upload/5GbOpFMowOhMDevhbOBoTq4Wtbw.jpg new file mode 100644 index 0000000..dde7575 Binary files /dev/null and b/upload/5GbOpFMowOhMDevhbOBoTq4Wtbw.jpg differ diff --git a/upload/5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg b/upload/5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg new file mode 100644 index 0000000..fed4ec7 Binary files /dev/null and b/upload/5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg differ diff --git a/upload/5Iw7zQTHVRBOYpA0V6z0yypOPZh_bx1HWQC.jpg b/upload/5Iw7zQTHVRBOYpA0V6z0yypOPZh_bx1HWQC.jpg new file mode 100644 index 0000000..fed4ec7 Binary files /dev/null and b/upload/5Iw7zQTHVRBOYpA0V6z0yypOPZh_bx1HWQC.jpg differ diff --git a/upload/5KlRFKKSbyCiyYpZSS3A6G5bW0K.jpg b/upload/5KlRFKKSbyCiyYpZSS3A6G5bW0K.jpg new file mode 100644 index 0000000..12ea178 Binary files /dev/null and b/upload/5KlRFKKSbyCiyYpZSS3A6G5bW0K.jpg differ diff --git a/upload/5L0RxqIZQivZPxAcM9Yssd9lKqn.jpg b/upload/5L0RxqIZQivZPxAcM9Yssd9lKqn.jpg new file mode 100644 index 0000000..96580a5 Binary files /dev/null and b/upload/5L0RxqIZQivZPxAcM9Yssd9lKqn.jpg differ diff --git a/upload/5LWLa0jvIQLDSanxJ7MWvcbTdrn.jpg b/upload/5LWLa0jvIQLDSanxJ7MWvcbTdrn.jpg new file mode 100644 index 0000000..ccfc827 Binary files /dev/null and b/upload/5LWLa0jvIQLDSanxJ7MWvcbTdrn.jpg differ diff --git a/upload/5LmWgprQrbN7aMP7iCNSAcMuw6t.jpg b/upload/5LmWgprQrbN7aMP7iCNSAcMuw6t.jpg new file mode 100644 index 0000000..6f99227 Binary files /dev/null and b/upload/5LmWgprQrbN7aMP7iCNSAcMuw6t.jpg differ diff --git a/upload/5QHWgqaBxZI1eM5e3YhyKzY5o3z.jpg b/upload/5QHWgqaBxZI1eM5e3YhyKzY5o3z.jpg new file mode 100644 index 0000000..02f6bb3 Binary files /dev/null and b/upload/5QHWgqaBxZI1eM5e3YhyKzY5o3z.jpg differ diff --git a/upload/5QbxFkmUlLlt9CcNXyo6KCtvUaf.jpg b/upload/5QbxFkmUlLlt9CcNXyo6KCtvUaf.jpg new file mode 100644 index 0000000..da97367 Binary files /dev/null and b/upload/5QbxFkmUlLlt9CcNXyo6KCtvUaf.jpg differ diff --git a/upload/5TC6gKrmtnoGE3c3lHeNPevkn4Z.jpg b/upload/5TC6gKrmtnoGE3c3lHeNPevkn4Z.jpg new file mode 100644 index 0000000..12189da Binary files /dev/null and b/upload/5TC6gKrmtnoGE3c3lHeNPevkn4Z.jpg differ diff --git a/upload/5UDksSAVVINig8QdGI2HBQ9yody.jpg b/upload/5UDksSAVVINig8QdGI2HBQ9yody.jpg new file mode 100644 index 0000000..2d9e7ee Binary files /dev/null and b/upload/5UDksSAVVINig8QdGI2HBQ9yody.jpg differ diff --git a/upload/5VvepiOtW4aJYRnGfPP7IyA58lv.jpg b/upload/5VvepiOtW4aJYRnGfPP7IyA58lv.jpg new file mode 100644 index 0000000..f49d257 Binary files /dev/null and b/upload/5VvepiOtW4aJYRnGfPP7IyA58lv.jpg differ diff --git a/upload/5Xp5S8UBVfwKvHRD3mHTyBYmNhi.jpg b/upload/5Xp5S8UBVfwKvHRD3mHTyBYmNhi.jpg new file mode 100644 index 0000000..08a2772 Binary files /dev/null and b/upload/5Xp5S8UBVfwKvHRD3mHTyBYmNhi.jpg differ diff --git a/upload/5ZkL9w76kBTqLksZRWMVmcteiUc.jpg b/upload/5ZkL9w76kBTqLksZRWMVmcteiUc.jpg new file mode 100644 index 0000000..410dc95 Binary files /dev/null and b/upload/5ZkL9w76kBTqLksZRWMVmcteiUc.jpg differ diff --git a/upload/5aTjdtcZXYmmSgJIuWjMW2v93tb.jpg b/upload/5aTjdtcZXYmmSgJIuWjMW2v93tb.jpg new file mode 100644 index 0000000..e2fb607 Binary files /dev/null and b/upload/5aTjdtcZXYmmSgJIuWjMW2v93tb.jpg differ diff --git a/upload/5bbaeb01309cc.jpg b/upload/5bbaeb01309cc.jpg new file mode 100644 index 0000000..0674715 Binary files /dev/null and b/upload/5bbaeb01309cc.jpg differ diff --git a/upload/5c5c14f6b0565.jpg b/upload/5c5c14f6b0565.jpg new file mode 100644 index 0000000..46afd74 Binary files /dev/null and b/upload/5c5c14f6b0565.jpg differ diff --git a/upload/5c65fa5e7fa62.jpg b/upload/5c65fa5e7fa62.jpg new file mode 100644 index 0000000..f2f4221 Binary files /dev/null and b/upload/5c65fa5e7fa62.jpg differ diff --git a/upload/5cded304ab667.jpg b/upload/5cded304ab667.jpg new file mode 100644 index 0000000..a1c6615 Binary files /dev/null and b/upload/5cded304ab667.jpg differ diff --git a/upload/5cf5c27051b7d.jpg b/upload/5cf5c27051b7d.jpg new file mode 100644 index 0000000..1aff199 Binary files /dev/null and b/upload/5cf5c27051b7d.jpg differ diff --git a/upload/5d43c64554960bd5fdfcff357ccb6156.jpg b/upload/5d43c64554960bd5fdfcff357ccb6156.jpg new file mode 100644 index 0000000..5e8321d Binary files /dev/null and b/upload/5d43c64554960bd5fdfcff357ccb6156.jpg differ diff --git a/upload/5d606e869d627dcad28e96078792763d205ccb45_s2_n2.jpg b/upload/5d606e869d627dcad28e96078792763d205ccb45_s2_n2.jpg new file mode 100644 index 0000000..af461e6 Binary files /dev/null and b/upload/5d606e869d627dcad28e96078792763d205ccb45_s2_n2.jpg differ diff --git a/upload/5dadfbf93a8ea.jpg b/upload/5dadfbf93a8ea.jpg new file mode 100644 index 0000000..8669a8c Binary files /dev/null and b/upload/5dadfbf93a8ea.jpg differ diff --git a/upload/5eabdfe38893d.jpg b/upload/5eabdfe38893d.jpg new file mode 100644 index 0000000..5673dd3 Binary files /dev/null and b/upload/5eabdfe38893d.jpg differ diff --git a/upload/5ef359b856d0c.image.jpg b/upload/5ef359b856d0c.image.jpg new file mode 100644 index 0000000..d3ff8bc Binary files /dev/null and b/upload/5ef359b856d0c.image.jpg differ diff --git a/upload/5f3e15a1a7340.jpg b/upload/5f3e15a1a7340.jpg new file mode 100644 index 0000000..6f1a0f6 Binary files /dev/null and b/upload/5f3e15a1a7340.jpg differ diff --git a/upload/5f61ce1c94b2b.jpg b/upload/5f61ce1c94b2b.jpg new file mode 100644 index 0000000..06ed56c Binary files /dev/null and b/upload/5f61ce1c94b2b.jpg differ diff --git a/upload/5f73d4462925e91fc2399edd29a202b6.jpg b/upload/5f73d4462925e91fc2399edd29a202b6.jpg new file mode 100644 index 0000000..df35d2c Binary files /dev/null and b/upload/5f73d4462925e91fc2399edd29a202b6.jpg differ diff --git a/upload/5f7ac971c369d.jpg b/upload/5f7ac971c369d.jpg new file mode 100644 index 0000000..9290956 Binary files /dev/null and b/upload/5f7ac971c369d.jpg differ diff --git a/upload/5f7db7dacdc04.jpg b/upload/5f7db7dacdc04.jpg new file mode 100644 index 0000000..4816362 Binary files /dev/null and b/upload/5f7db7dacdc04.jpg differ diff --git a/upload/5f9835582b0fd.jpg b/upload/5f9835582b0fd.jpg new file mode 100644 index 0000000..b9bb876 Binary files /dev/null and b/upload/5f9835582b0fd.jpg differ diff --git a/upload/5fa10237bb453.jpg b/upload/5fa10237bb453.jpg new file mode 100644 index 0000000..cfda63e Binary files /dev/null and b/upload/5fa10237bb453.jpg differ diff --git a/upload/5fu7fzy4NZTsL1Jap00UBIInAuB.jpg b/upload/5fu7fzy4NZTsL1Jap00UBIInAuB.jpg new file mode 100644 index 0000000..dadeedf Binary files /dev/null and b/upload/5fu7fzy4NZTsL1Jap00UBIInAuB.jpg differ diff --git a/upload/5gPPx16QWx071VAI1M0RAVKJ6tc.jpg b/upload/5gPPx16QWx071VAI1M0RAVKJ6tc.jpg new file mode 100644 index 0000000..ad4c257 Binary files /dev/null and b/upload/5gPPx16QWx071VAI1M0RAVKJ6tc.jpg differ diff --git a/upload/5gacnWeRM1elqjNq9knTuWnj3Jo.jpg b/upload/5gacnWeRM1elqjNq9knTuWnj3Jo.jpg new file mode 100644 index 0000000..7c99cd5 Binary files /dev/null and b/upload/5gacnWeRM1elqjNq9knTuWnj3Jo.jpg differ diff --git a/upload/5gezpRVxHQlMohOHKtgvFLVcxyA.jpg b/upload/5gezpRVxHQlMohOHKtgvFLVcxyA.jpg new file mode 100644 index 0000000..cc2deb5 Binary files /dev/null and b/upload/5gezpRVxHQlMohOHKtgvFLVcxyA.jpg differ diff --git a/upload/5ihDCcrx49oweqznL3jjn58LdLV.jpg b/upload/5ihDCcrx49oweqznL3jjn58LdLV.jpg new file mode 100644 index 0000000..444fe4c Binary files /dev/null and b/upload/5ihDCcrx49oweqznL3jjn58LdLV.jpg differ diff --git a/upload/5kEgdyJhsqRp7Ced8t8ojSkDkkh.jpg b/upload/5kEgdyJhsqRp7Ced8t8ojSkDkkh.jpg new file mode 100644 index 0000000..461ad95 Binary files /dev/null and b/upload/5kEgdyJhsqRp7Ced8t8ojSkDkkh.jpg differ diff --git a/upload/5pDe1rFSrq0QgqsUd3veTaaTi0i.jpg b/upload/5pDe1rFSrq0QgqsUd3veTaaTi0i.jpg new file mode 100644 index 0000000..61cecdc Binary files /dev/null and b/upload/5pDe1rFSrq0QgqsUd3veTaaTi0i.jpg differ diff --git a/upload/5pXhfTMklUEKVtDt6EIUKcEqtSx.jpg b/upload/5pXhfTMklUEKVtDt6EIUKcEqtSx.jpg new file mode 100644 index 0000000..c354ef6 Binary files /dev/null and b/upload/5pXhfTMklUEKVtDt6EIUKcEqtSx.jpg differ diff --git a/upload/5sequelclassici-atlantismiloreturn_c7xj.jpg b/upload/5sequelclassici-atlantismiloreturn_c7xj.jpg new file mode 100644 index 0000000..88381a3 Binary files /dev/null and b/upload/5sequelclassici-atlantismiloreturn_c7xj.jpg differ diff --git a/upload/5vHssUeVe25bMrof1HyaPyWgaP.jpg b/upload/5vHssUeVe25bMrof1HyaPyWgaP.jpg new file mode 100644 index 0000000..0d7ece6 Binary files /dev/null and b/upload/5vHssUeVe25bMrof1HyaPyWgaP.jpg differ diff --git a/upload/603422fd82ed0.jpg b/upload/603422fd82ed0.jpg new file mode 100644 index 0000000..283551d Binary files /dev/null and b/upload/603422fd82ed0.jpg differ diff --git a/upload/61997566.jpg b/upload/61997566.jpg new file mode 100644 index 0000000..e3aeb7e Binary files /dev/null and b/upload/61997566.jpg differ diff --git a/upload/61997572.jpg b/upload/61997572.jpg new file mode 100644 index 0000000..92075a3 Binary files /dev/null and b/upload/61997572.jpg differ diff --git a/upload/62016718.jpg b/upload/62016718.jpg new file mode 100644 index 0000000..67daf3b Binary files /dev/null and b/upload/62016718.jpg differ diff --git a/upload/62040474.jpg b/upload/62040474.jpg new file mode 100644 index 0000000..7ab1e21 Binary files /dev/null and b/upload/62040474.jpg differ diff --git a/upload/62051355.jpg b/upload/62051355.jpg new file mode 100644 index 0000000..f9323e4 Binary files /dev/null and b/upload/62051355.jpg differ diff --git a/upload/62085510.jpg b/upload/62085510.jpg new file mode 100644 index 0000000..bdb87b4 Binary files /dev/null and b/upload/62085510.jpg differ diff --git a/upload/62103714.jpg b/upload/62103714.jpg new file mode 100644 index 0000000..59ae3e5 Binary files /dev/null and b/upload/62103714.jpg differ diff --git a/upload/631095.jpg b/upload/631095.jpg new file mode 100644 index 0000000..745946d Binary files /dev/null and b/upload/631095.jpg differ diff --git a/upload/631168.jpg b/upload/631168.jpg new file mode 100644 index 0000000..f502689 Binary files /dev/null and b/upload/631168.jpg differ diff --git a/upload/631176.jpg b/upload/631176.jpg new file mode 100644 index 0000000..549715a Binary files /dev/null and b/upload/631176.jpg differ diff --git a/upload/633538.jpg b/upload/633538.jpg new file mode 100644 index 0000000..5a1e78d Binary files /dev/null and b/upload/633538.jpg differ diff --git a/upload/633542.jpg b/upload/633542.jpg new file mode 100644 index 0000000..bde4ee3 Binary files /dev/null and b/upload/633542.jpg differ diff --git a/upload/636367764018167222-Mune-AniFeature-Still3.jpg b/upload/636367764018167222-Mune-AniFeature-Still3.jpg new file mode 100644 index 0000000..2ddad21 Binary files /dev/null and b/upload/636367764018167222-Mune-AniFeature-Still3.jpg differ diff --git a/upload/640500.jpg b/upload/640500.jpg new file mode 100644 index 0000000..a01421f Binary files /dev/null and b/upload/640500.jpg differ diff --git a/upload/641094.jpg b/upload/641094.jpg new file mode 100644 index 0000000..66aeb4d Binary files /dev/null and b/upload/641094.jpg differ diff --git a/upload/641136.jpg b/upload/641136.jpg new file mode 100644 index 0000000..e28c1e1 Binary files /dev/null and b/upload/641136.jpg differ diff --git a/upload/641248.jpg b/upload/641248.jpg new file mode 100644 index 0000000..125db6f Binary files /dev/null and b/upload/641248.jpg differ diff --git a/upload/641258.jpg b/upload/641258.jpg new file mode 100644 index 0000000..79b26c3 Binary files /dev/null and b/upload/641258.jpg differ diff --git a/upload/643683.jpg b/upload/643683.jpg new file mode 100644 index 0000000..a132b67 Binary files /dev/null and b/upload/643683.jpg differ diff --git a/upload/643685.jpg b/upload/643685.jpg new file mode 100644 index 0000000..e1b4990 Binary files /dev/null and b/upload/643685.jpg differ diff --git a/upload/643697.jpg b/upload/643697.jpg new file mode 100644 index 0000000..821476f Binary files /dev/null and b/upload/643697.jpg differ diff --git a/upload/665157be889c4b7173c115065e0f44c1.jpg b/upload/665157be889c4b7173c115065e0f44c1.jpg new file mode 100644 index 0000000..fe270f5 Binary files /dev/null and b/upload/665157be889c4b7173c115065e0f44c1.jpg differ diff --git a/upload/6700000.png b/upload/6700000.png new file mode 100644 index 0000000..7534af2 Binary files /dev/null and b/upload/6700000.png differ diff --git a/upload/674898.jpg b/upload/674898.jpg new file mode 100644 index 0000000..7b501d5 Binary files /dev/null and b/upload/674898.jpg differ diff --git a/upload/675410.jpg b/upload/675410.jpg new file mode 100644 index 0000000..834739a Binary files /dev/null and b/upload/675410.jpg differ diff --git a/upload/675415.jpg b/upload/675415.jpg new file mode 100644 index 0000000..9b366e2 Binary files /dev/null and b/upload/675415.jpg differ diff --git a/upload/675417.jpg b/upload/675417.jpg new file mode 100644 index 0000000..9a8b86c Binary files /dev/null and b/upload/675417.jpg differ diff --git a/upload/676134.jpg b/upload/676134.jpg new file mode 100644 index 0000000..33831d9 Binary files /dev/null and b/upload/676134.jpg differ diff --git a/upload/67874.gif b/upload/67874.gif new file mode 100644 index 0000000..ad42e34 Binary files /dev/null and b/upload/67874.gif differ diff --git a/upload/679503310_preview_654734582_preview_9e13b0cea237de286ed475b46d8c138ab62e76e4.jpg b/upload/679503310_preview_654734582_preview_9e13b0cea237de286ed475b46d8c138ab62e76e4.jpg new file mode 100644 index 0000000..49b376a Binary files /dev/null and b/upload/679503310_preview_654734582_preview_9e13b0cea237de286ed475b46d8c138ab62e76e4.jpg differ diff --git a/upload/68270.jpg b/upload/68270.jpg new file mode 100644 index 0000000..f0a3eb3 Binary files /dev/null and b/upload/68270.jpg differ diff --git a/upload/69811.jpg b/upload/69811.jpg new file mode 100644 index 0000000..93e7a25 Binary files /dev/null and b/upload/69811.jpg differ diff --git a/upload/6AASwDhTzI0V0JWZS8hVu6b9086.jpg b/upload/6AASwDhTzI0V0JWZS8hVu6b9086.jpg new file mode 100644 index 0000000..66d012c Binary files /dev/null and b/upload/6AASwDhTzI0V0JWZS8hVu6b9086.jpg differ diff --git a/upload/6Cf2gV06XbRywWP1KqYsGe3Ku9.jpg b/upload/6Cf2gV06XbRywWP1KqYsGe3Ku9.jpg new file mode 100644 index 0000000..0d30f78 Binary files /dev/null and b/upload/6Cf2gV06XbRywWP1KqYsGe3Ku9.jpg differ diff --git a/upload/6Clci6vjQbzvPD0CoYtogGyDFx9.jpg b/upload/6Clci6vjQbzvPD0CoYtogGyDFx9.jpg new file mode 100644 index 0000000..4f430ca Binary files /dev/null and b/upload/6Clci6vjQbzvPD0CoYtogGyDFx9.jpg differ diff --git a/upload/6I1s8q1XHfQh0thAiGC6H2nLy55.jpg b/upload/6I1s8q1XHfQh0thAiGC6H2nLy55.jpg new file mode 100644 index 0000000..2cc255e Binary files /dev/null and b/upload/6I1s8q1XHfQh0thAiGC6H2nLy55.jpg differ diff --git a/upload/6LIpDk797Pe7GptsOfwBzi6QRs.jpg b/upload/6LIpDk797Pe7GptsOfwBzi6QRs.jpg new file mode 100644 index 0000000..bb6e6b3 Binary files /dev/null and b/upload/6LIpDk797Pe7GptsOfwBzi6QRs.jpg differ diff --git a/upload/6MoLU0Ujt07rHUTHmAs3ns3uiIx.jpg b/upload/6MoLU0Ujt07rHUTHmAs3ns3uiIx.jpg new file mode 100644 index 0000000..56022cd Binary files /dev/null and b/upload/6MoLU0Ujt07rHUTHmAs3ns3uiIx.jpg differ diff --git a/upload/6Q5cfHddcKyC4KBKOzZeQ5hI55N.jpg b/upload/6Q5cfHddcKyC4KBKOzZeQ5hI55N.jpg new file mode 100644 index 0000000..f8c4bad Binary files /dev/null and b/upload/6Q5cfHddcKyC4KBKOzZeQ5hI55N.jpg differ diff --git a/upload/6Qam8Leycapwik947j6U3vcUbAv.jpg b/upload/6Qam8Leycapwik947j6U3vcUbAv.jpg new file mode 100644 index 0000000..01c8d3c Binary files /dev/null and b/upload/6Qam8Leycapwik947j6U3vcUbAv.jpg differ diff --git a/upload/6SLnpGHZCuxcrjiXHoMplUjrswL.jpg b/upload/6SLnpGHZCuxcrjiXHoMplUjrswL.jpg new file mode 100644 index 0000000..af3bf03 Binary files /dev/null and b/upload/6SLnpGHZCuxcrjiXHoMplUjrswL.jpg differ diff --git a/upload/6TB7E8xvlCqAWqPdS2fPkdvCVM5.jpg b/upload/6TB7E8xvlCqAWqPdS2fPkdvCVM5.jpg new file mode 100644 index 0000000..957b947 Binary files /dev/null and b/upload/6TB7E8xvlCqAWqPdS2fPkdvCVM5.jpg differ diff --git a/upload/6TB7E8xvlCqAWqPdS2fPkdvCVM5_LG5ftwg.jpg b/upload/6TB7E8xvlCqAWqPdS2fPkdvCVM5_LG5ftwg.jpg new file mode 100644 index 0000000..84a796d Binary files /dev/null and b/upload/6TB7E8xvlCqAWqPdS2fPkdvCVM5_LG5ftwg.jpg differ diff --git a/upload/6VQwHHnFMI6dut5AzsKpXOOicEQ.jpg b/upload/6VQwHHnFMI6dut5AzsKpXOOicEQ.jpg new file mode 100644 index 0000000..7d849c4 Binary files /dev/null and b/upload/6VQwHHnFMI6dut5AzsKpXOOicEQ.jpg differ diff --git a/upload/6VmFqApQRyZZzmiGOQq2C92jyvH.jpg b/upload/6VmFqApQRyZZzmiGOQq2C92jyvH.jpg new file mode 100644 index 0000000..69e693d Binary files /dev/null and b/upload/6VmFqApQRyZZzmiGOQq2C92jyvH.jpg differ diff --git a/upload/6XOM3PEwNMpKaIXbhx13egc2fVi.jpg b/upload/6XOM3PEwNMpKaIXbhx13egc2fVi.jpg new file mode 100644 index 0000000..73c5657 Binary files /dev/null and b/upload/6XOM3PEwNMpKaIXbhx13egc2fVi.jpg differ diff --git a/upload/6Xt3oc3Qvb079525-2.jpg b/upload/6Xt3oc3Qvb079525-2.jpg new file mode 100644 index 0000000..08d4f7c Binary files /dev/null and b/upload/6Xt3oc3Qvb079525-2.jpg differ diff --git a/upload/6ZfpTZXotyQOp0tb7AApmHqAOOR.jpg b/upload/6ZfpTZXotyQOp0tb7AApmHqAOOR.jpg new file mode 100644 index 0000000..45bd5d3 Binary files /dev/null and b/upload/6ZfpTZXotyQOp0tb7AApmHqAOOR.jpg differ diff --git a/upload/6bu9dVGTLwkfQ7ZxH3OBbDf1gPy.jpg b/upload/6bu9dVGTLwkfQ7ZxH3OBbDf1gPy.jpg new file mode 100644 index 0000000..eb1f2e2 Binary files /dev/null and b/upload/6bu9dVGTLwkfQ7ZxH3OBbDf1gPy.jpg differ diff --git a/upload/6emeVphjLLlW8S7WFv6jA5UFzdL.jpg b/upload/6emeVphjLLlW8S7WFv6jA5UFzdL.jpg new file mode 100644 index 0000000..429be0c Binary files /dev/null and b/upload/6emeVphjLLlW8S7WFv6jA5UFzdL.jpg differ diff --git a/upload/6f6b2bc6b8a0fc06ca98d171b5d78c185d222250_s2_n2.jpg b/upload/6f6b2bc6b8a0fc06ca98d171b5d78c185d222250_s2_n2.jpg new file mode 100644 index 0000000..472329d Binary files /dev/null and b/upload/6f6b2bc6b8a0fc06ca98d171b5d78c185d222250_s2_n2.jpg differ diff --git a/upload/6fFO08yyHWYLdZ4CfZJQDHCmHwF.jpg b/upload/6fFO08yyHWYLdZ4CfZJQDHCmHwF.jpg new file mode 100644 index 0000000..3082fc6 Binary files /dev/null and b/upload/6fFO08yyHWYLdZ4CfZJQDHCmHwF.jpg differ diff --git a/upload/6fS6Lonap7HSIcKSoBuqrDE88IM.jpg b/upload/6fS6Lonap7HSIcKSoBuqrDE88IM.jpg new file mode 100644 index 0000000..6d585b4 Binary files /dev/null and b/upload/6fS6Lonap7HSIcKSoBuqrDE88IM.jpg differ diff --git a/upload/6jajFcaY2YsfGQstJ5HaqZNVseX.jpg b/upload/6jajFcaY2YsfGQstJ5HaqZNVseX.jpg new file mode 100644 index 0000000..b06dada Binary files /dev/null and b/upload/6jajFcaY2YsfGQstJ5HaqZNVseX.jpg differ diff --git a/upload/6pRNDb0yStxlwhavn2ZqYRVFOJ5.jpg b/upload/6pRNDb0yStxlwhavn2ZqYRVFOJ5.jpg new file mode 100644 index 0000000..78b9b40 Binary files /dev/null and b/upload/6pRNDb0yStxlwhavn2ZqYRVFOJ5.jpg differ diff --git a/upload/6pjXmstr4q87xsa6lhV8co3lD5V.jpg b/upload/6pjXmstr4q87xsa6lhV8co3lD5V.jpg new file mode 100644 index 0000000..81f29d7 Binary files /dev/null and b/upload/6pjXmstr4q87xsa6lhV8co3lD5V.jpg differ diff --git a/upload/6qbJIdJNTiEjxAzna5ikN7CiI8F.jpg b/upload/6qbJIdJNTiEjxAzna5ikN7CiI8F.jpg new file mode 100644 index 0000000..49763b2 Binary files /dev/null and b/upload/6qbJIdJNTiEjxAzna5ikN7CiI8F.jpg differ diff --git a/upload/6s2jLHe1hsV7xRtjSIOflXUG0v0.jpg b/upload/6s2jLHe1hsV7xRtjSIOflXUG0v0.jpg new file mode 100644 index 0000000..bc3365d Binary files /dev/null and b/upload/6s2jLHe1hsV7xRtjSIOflXUG0v0.jpg differ diff --git a/upload/6soWhimSSO5en971MEXui9diirXlogOrPKmsEn.jpg b/upload/6soWhimSSO5en971MEXui9diirXlogOrPKmsEn.jpg new file mode 100644 index 0000000..3ba5084 Binary files /dev/null and b/upload/6soWhimSSO5en971MEXui9diirXlogOrPKmsEn.jpg differ diff --git a/upload/6tHdMaW2YN6WKNNVWMNCQTiJQXI.jpg b/upload/6tHdMaW2YN6WKNNVWMNCQTiJQXI.jpg new file mode 100644 index 0000000..a4c8bfa Binary files /dev/null and b/upload/6tHdMaW2YN6WKNNVWMNCQTiJQXI.jpg differ diff --git a/upload/6vdSLP8tyvS99hpnQ6MeajbgGXC.jpg b/upload/6vdSLP8tyvS99hpnQ6MeajbgGXC.jpg new file mode 100644 index 0000000..8b1588b Binary files /dev/null and b/upload/6vdSLP8tyvS99hpnQ6MeajbgGXC.jpg differ diff --git a/upload/6z2rrDHzcufs9NNWsDkYjnTA5gU.jpg b/upload/6z2rrDHzcufs9NNWsDkYjnTA5gU.jpg new file mode 100644 index 0000000..8253dd7 Binary files /dev/null and b/upload/6z2rrDHzcufs9NNWsDkYjnTA5gU.jpg differ diff --git a/upload/703496_enders-game-2013-backgrounds-wallpaper-high-definition-high_1920x1200_h.jpg b/upload/703496_enders-game-2013-backgrounds-wallpaper-high-definition-high_1920x1200_h.jpg new file mode 100644 index 0000000..6c52de4 Binary files /dev/null and b/upload/703496_enders-game-2013-backgrounds-wallpaper-high-definition-high_1920x1200_h.jpg differ diff --git a/upload/71235465e07f4f271ed638894c250db12f776b39_s2_n2.jpg b/upload/71235465e07f4f271ed638894c250db12f776b39_s2_n2.jpg new file mode 100644 index 0000000..fd2ae0a Binary files /dev/null and b/upload/71235465e07f4f271ed638894c250db12f776b39_s2_n2.jpg differ diff --git a/upload/7317d179268a23b1553c4f9c2780bc2f.png b/upload/7317d179268a23b1553c4f9c2780bc2f.png new file mode 100644 index 0000000..aee8deb Binary files /dev/null and b/upload/7317d179268a23b1553c4f9c2780bc2f.png differ diff --git a/upload/73255-11.jpg b/upload/73255-11.jpg new file mode 100644 index 0000000..d901633 Binary files /dev/null and b/upload/73255-11.jpg differ diff --git a/upload/74852-2.jpg b/upload/74852-2.jpg new file mode 100644 index 0000000..d458fb9 Binary files /dev/null and b/upload/74852-2.jpg differ diff --git a/upload/778080.jpg b/upload/778080.jpg new file mode 100644 index 0000000..b68ee2d Binary files /dev/null and b/upload/778080.jpg differ diff --git a/upload/78261-3.jpg b/upload/78261-3.jpg new file mode 100644 index 0000000..8918115 Binary files /dev/null and b/upload/78261-3.jpg differ diff --git a/upload/78261-4.jpg b/upload/78261-4.jpg new file mode 100644 index 0000000..71a129f Binary files /dev/null and b/upload/78261-4.jpg differ diff --git a/upload/78874-2.jpg b/upload/78874-2.jpg new file mode 100644 index 0000000..14b0e3a Binary files /dev/null and b/upload/78874-2.jpg differ diff --git a/upload/79066-1.jpg b/upload/79066-1.jpg new file mode 100644 index 0000000..f63a21e Binary files /dev/null and b/upload/79066-1.jpg differ diff --git a/upload/79066-2.jpg b/upload/79066-2.jpg new file mode 100644 index 0000000..36b9604 Binary files /dev/null and b/upload/79066-2.jpg differ diff --git a/upload/794092.jpg b/upload/794092.jpg new file mode 100644 index 0000000..124e425 Binary files /dev/null and b/upload/794092.jpg differ diff --git a/upload/79525-1.jpg b/upload/79525-1.jpg new file mode 100644 index 0000000..af01079 Binary files /dev/null and b/upload/79525-1.jpg differ diff --git a/upload/79525-2.jpg b/upload/79525-2.jpg new file mode 100644 index 0000000..08d4f7c Binary files /dev/null and b/upload/79525-2.jpg differ diff --git a/upload/797860.jpg b/upload/797860.jpg new file mode 100644 index 0000000..7e5454d Binary files /dev/null and b/upload/797860.jpg differ diff --git a/upload/79824-11.jpg b/upload/79824-11.jpg new file mode 100644 index 0000000..fb55ed2 Binary files /dev/null and b/upload/79824-11.jpg differ diff --git a/upload/79824-6.jpg b/upload/79824-6.jpg new file mode 100644 index 0000000..35a065a Binary files /dev/null and b/upload/79824-6.jpg differ diff --git a/upload/79FyOjFXevK5DjOKxaYkU7EKAvX.jpg b/upload/79FyOjFXevK5DjOKxaYkU7EKAvX.jpg new file mode 100644 index 0000000..5476088 Binary files /dev/null and b/upload/79FyOjFXevK5DjOKxaYkU7EKAvX.jpg differ diff --git a/upload/7C921eWK06n12c1miRXnYoEu5Yv.jpg b/upload/7C921eWK06n12c1miRXnYoEu5Yv.jpg new file mode 100644 index 0000000..654b2c0 Binary files /dev/null and b/upload/7C921eWK06n12c1miRXnYoEu5Yv.jpg differ diff --git a/upload/7EPtIO.jpg b/upload/7EPtIO.jpg new file mode 100644 index 0000000..006ab66 Binary files /dev/null and b/upload/7EPtIO.jpg differ diff --git a/upload/7EslmAX1Pz0HGwpa8hnVAqiOWf9.jpg b/upload/7EslmAX1Pz0HGwpa8hnVAqiOWf9.jpg new file mode 100644 index 0000000..2c0eb42 Binary files /dev/null and b/upload/7EslmAX1Pz0HGwpa8hnVAqiOWf9.jpg differ diff --git a/upload/7FsyA8CYmRstcWkYXZK187tHDDf.jpg b/upload/7FsyA8CYmRstcWkYXZK187tHDDf.jpg new file mode 100644 index 0000000..547dd5b Binary files /dev/null and b/upload/7FsyA8CYmRstcWkYXZK187tHDDf.jpg differ diff --git a/upload/7GaIhvhZ9szV0AdYgejtZ8fXaEB.jpg b/upload/7GaIhvhZ9szV0AdYgejtZ8fXaEB.jpg new file mode 100644 index 0000000..2093ab6 Binary files /dev/null and b/upload/7GaIhvhZ9szV0AdYgejtZ8fXaEB.jpg differ diff --git a/upload/7GrpqAs0oDcFcwFwyygnUI7BrZA.jpg b/upload/7GrpqAs0oDcFcwFwyygnUI7BrZA.jpg new file mode 100644 index 0000000..630995d Binary files /dev/null and b/upload/7GrpqAs0oDcFcwFwyygnUI7BrZA.jpg differ diff --git a/upload/7KGdTzKux4fp5sW7hUM33NWqBU1.jpg b/upload/7KGdTzKux4fp5sW7hUM33NWqBU1.jpg new file mode 100644 index 0000000..c08edea Binary files /dev/null and b/upload/7KGdTzKux4fp5sW7hUM33NWqBU1.jpg differ diff --git a/upload/7LUNEyjaXXsL6da08dQkY45TJ5Q.jpg b/upload/7LUNEyjaXXsL6da08dQkY45TJ5Q.jpg new file mode 100644 index 0000000..105f1b9 Binary files /dev/null and b/upload/7LUNEyjaXXsL6da08dQkY45TJ5Q.jpg differ diff --git a/upload/7LW4Ukn8f474O74ZbTM5MFrFf2u.jpg b/upload/7LW4Ukn8f474O74ZbTM5MFrFf2u.jpg new file mode 100644 index 0000000..5a39dfa Binary files /dev/null and b/upload/7LW4Ukn8f474O74ZbTM5MFrFf2u.jpg differ diff --git a/upload/7LcPNUiMZhBGvFyGpsh52hUjUfv.jpg b/upload/7LcPNUiMZhBGvFyGpsh52hUjUfv.jpg new file mode 100644 index 0000000..bdf7aab Binary files /dev/null and b/upload/7LcPNUiMZhBGvFyGpsh52hUjUfv.jpg differ diff --git a/upload/7MysX1TaBFkqxAi4_5a89b0096bf86.jpg b/upload/7MysX1TaBFkqxAi4_5a89b0096bf86.jpg new file mode 100644 index 0000000..45f495e Binary files /dev/null and b/upload/7MysX1TaBFkqxAi4_5a89b0096bf86.jpg differ diff --git a/upload/7UDntdU0EUhJASvmdSE5bKvpPUz.jpg b/upload/7UDntdU0EUhJASvmdSE5bKvpPUz.jpg new file mode 100644 index 0000000..7ae14f1 Binary files /dev/null and b/upload/7UDntdU0EUhJASvmdSE5bKvpPUz.jpg differ diff --git a/upload/7UIP0uLzv5mXNYUasLbjDV6Mawd.jpg b/upload/7UIP0uLzv5mXNYUasLbjDV6Mawd.jpg new file mode 100644 index 0000000..607508b Binary files /dev/null and b/upload/7UIP0uLzv5mXNYUasLbjDV6Mawd.jpg differ diff --git a/upload/7WajfTWfq7raotXEz9OsS8JIJrs.jpg b/upload/7WajfTWfq7raotXEz9OsS8JIJrs.jpg new file mode 100644 index 0000000..bc52ee5 Binary files /dev/null and b/upload/7WajfTWfq7raotXEz9OsS8JIJrs.jpg differ diff --git a/upload/7ZP2HwXYbHszqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg b/upload/7ZP2HwXYbHszqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg new file mode 100644 index 0000000..722c5bd Binary files /dev/null and b/upload/7ZP2HwXYbHszqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg differ diff --git a/upload/7bQNyDNvnBMAkRw5Hq9An0CUh0r.jpg b/upload/7bQNyDNvnBMAkRw5Hq9An0CUh0r.jpg new file mode 100644 index 0000000..748ebac Binary files /dev/null and b/upload/7bQNyDNvnBMAkRw5Hq9An0CUh0r.jpg differ diff --git a/upload/7dW4BobKP5ijWCLnbhxvcogVvHs.jpg b/upload/7dW4BobKP5ijWCLnbhxvcogVvHs.jpg new file mode 100644 index 0000000..eaac0e0 Binary files /dev/null and b/upload/7dW4BobKP5ijWCLnbhxvcogVvHs.jpg differ diff --git a/upload/7dzngS8pLkGJpyeskCFcjPO9qLF.jpg b/upload/7dzngS8pLkGJpyeskCFcjPO9qLF.jpg new file mode 100644 index 0000000..1f1e254 Binary files /dev/null and b/upload/7dzngS8pLkGJpyeskCFcjPO9qLF.jpg differ diff --git a/upload/7gfDVfaw0VaIkUGiEH13o3TIC7A.jpg b/upload/7gfDVfaw0VaIkUGiEH13o3TIC7A.jpg new file mode 100644 index 0000000..b23599c Binary files /dev/null and b/upload/7gfDVfaw0VaIkUGiEH13o3TIC7A.jpg differ diff --git a/upload/7hFoG169FJbLluGRj0PENrz4oLI.jpg b/upload/7hFoG169FJbLluGRj0PENrz4oLI.jpg new file mode 100644 index 0000000..0c6bcf8 Binary files /dev/null and b/upload/7hFoG169FJbLluGRj0PENrz4oLI.jpg differ diff --git a/upload/7jdBqZfJF5xJzaByGbLphjOrGjP.jpg b/upload/7jdBqZfJF5xJzaByGbLphjOrGjP.jpg new file mode 100644 index 0000000..f6c5ba3 Binary files /dev/null and b/upload/7jdBqZfJF5xJzaByGbLphjOrGjP.jpg differ diff --git a/upload/7ksHQG9qbEyPBBTAe8NfJVAipmJ.jpg b/upload/7ksHQG9qbEyPBBTAe8NfJVAipmJ.jpg new file mode 100644 index 0000000..565095a Binary files /dev/null and b/upload/7ksHQG9qbEyPBBTAe8NfJVAipmJ.jpg differ diff --git a/upload/7ml64bPRiYSmCDXXdBlqop9usK1.jpg b/upload/7ml64bPRiYSmCDXXdBlqop9usK1.jpg new file mode 100644 index 0000000..42a49a1 Binary files /dev/null and b/upload/7ml64bPRiYSmCDXXdBlqop9usK1.jpg differ diff --git a/upload/7ozBHvOoDDi4UcBWbz3N7SGOKdm.jpg b/upload/7ozBHvOoDDi4UcBWbz3N7SGOKdm.jpg new file mode 100644 index 0000000..9763586 Binary files /dev/null and b/upload/7ozBHvOoDDi4UcBWbz3N7SGOKdm.jpg differ diff --git a/upload/7rRwm8d2gM0JTZCvMj487nUBZtg.jpg b/upload/7rRwm8d2gM0JTZCvMj487nUBZtg.jpg new file mode 100644 index 0000000..a4f3dd8 Binary files /dev/null and b/upload/7rRwm8d2gM0JTZCvMj487nUBZtg.jpg differ diff --git a/upload/7wI0B70cJFVcWOZ3kib96VTQDN8.jpg b/upload/7wI0B70cJFVcWOZ3kib96VTQDN8.jpg new file mode 100644 index 0000000..0d54ff8 Binary files /dev/null and b/upload/7wI0B70cJFVcWOZ3kib96VTQDN8.jpg differ diff --git a/upload/7yZBnIzbRN7GM7ftIgnU3Zm1cVx.jpg b/upload/7yZBnIzbRN7GM7ftIgnU3Zm1cVx.jpg new file mode 100644 index 0000000..191b434 Binary files /dev/null and b/upload/7yZBnIzbRN7GM7ftIgnU3Zm1cVx.jpg differ diff --git a/upload/7zootUc1mgJTMUeUFn9xN1Q1nG9.jpg b/upload/7zootUc1mgJTMUeUFn9xN1Q1nG9.jpg new file mode 100644 index 0000000..a31afe1 Binary files /dev/null and b/upload/7zootUc1mgJTMUeUFn9xN1Q1nG9.jpg differ diff --git a/upload/801960.jpg b/upload/801960.jpg new file mode 100644 index 0000000..8ceee1a Binary files /dev/null and b/upload/801960.jpg differ diff --git a/upload/807obqNbWPZmjSeZ5CiddnLDsO3.jpg b/upload/807obqNbWPZmjSeZ5CiddnLDsO3.jpg new file mode 100644 index 0000000..bf65d40 Binary files /dev/null and b/upload/807obqNbWPZmjSeZ5CiddnLDsO3.jpg differ diff --git a/upload/80d10YU1ulzYFva4LbLQISfXJRf.jpg b/upload/80d10YU1ulzYFva4LbLQISfXJRf.jpg new file mode 100644 index 0000000..5ba4555 Binary files /dev/null and b/upload/80d10YU1ulzYFva4LbLQISfXJRf.jpg differ diff --git a/upload/810084.jpg b/upload/810084.jpg new file mode 100644 index 0000000..1941af6 Binary files /dev/null and b/upload/810084.jpg differ diff --git a/upload/81189-10.jpg b/upload/81189-10.jpg new file mode 100644 index 0000000..7836940 Binary files /dev/null and b/upload/81189-10.jpg differ diff --git a/upload/81189-21.jpg b/upload/81189-21.jpg new file mode 100644 index 0000000..b7272af Binary files /dev/null and b/upload/81189-21.jpg differ diff --git a/upload/82459-6.jpg b/upload/82459-6.jpg new file mode 100644 index 0000000..cf421e9 Binary files /dev/null and b/upload/82459-6.jpg differ diff --git a/upload/836809.jpg b/upload/836809.jpg new file mode 100644 index 0000000..412f990 Binary files /dev/null and b/upload/836809.jpg differ diff --git a/upload/836810.jpg b/upload/836810.jpg new file mode 100644 index 0000000..56c797d Binary files /dev/null and b/upload/836810.jpg differ diff --git a/upload/836814.jpg b/upload/836814.jpg new file mode 100644 index 0000000..5ec3a74 Binary files /dev/null and b/upload/836814.jpg differ diff --git a/upload/84QWF39Gk9xWj9GOqPdvOmkUDQc.jpg b/upload/84QWF39Gk9xWj9GOqPdvOmkUDQc.jpg new file mode 100644 index 0000000..bc8793f Binary files /dev/null and b/upload/84QWF39Gk9xWj9GOqPdvOmkUDQc.jpg differ diff --git a/upload/84f2a725fc5214eb22a0e79b1a91e65e8d3d332f2f68f88e1bcb0246bfca58ea._RI_V_TTW_.jpg b/upload/84f2a725fc5214eb22a0e79b1a91e65e8d3d332f2f68f88e1bcb0246bfca58ea._RI_V_TTW_.jpg new file mode 100644 index 0000000..52e5d1e Binary files /dev/null and b/upload/84f2a725fc5214eb22a0e79b1a91e65e8d3d332f2f68f88e1bcb0246bfca58ea._RI_V_TTW_.jpg differ diff --git a/upload/85852.gif b/upload/85852.gif new file mode 100644 index 0000000..d6a7ca3 Binary files /dev/null and b/upload/85852.gif differ diff --git a/upload/85a5513f7f97869a808fd6a8c6785765.jpg b/upload/85a5513f7f97869a808fd6a8c6785765.jpg new file mode 100644 index 0000000..95bdc29 Binary files /dev/null and b/upload/85a5513f7f97869a808fd6a8c6785765.jpg differ diff --git a/upload/869204.jpg b/upload/869204.jpg new file mode 100644 index 0000000..40c5232 Binary files /dev/null and b/upload/869204.jpg differ diff --git a/upload/86b09bfc7eec21f423.jpg b/upload/86b09bfc7eec21f423.jpg new file mode 100644 index 0000000..655c5d5 Binary files /dev/null and b/upload/86b09bfc7eec21f423.jpg differ diff --git a/upload/86moT8cxSXjyWotA500cmNUV8Ze.jpg b/upload/86moT8cxSXjyWotA500cmNUV8Ze.jpg new file mode 100644 index 0000000..6e54a79 Binary files /dev/null and b/upload/86moT8cxSXjyWotA500cmNUV8Ze.jpg differ diff --git a/upload/86moT8cxSXjyWotA500cmNUV8Ze_Q7Hw0yo.jpg b/upload/86moT8cxSXjyWotA500cmNUV8Ze_Q7Hw0yo.jpg new file mode 100644 index 0000000..6e3ce45 Binary files /dev/null and b/upload/86moT8cxSXjyWotA500cmNUV8Ze_Q7Hw0yo.jpg differ diff --git a/upload/87671.jpg b/upload/87671.jpg new file mode 100644 index 0000000..e6c148d Binary files /dev/null and b/upload/87671.jpg differ diff --git a/upload/89356edfce3523987674ff0585cc2e3e.jpg b/upload/89356edfce3523987674ff0585cc2e3e.jpg new file mode 100644 index 0000000..66b77e1 Binary files /dev/null and b/upload/89356edfce3523987674ff0585cc2e3e.jpg differ diff --git a/upload/8BTsTfln4jlQrLXUBquXJ0ASQy9.jpg b/upload/8BTsTfln4jlQrLXUBquXJ0ASQy9.jpg new file mode 100644 index 0000000..85717a1 Binary files /dev/null and b/upload/8BTsTfln4jlQrLXUBquXJ0ASQy9.jpg differ diff --git a/upload/8BTz7IHbpXhXjv0mTu006PdTb7f.jpg b/upload/8BTz7IHbpXhXjv0mTu006PdTb7f.jpg new file mode 100644 index 0000000..5c22bc5 Binary files /dev/null and b/upload/8BTz7IHbpXhXjv0mTu006PdTb7f.jpg differ diff --git a/upload/8BeMLO3VRBNbGMj5h6F7raoMLYq.jpg b/upload/8BeMLO3VRBNbGMj5h6F7raoMLYq.jpg new file mode 100644 index 0000000..18cee94 Binary files /dev/null and b/upload/8BeMLO3VRBNbGMj5h6F7raoMLYq.jpg differ diff --git a/upload/8CIKPdKO2PB0VZZSqu4LX2JE85l.jpg b/upload/8CIKPdKO2PB0VZZSqu4LX2JE85l.jpg new file mode 100644 index 0000000..c756ffd Binary files /dev/null and b/upload/8CIKPdKO2PB0VZZSqu4LX2JE85l.jpg differ diff --git a/upload/8JbmIu4Uvegaf7rOnyiO7PbuX2A.jpg b/upload/8JbmIu4Uvegaf7rOnyiO7PbuX2A.jpg new file mode 100644 index 0000000..6e16f08 Binary files /dev/null and b/upload/8JbmIu4Uvegaf7rOnyiO7PbuX2A.jpg differ diff --git a/upload/8JbmIu4Uvegaf7rOnyiO7PbuX2A_Fu1inu8.jpg b/upload/8JbmIu4Uvegaf7rOnyiO7PbuX2A_Fu1inu8.jpg new file mode 100644 index 0000000..6e16f08 Binary files /dev/null and b/upload/8JbmIu4Uvegaf7rOnyiO7PbuX2A_Fu1inu8.jpg differ diff --git a/upload/8K9qHeM6G6QjQN0C5XKFGvK5lzM.jpg b/upload/8K9qHeM6G6QjQN0C5XKFGvK5lzM.jpg new file mode 100644 index 0000000..8763044 Binary files /dev/null and b/upload/8K9qHeM6G6QjQN0C5XKFGvK5lzM.jpg differ diff --git a/upload/8Mhp3QzVi64CrdzlsGl6CcnqMcs.jpg b/upload/8Mhp3QzVi64CrdzlsGl6CcnqMcs.jpg new file mode 100644 index 0000000..3be80e4 Binary files /dev/null and b/upload/8Mhp3QzVi64CrdzlsGl6CcnqMcs.jpg differ diff --git a/upload/8NT7Tnq9s0Z4CRbz3WQR15wHCiQ.jpg b/upload/8NT7Tnq9s0Z4CRbz3WQR15wHCiQ.jpg new file mode 100644 index 0000000..2295aac Binary files /dev/null and b/upload/8NT7Tnq9s0Z4CRbz3WQR15wHCiQ.jpg differ diff --git a/upload/8NtvC5Z-eragon-wallpapers.jpg b/upload/8NtvC5Z-eragon-wallpapers.jpg new file mode 100644 index 0000000..c8c099a Binary files /dev/null and b/upload/8NtvC5Z-eragon-wallpapers.jpg differ diff --git a/upload/8Pb5BfvzW03hQZsnHAHM3qwNdQ1.jpg b/upload/8Pb5BfvzW03hQZsnHAHM3qwNdQ1.jpg new file mode 100644 index 0000000..fff2824 Binary files /dev/null and b/upload/8Pb5BfvzW03hQZsnHAHM3qwNdQ1.jpg differ diff --git a/upload/8PnECV.png b/upload/8PnECV.png new file mode 100644 index 0000000..5497bca Binary files /dev/null and b/upload/8PnECV.png differ diff --git a/upload/8Qtj9Sfl7zMP9IjnE7zIBFvRpY8.jpg b/upload/8Qtj9Sfl7zMP9IjnE7zIBFvRpY8.jpg new file mode 100644 index 0000000..7ec8e7c Binary files /dev/null and b/upload/8Qtj9Sfl7zMP9IjnE7zIBFvRpY8.jpg differ diff --git a/upload/8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg b/upload/8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg new file mode 100644 index 0000000..17af881 Binary files /dev/null and b/upload/8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg differ diff --git a/upload/8SxJQmzk7ayeLEWnXvG2T2DC6XQ.jpg b/upload/8SxJQmzk7ayeLEWnXvG2T2DC6XQ.jpg new file mode 100644 index 0000000..d7b060e Binary files /dev/null and b/upload/8SxJQmzk7ayeLEWnXvG2T2DC6XQ.jpg differ diff --git a/upload/8XV52TPmJH7t53SthRgLXh3x3hs.jpg b/upload/8XV52TPmJH7t53SthRgLXh3x3hs.jpg new file mode 100644 index 0000000..13e287e Binary files /dev/null and b/upload/8XV52TPmJH7t53SthRgLXh3x3hs.jpg differ diff --git a/upload/8YH3K39aOsCtUqJy8VP6kjeAalP.jpg b/upload/8YH3K39aOsCtUqJy8VP6kjeAalP.jpg new file mode 100644 index 0000000..096c57f Binary files /dev/null and b/upload/8YH3K39aOsCtUqJy8VP6kjeAalP.jpg differ diff --git a/upload/8ZfZnSeiwwlSfWrmoC1nAtuozUI.jpg b/upload/8ZfZnSeiwwlSfWrmoC1nAtuozUI.jpg new file mode 100644 index 0000000..d1cd5f9 Binary files /dev/null and b/upload/8ZfZnSeiwwlSfWrmoC1nAtuozUI.jpg differ diff --git a/upload/8aoNKa1zDnx1jrsBCJbQ2fc4hVo.jpg b/upload/8aoNKa1zDnx1jrsBCJbQ2fc4hVo.jpg new file mode 100644 index 0000000..75908bb Binary files /dev/null and b/upload/8aoNKa1zDnx1jrsBCJbQ2fc4hVo.jpg differ diff --git a/upload/8awYfSaV2hS7lhZigdZJjmmpHSe.jpg b/upload/8awYfSaV2hS7lhZigdZJjmmpHSe.jpg new file mode 100644 index 0000000..74d189d Binary files /dev/null and b/upload/8awYfSaV2hS7lhZigdZJjmmpHSe.jpg differ diff --git a/upload/8c8oxC1pfgnSiEPh7MzFJmgo8hK.jpg b/upload/8c8oxC1pfgnSiEPh7MzFJmgo8hK.jpg new file mode 100644 index 0000000..d92035d Binary files /dev/null and b/upload/8c8oxC1pfgnSiEPh7MzFJmgo8hK.jpg differ diff --git a/upload/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg b/upload/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg new file mode 100644 index 0000000..1856c8a Binary files /dev/null and b/upload/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg differ diff --git a/upload/8i6JXTQWlC979525-2.jpg b/upload/8i6JXTQWlC979525-2.jpg new file mode 100644 index 0000000..08d4f7c Binary files /dev/null and b/upload/8i6JXTQWlC979525-2.jpg differ diff --git a/upload/8jdJaATqwSJHJdEk3MeNPYIX3zV.jpg b/upload/8jdJaATqwSJHJdEk3MeNPYIX3zV.jpg new file mode 100644 index 0000000..9873d72 Binary files /dev/null and b/upload/8jdJaATqwSJHJdEk3MeNPYIX3zV.jpg differ diff --git a/upload/8kPozGb4BDrcWBSsGPrkULG2tP9.jpg b/upload/8kPozGb4BDrcWBSsGPrkULG2tP9.jpg new file mode 100644 index 0000000..dbbf9b9 Binary files /dev/null and b/upload/8kPozGb4BDrcWBSsGPrkULG2tP9.jpg differ diff --git a/upload/8lWNClCvZ5l7e21LM7ORRqa8v5S.jpg b/upload/8lWNClCvZ5l7e21LM7ORRqa8v5S.jpg new file mode 100644 index 0000000..c930c23 Binary files /dev/null and b/upload/8lWNClCvZ5l7e21LM7ORRqa8v5S.jpg differ diff --git a/upload/8moTOzunF7p40oR5XhlDvJckOSW.jpg b/upload/8moTOzunF7p40oR5XhlDvJckOSW.jpg new file mode 100644 index 0000000..4daab88 Binary files /dev/null and b/upload/8moTOzunF7p40oR5XhlDvJckOSW.jpg differ diff --git a/upload/8mx8Rs7C9YYaIWOFk9bQvCO3GHD.jpg b/upload/8mx8Rs7C9YYaIWOFk9bQvCO3GHD.jpg new file mode 100644 index 0000000..4951c32 Binary files /dev/null and b/upload/8mx8Rs7C9YYaIWOFk9bQvCO3GHD.jpg differ diff --git a/upload/8pD8Z5TqpJzzvOeEce15ENT288k.jpg b/upload/8pD8Z5TqpJzzvOeEce15ENT288k.jpg new file mode 100644 index 0000000..dd3e6ce Binary files /dev/null and b/upload/8pD8Z5TqpJzzvOeEce15ENT288k.jpg differ diff --git a/upload/8qOzSPUWlBGfteuKFWJJTRpiFxI.jpg b/upload/8qOzSPUWlBGfteuKFWJJTRpiFxI.jpg new file mode 100644 index 0000000..17c11b9 Binary files /dev/null and b/upload/8qOzSPUWlBGfteuKFWJJTRpiFxI.jpg differ diff --git a/upload/8rOpJuby0HBjaphddR8CAF3i35.jpg b/upload/8rOpJuby0HBjaphddR8CAF3i35.jpg new file mode 100644 index 0000000..18c6b43 Binary files /dev/null and b/upload/8rOpJuby0HBjaphddR8CAF3i35.jpg differ diff --git a/upload/8snreMaPUZGebY97SaCTA4bWq9o.jpg b/upload/8snreMaPUZGebY97SaCTA4bWq9o.jpg new file mode 100644 index 0000000..f9862e6 Binary files /dev/null and b/upload/8snreMaPUZGebY97SaCTA4bWq9o.jpg differ diff --git a/upload/8u4veueqCrCczz1ktTCjavIVUiV.jpg b/upload/8u4veueqCrCczz1ktTCjavIVUiV.jpg new file mode 100644 index 0000000..83fa399 Binary files /dev/null and b/upload/8u4veueqCrCczz1ktTCjavIVUiV.jpg differ diff --git a/upload/8xs6YMhnwwqRpMxk6jSgIkcsh3j.jpg b/upload/8xs6YMhnwwqRpMxk6jSgIkcsh3j.jpg new file mode 100644 index 0000000..fffe38c Binary files /dev/null and b/upload/8xs6YMhnwwqRpMxk6jSgIkcsh3j.jpg differ diff --git a/upload/900250.jpg b/upload/900250.jpg new file mode 100644 index 0000000..69e0188 Binary files /dev/null and b/upload/900250.jpg differ diff --git a/upload/90DdoEStzeObs96fsYf4GG544iN.jpg b/upload/90DdoEStzeObs96fsYf4GG544iN.jpg new file mode 100644 index 0000000..82fcc66 Binary files /dev/null and b/upload/90DdoEStzeObs96fsYf4GG544iN.jpg differ diff --git a/upload/95d33c270f66a239c9d4576696a263c4.jpg b/upload/95d33c270f66a239c9d4576696a263c4.jpg new file mode 100644 index 0000000..9079eb8 Binary files /dev/null and b/upload/95d33c270f66a239c9d4576696a263c4.jpg differ diff --git a/upload/96XilLzI7bijsCG4l7oW6I62oad.jpg b/upload/96XilLzI7bijsCG4l7oW6I62oad.jpg new file mode 100644 index 0000000..e1d91ba Binary files /dev/null and b/upload/96XilLzI7bijsCG4l7oW6I62oad.jpg differ diff --git a/upload/96dD92MCJoKYvsGh2JTs5pnT2sN.jpg b/upload/96dD92MCJoKYvsGh2JTs5pnT2sN.jpg new file mode 100644 index 0000000..9eba721 Binary files /dev/null and b/upload/96dD92MCJoKYvsGh2JTs5pnT2sN.jpg differ diff --git a/upload/96pcxB7O2RFSR2BGMwSxyLWASh3.jpg b/upload/96pcxB7O2RFSR2BGMwSxyLWASh3.jpg new file mode 100644 index 0000000..eaf9f9a Binary files /dev/null and b/upload/96pcxB7O2RFSR2BGMwSxyLWASh3.jpg differ diff --git a/upload/974553.jpg b/upload/974553.jpg new file mode 100644 index 0000000..aa56eb3 Binary files /dev/null and b/upload/974553.jpg differ diff --git a/upload/974563.jpg b/upload/974563.jpg new file mode 100644 index 0000000..e179dba Binary files /dev/null and b/upload/974563.jpg differ diff --git a/upload/98kn18zPwVYlBzRx0w5n4nKG9MJ.jpg b/upload/98kn18zPwVYlBzRx0w5n4nKG9MJ.jpg new file mode 100644 index 0000000..7a24dd0 Binary files /dev/null and b/upload/98kn18zPwVYlBzRx0w5n4nKG9MJ.jpg differ diff --git a/upload/98vvvvvjImluri4xZxLCo2E1gb9.jpg b/upload/98vvvvvjImluri4xZxLCo2E1gb9.jpg new file mode 100644 index 0000000..ec38bcd Binary files /dev/null and b/upload/98vvvvvjImluri4xZxLCo2E1gb9.jpg differ diff --git a/upload/99QDSTfr9bOqv1kbn8YRlynbgU.jpg b/upload/99QDSTfr9bOqv1kbn8YRlynbgU.jpg new file mode 100644 index 0000000..3bdc034 Binary files /dev/null and b/upload/99QDSTfr9bOqv1kbn8YRlynbgU.jpg differ diff --git a/upload/9AvYdiDWutgsy67klIMVXImmv2G.jpg b/upload/9AvYdiDWutgsy67klIMVXImmv2G.jpg new file mode 100644 index 0000000..54ab6d6 Binary files /dev/null and b/upload/9AvYdiDWutgsy67klIMVXImmv2G.jpg differ diff --git a/upload/9BUvLUz1GhbNpcyQRyZm1HNqMq4.jpg b/upload/9BUvLUz1GhbNpcyQRyZm1HNqMq4.jpg new file mode 100644 index 0000000..d6821dd Binary files /dev/null and b/upload/9BUvLUz1GhbNpcyQRyZm1HNqMq4.jpg differ diff --git a/upload/9BjYQlc72Jky80ffc0XHtQT7ibP.jpg b/upload/9BjYQlc72Jky80ffc0XHtQT7ibP.jpg new file mode 100644 index 0000000..06b6ff8 Binary files /dev/null and b/upload/9BjYQlc72Jky80ffc0XHtQT7ibP.jpg differ diff --git a/upload/9BsCIVc3tLhPXE4UK0PtZojfkCR.jpg b/upload/9BsCIVc3tLhPXE4UK0PtZojfkCR.jpg new file mode 100644 index 0000000..3e5f684 Binary files /dev/null and b/upload/9BsCIVc3tLhPXE4UK0PtZojfkCR.jpg differ diff --git a/upload/9CpYHHtykjQZowRE2TZyYJMhZ9l.jpg b/upload/9CpYHHtykjQZowRE2TZyYJMhZ9l.jpg new file mode 100644 index 0000000..72b0a94 Binary files /dev/null and b/upload/9CpYHHtykjQZowRE2TZyYJMhZ9l.jpg differ diff --git a/upload/9DeGfFIqjph5CBFVQrD6wv9S7rR.jpg b/upload/9DeGfFIqjph5CBFVQrD6wv9S7rR.jpg new file mode 100644 index 0000000..0ce793f Binary files /dev/null and b/upload/9DeGfFIqjph5CBFVQrD6wv9S7rR.jpg differ diff --git a/upload/9DeGfFIqjph5CBFVQrD6wv9S7rR_uIzJMyz.jpg b/upload/9DeGfFIqjph5CBFVQrD6wv9S7rR_uIzJMyz.jpg new file mode 100644 index 0000000..94fdd97 Binary files /dev/null and b/upload/9DeGfFIqjph5CBFVQrD6wv9S7rR_uIzJMyz.jpg differ diff --git a/upload/9E2y5Q7WlCVNEhP5GiVTjhEhx1o.jpg b/upload/9E2y5Q7WlCVNEhP5GiVTjhEhx1o.jpg new file mode 100644 index 0000000..8f9edbd Binary files /dev/null and b/upload/9E2y5Q7WlCVNEhP5GiVTjhEhx1o.jpg differ diff --git a/upload/9FzwMOEbsEx1iSeDUFx9oNjtNkx.jpg b/upload/9FzwMOEbsEx1iSeDUFx9oNjtNkx.jpg new file mode 100644 index 0000000..f33bd72 Binary files /dev/null and b/upload/9FzwMOEbsEx1iSeDUFx9oNjtNkx.jpg differ diff --git a/upload/9JFjc6R9cbuDQRXtajZRNgW74cY.jpg b/upload/9JFjc6R9cbuDQRXtajZRNgW74cY.jpg new file mode 100644 index 0000000..dca5624 Binary files /dev/null and b/upload/9JFjc6R9cbuDQRXtajZRNgW74cY.jpg differ diff --git a/upload/9JKeLWLA4PigC000Zqt4ZuTndNK.jpg b/upload/9JKeLWLA4PigC000Zqt4ZuTndNK.jpg new file mode 100644 index 0000000..8174cc7 Binary files /dev/null and b/upload/9JKeLWLA4PigC000Zqt4ZuTndNK.jpg differ diff --git a/upload/9QtX1frpyExgOQxygnLYN0HXZAn.jpg b/upload/9QtX1frpyExgOQxygnLYN0HXZAn.jpg new file mode 100644 index 0000000..4a47304 Binary files /dev/null and b/upload/9QtX1frpyExgOQxygnLYN0HXZAn.jpg differ diff --git a/upload/9R2FuGT0BeZl8usfsfqIcO7KK7v.jpg b/upload/9R2FuGT0BeZl8usfsfqIcO7KK7v.jpg new file mode 100644 index 0000000..560b835 Binary files /dev/null and b/upload/9R2FuGT0BeZl8usfsfqIcO7KK7v.jpg differ diff --git a/upload/9SpWRdmORNVi1cYLxTU6AayLb0T.jpg b/upload/9SpWRdmORNVi1cYLxTU6AayLb0T.jpg new file mode 100644 index 0000000..a25a765 Binary files /dev/null and b/upload/9SpWRdmORNVi1cYLxTU6AayLb0T.jpg differ diff --git a/upload/9TtNnxJ5kzHLx1BzBqTmJeVoPr8.jpg b/upload/9TtNnxJ5kzHLx1BzBqTmJeVoPr8.jpg new file mode 100644 index 0000000..4a8ae1e Binary files /dev/null and b/upload/9TtNnxJ5kzHLx1BzBqTmJeVoPr8.jpg differ diff --git a/upload/9Z5UCwoygKb66I072TbT8Yd2Vuo.jpg b/upload/9Z5UCwoygKb66I072TbT8Yd2Vuo.jpg new file mode 100644 index 0000000..5954dda Binary files /dev/null and b/upload/9Z5UCwoygKb66I072TbT8Yd2Vuo.jpg differ diff --git a/upload/9Z5UCwoygKb66I072TbT8Yd2Vuo_PcgMYO8.jpg b/upload/9Z5UCwoygKb66I072TbT8Yd2Vuo_PcgMYO8.jpg new file mode 100644 index 0000000..40c0dba Binary files /dev/null and b/upload/9Z5UCwoygKb66I072TbT8Yd2Vuo_PcgMYO8.jpg differ diff --git a/upload/9aOHPhg7ezyOoXQiMyg5lUD0OBA.jpg b/upload/9aOHPhg7ezyOoXQiMyg5lUD0OBA.jpg new file mode 100644 index 0000000..0f61def Binary files /dev/null and b/upload/9aOHPhg7ezyOoXQiMyg5lUD0OBA.jpg differ diff --git a/upload/9b088e8792f31b0d963e4b6de7d6d6ad1fd3a54b_s2_n2.jpg b/upload/9b088e8792f31b0d963e4b6de7d6d6ad1fd3a54b_s2_n2.jpg new file mode 100644 index 0000000..5bf5285 Binary files /dev/null and b/upload/9b088e8792f31b0d963e4b6de7d6d6ad1fd3a54b_s2_n2.jpg differ diff --git a/upload/9dwPRPM3ziTPs4VyBHfXCB1NIUm.jpg b/upload/9dwPRPM3ziTPs4VyBHfXCB1NIUm.jpg new file mode 100644 index 0000000..efeff06 Binary files /dev/null and b/upload/9dwPRPM3ziTPs4VyBHfXCB1NIUm.jpg differ diff --git a/upload/9eeYJcqSkXQUhTsfe5QxS1ODo3G.jpg b/upload/9eeYJcqSkXQUhTsfe5QxS1ODo3G.jpg new file mode 100644 index 0000000..c8df559 Binary files /dev/null and b/upload/9eeYJcqSkXQUhTsfe5QxS1ODo3G.jpg differ diff --git a/upload/9efe5b.jpg b/upload/9efe5b.jpg new file mode 100644 index 0000000..b5d80f9 Binary files /dev/null and b/upload/9efe5b.jpg differ diff --git a/upload/9eqU8CVJSGCk19MdemKLCiLWAng.jpg b/upload/9eqU8CVJSGCk19MdemKLCiLWAng.jpg new file mode 100644 index 0000000..500706c Binary files /dev/null and b/upload/9eqU8CVJSGCk19MdemKLCiLWAng.jpg differ diff --git a/upload/9fJVeY12Tf1YpjkTiyicLONWOAJ.jpg b/upload/9fJVeY12Tf1YpjkTiyicLONWOAJ.jpg new file mode 100644 index 0000000..8651721 Binary files /dev/null and b/upload/9fJVeY12Tf1YpjkTiyicLONWOAJ.jpg differ diff --git a/upload/9fhv5HaZs2pDBPc1y9ATNBqCbwo.jpg b/upload/9fhv5HaZs2pDBPc1y9ATNBqCbwo.jpg new file mode 100644 index 0000000..dc1968b Binary files /dev/null and b/upload/9fhv5HaZs2pDBPc1y9ATNBqCbwo.jpg differ diff --git a/upload/9iMchZfwLkVQDQsEwp9kmxnMFrZ.jpg b/upload/9iMchZfwLkVQDQsEwp9kmxnMFrZ.jpg new file mode 100644 index 0000000..81600c1 Binary files /dev/null and b/upload/9iMchZfwLkVQDQsEwp9kmxnMFrZ.jpg differ diff --git a/upload/9kDqbA4mhC0Mw17x9dThZDaOwBX.jpg b/upload/9kDqbA4mhC0Mw17x9dThZDaOwBX.jpg new file mode 100644 index 0000000..5d72224 Binary files /dev/null and b/upload/9kDqbA4mhC0Mw17x9dThZDaOwBX.jpg differ diff --git a/upload/9kX5h3h2f9oNmyi6LjxgSg1vrEz.jpg b/upload/9kX5h3h2f9oNmyi6LjxgSg1vrEz.jpg new file mode 100644 index 0000000..3278628 Binary files /dev/null and b/upload/9kX5h3h2f9oNmyi6LjxgSg1vrEz.jpg differ diff --git a/upload/9lXJKuQgmGmk6CpUzPUdGzUaDIc.jpg b/upload/9lXJKuQgmGmk6CpUzPUdGzUaDIc.jpg new file mode 100644 index 0000000..3905146 Binary files /dev/null and b/upload/9lXJKuQgmGmk6CpUzPUdGzUaDIc.jpg differ diff --git a/upload/9mmkq59uRuJWDFz9UHeX5ATNJYf.jpg b/upload/9mmkq59uRuJWDFz9UHeX5ATNJYf.jpg new file mode 100644 index 0000000..7a8fd55 Binary files /dev/null and b/upload/9mmkq59uRuJWDFz9UHeX5ATNJYf.jpg differ diff --git a/upload/9r4IRZUJ564J38EcLRPM9uUZlVp.jpg b/upload/9r4IRZUJ564J38EcLRPM9uUZlVp.jpg new file mode 100644 index 0000000..2a240f4 Binary files /dev/null and b/upload/9r4IRZUJ564J38EcLRPM9uUZlVp.jpg differ diff --git a/upload/9s665a886EzL6giTI975Op1wnvS.jpg b/upload/9s665a886EzL6giTI975Op1wnvS.jpg new file mode 100644 index 0000000..3e653ec Binary files /dev/null and b/upload/9s665a886EzL6giTI975Op1wnvS.jpg differ diff --git a/upload/9svsJni0pNROt53QBEj9JqZMuEK.jpg b/upload/9svsJni0pNROt53QBEj9JqZMuEK.jpg new file mode 100644 index 0000000..d4bc778 Binary files /dev/null and b/upload/9svsJni0pNROt53QBEj9JqZMuEK.jpg differ diff --git a/upload/9xOmYwIKLX8pTlDaLKdrvkao8Ju.jpg b/upload/9xOmYwIKLX8pTlDaLKdrvkao8Ju.jpg new file mode 100644 index 0000000..6fed3bf Binary files /dev/null and b/upload/9xOmYwIKLX8pTlDaLKdrvkao8Ju.jpg differ diff --git a/upload/A0v1w1L7fbcSAWrpG0CpsvXQSGZ.jpg b/upload/A0v1w1L7fbcSAWrpG0CpsvXQSGZ.jpg new file mode 100644 index 0000000..43cbbd6 Binary files /dev/null and b/upload/A0v1w1L7fbcSAWrpG0CpsvXQSGZ.jpg differ diff --git a/upload/A32D7CBC-5DF5-456C-A2C3-87B48C86EE94.jpeg b/upload/A32D7CBC-5DF5-456C-A2C3-87B48C86EE94.jpeg new file mode 100644 index 0000000..53ec4a4 Binary files /dev/null and b/upload/A32D7CBC-5DF5-456C-A2C3-87B48C86EE94.jpeg differ diff --git a/upload/A7HtCxFe7Ms8H7e7o2zawppbuDT.jpg b/upload/A7HtCxFe7Ms8H7e7o2zawppbuDT.jpg new file mode 100644 index 0000000..25b6bba Binary files /dev/null and b/upload/A7HtCxFe7Ms8H7e7o2zawppbuDT.jpg differ diff --git a/upload/A7SY8iVtFZjynOctGpGuMwiPk46.jpg b/upload/A7SY8iVtFZjynOctGpGuMwiPk46.jpg new file mode 100644 index 0000000..e3e800c Binary files /dev/null and b/upload/A7SY8iVtFZjynOctGpGuMwiPk46.jpg differ diff --git a/upload/A8dUasruo8uYdEPjU0jaOgHDoCF.jpg b/upload/A8dUasruo8uYdEPjU0jaOgHDoCF.jpg new file mode 100644 index 0000000..ffd0acb Binary files /dev/null and b/upload/A8dUasruo8uYdEPjU0jaOgHDoCF.jpg differ diff --git a/upload/A8rczwC4vLH8QORktAGjzGiQ07Q.jpg b/upload/A8rczwC4vLH8QORktAGjzGiQ07Q.jpg new file mode 100644 index 0000000..f6d8127 Binary files /dev/null and b/upload/A8rczwC4vLH8QORktAGjzGiQ07Q.jpg differ diff --git a/upload/AI.jpg b/upload/AI.jpg new file mode 100644 index 0000000..2ef0977 Binary files /dev/null and b/upload/AI.jpg differ diff --git a/upload/AICO_Incarnation-5aa519601abaa.jpg b/upload/AICO_Incarnation-5aa519601abaa.jpg new file mode 100644 index 0000000..c7878e7 Binary files /dev/null and b/upload/AICO_Incarnation-5aa519601abaa.jpg differ diff --git a/upload/AICO_Incarnation-5aa519631689b.jpg b/upload/AICO_Incarnation-5aa519631689b.jpg new file mode 100644 index 0000000..461959a Binary files /dev/null and b/upload/AICO_Incarnation-5aa519631689b.jpg differ diff --git a/upload/AICO_Incarnation-5aa51981a6644.jpg b/upload/AICO_Incarnation-5aa51981a6644.jpg new file mode 100644 index 0000000..300e188 Binary files /dev/null and b/upload/AICO_Incarnation-5aa51981a6644.jpg differ diff --git a/upload/AICO_Incarnation-5aa5199a93e1e.jpg b/upload/AICO_Incarnation-5aa5199a93e1e.jpg new file mode 100644 index 0000000..e742685 Binary files /dev/null and b/upload/AICO_Incarnation-5aa5199a93e1e.jpg differ diff --git a/upload/AICO_Incarnation-5aa519bb2ab75.jpg b/upload/AICO_Incarnation-5aa519bb2ab75.jpg new file mode 100644 index 0000000..500a889 Binary files /dev/null and b/upload/AICO_Incarnation-5aa519bb2ab75.jpg differ diff --git a/upload/AICO_Incarnation-5aa519bdc2b55.jpg b/upload/AICO_Incarnation-5aa519bdc2b55.jpg new file mode 100644 index 0000000..bd4be6d Binary files /dev/null and b/upload/AICO_Incarnation-5aa519bdc2b55.jpg differ diff --git a/upload/AUw1DiCbhjh278126-1.jpg b/upload/AUw1DiCbhjh278126-1.jpg new file mode 100644 index 0000000..2fdc28f Binary files /dev/null and b/upload/AUw1DiCbhjh278126-1.jpg differ diff --git a/upload/Abbys_Background_Image.jpg b/upload/Abbys_Background_Image.jpg new file mode 100644 index 0000000..008973d Binary files /dev/null and b/upload/Abbys_Background_Image.jpg differ diff --git a/upload/Abbys_Poster_Image.jpg b/upload/Abbys_Poster_Image.jpg new file mode 100644 index 0000000..62f2127 Binary files /dev/null and b/upload/Abbys_Poster_Image.jpg differ diff --git a/upload/Abbys_Screenshot1.jpg b/upload/Abbys_Screenshot1.jpg new file mode 100644 index 0000000..4604e7d Binary files /dev/null and b/upload/Abbys_Screenshot1.jpg differ diff --git a/upload/Abbys_Screenshot2.jpg b/upload/Abbys_Screenshot2.jpg new file mode 100644 index 0000000..7594d54 Binary files /dev/null and b/upload/Abbys_Screenshot2.jpg differ diff --git a/upload/Abbys_Screenshot3.jpg b/upload/Abbys_Screenshot3.jpg new file mode 100644 index 0000000..2972495 Binary files /dev/null and b/upload/Abbys_Screenshot3.jpg differ diff --git a/upload/Abbys_Screenshot4.jpg b/upload/Abbys_Screenshot4.jpg new file mode 100644 index 0000000..73f41d3 Binary files /dev/null and b/upload/Abbys_Screenshot4.jpg differ diff --git a/upload/Abbys_Screenshot5.jpg b/upload/Abbys_Screenshot5.jpg new file mode 100644 index 0000000..ca5c78d Binary files /dev/null and b/upload/Abbys_Screenshot5.jpg differ diff --git a/upload/Abbys_Screenshot6.jpg b/upload/Abbys_Screenshot6.jpg new file mode 100644 index 0000000..decda01 Binary files /dev/null and b/upload/Abbys_Screenshot6.jpg differ diff --git a/upload/AbmEqxLW4jdvYVeE6wZTbOQNIfS.jpg b/upload/AbmEqxLW4jdvYVeE6wZTbOQNIfS.jpg new file mode 100644 index 0000000..ad69e69 Binary files /dev/null and b/upload/AbmEqxLW4jdvYVeE6wZTbOQNIfS.jpg differ diff --git a/upload/AbzpU4ookiyWFmiq1bTZwjNl7Y1.jpg b/upload/AbzpU4ookiyWFmiq1bTZwjNl7Y1.jpg new file mode 100644 index 0000000..c24497f Binary files /dev/null and b/upload/AbzpU4ookiyWFmiq1bTZwjNl7Y1.jpg differ diff --git a/upload/AcxbOWUbwtIEDisfuhNGHQNfnMK.jpg b/upload/AcxbOWUbwtIEDisfuhNGHQNfnMK.jpg new file mode 100644 index 0000000..3ad283b Binary files /dev/null and b/upload/AcxbOWUbwtIEDisfuhNGHQNfnMK.jpg differ diff --git a/upload/AcxbOWUbwtIEDisfuhNGHQNfnMK_TFY7w4l.jpg b/upload/AcxbOWUbwtIEDisfuhNGHQNfnMK_TFY7w4l.jpg new file mode 100644 index 0000000..a227796 Binary files /dev/null and b/upload/AcxbOWUbwtIEDisfuhNGHQNfnMK_TFY7w4l.jpg differ diff --git a/upload/AeDS2MKGFy6QcjgWbJBde0Ga6Hd.jpg b/upload/AeDS2MKGFy6QcjgWbJBde0Ga6Hd.jpg new file mode 100644 index 0000000..49e3eac Binary files /dev/null and b/upload/AeDS2MKGFy6QcjgWbJBde0Ga6Hd.jpg differ diff --git a/upload/AfGp6Ev3BVdEd7L99kGQzOzsqRb.jpg b/upload/AfGp6Ev3BVdEd7L99kGQzOzsqRb.jpg new file mode 100644 index 0000000..639c3a2 Binary files /dev/null and b/upload/AfGp6Ev3BVdEd7L99kGQzOzsqRb.jpg differ diff --git a/upload/Ag60ZUJ5xBOKKxqtu9PNMjUgSxs.jpg b/upload/Ag60ZUJ5xBOKKxqtu9PNMjUgSxs.jpg new file mode 100644 index 0000000..1711fdf Binary files /dev/null and b/upload/Ag60ZUJ5xBOKKxqtu9PNMjUgSxs.jpg differ diff --git a/upload/AgRQ9rgBYuXAQuT5umSLYbwJKCM.jpg b/upload/AgRQ9rgBYuXAQuT5umSLYbwJKCM.jpg new file mode 100644 index 0000000..30a8c18 Binary files /dev/null and b/upload/AgRQ9rgBYuXAQuT5umSLYbwJKCM.jpg differ diff --git a/upload/AgkOFU9HgKw311903-6.jpg b/upload/AgkOFU9HgKw311903-6.jpg new file mode 100644 index 0000000..eb4208e Binary files /dev/null and b/upload/AgkOFU9HgKw311903-6.jpg differ diff --git a/upload/Akira-594525087a76b.jpg b/upload/Akira-594525087a76b.jpg new file mode 100644 index 0000000..efbcc15 Binary files /dev/null and b/upload/Akira-594525087a76b.jpg differ diff --git a/upload/Akira-5945250ba3716.jpg b/upload/Akira-5945250ba3716.jpg new file mode 100644 index 0000000..669c13c Binary files /dev/null and b/upload/Akira-5945250ba3716.jpg differ diff --git a/upload/Akira-59452597bbef9.jpg b/upload/Akira-59452597bbef9.jpg new file mode 100644 index 0000000..7ff08a8 Binary files /dev/null and b/upload/Akira-59452597bbef9.jpg differ diff --git a/upload/Akira-594525a794a0b.jpg b/upload/Akira-594525a794a0b.jpg new file mode 100644 index 0000000..6ed0202 Binary files /dev/null and b/upload/Akira-594525a794a0b.jpg differ diff --git a/upload/Akira-594525d1efdb5.jpg b/upload/Akira-594525d1efdb5.jpg new file mode 100644 index 0000000..cb07d3f Binary files /dev/null and b/upload/Akira-594525d1efdb5.jpg differ diff --git a/upload/Akira-594525e088361.jpg b/upload/Akira-594525e088361.jpg new file mode 100644 index 0000000..34c0db3 Binary files /dev/null and b/upload/Akira-594525e088361.jpg differ diff --git a/upload/Albert_Uomo_Nero_Background.jpg b/upload/Albert_Uomo_Nero_Background.jpg new file mode 100644 index 0000000..d2b3f73 Binary files /dev/null and b/upload/Albert_Uomo_Nero_Background.jpg differ diff --git a/upload/Albert_e_LUomo_Nero.JPG b/upload/Albert_e_LUomo_Nero.JPG new file mode 100644 index 0000000..c35f6dc Binary files /dev/null and b/upload/Albert_e_LUomo_Nero.JPG differ diff --git a/upload/Albert_e_LUomo_Nero_Poster.JPG b/upload/Albert_e_LUomo_Nero_Poster.JPG new file mode 100644 index 0000000..8e9a31e Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_Poster.JPG differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot1.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot1.jpg new file mode 100644 index 0000000..3a68106 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot1.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot1_hGwh7np.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot1_hGwh7np.jpg new file mode 100644 index 0000000..ea94512 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot1_hGwh7np.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot2.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot2.jpg new file mode 100644 index 0000000..31dc483 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot2.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot2_bC5xCBM.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot2_bC5xCBM.jpg new file mode 100644 index 0000000..4bbc4d0 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot2_bC5xCBM.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot3.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot3.jpg new file mode 100644 index 0000000..7b3d16a Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot3.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot3_GD7lZNM.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot3_GD7lZNM.jpg new file mode 100644 index 0000000..1593569 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot3_GD7lZNM.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot4.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot4.jpg new file mode 100644 index 0000000..ada75fc Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot4.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot5.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot5.jpg new file mode 100644 index 0000000..3aa48a3 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot5.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot5_spPoB4m.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot5_spPoB4m.jpg new file mode 100644 index 0000000..d3da131 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot5_spPoB4m.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot6.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot6.jpg new file mode 100644 index 0000000..51a9284 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot6.jpg differ diff --git a/upload/Albert_e_LUomo_Nero_ScreenShot6_jHUlzYS.jpg b/upload/Albert_e_LUomo_Nero_ScreenShot6_jHUlzYS.jpg new file mode 100644 index 0000000..debdca9 Binary files /dev/null and b/upload/Albert_e_LUomo_Nero_ScreenShot6_jHUlzYS.jpg differ diff --git a/upload/Alien-04.jpg b/upload/Alien-04.jpg new file mode 100644 index 0000000..21632cc Binary files /dev/null and b/upload/Alien-04.jpg differ diff --git a/upload/Alien-Ressurection-SIgourney-Weaver.jpg b/upload/Alien-Ressurection-SIgourney-Weaver.jpg new file mode 100644 index 0000000..0260cc4 Binary files /dev/null and b/upload/Alien-Ressurection-SIgourney-Weaver.jpg differ diff --git a/upload/Alien_3_2013_XenoFox.jpg b/upload/Alien_3_2013_XenoFox.jpg new file mode 100644 index 0000000..5113cec Binary files /dev/null and b/upload/Alien_3_2013_XenoFox.jpg differ diff --git a/upload/Alone_in_The_Dark_Poster.jpg b/upload/Alone_in_The_Dark_Poster.jpg new file mode 100644 index 0000000..4763f7d Binary files /dev/null and b/upload/Alone_in_The_Dark_Poster.jpg differ diff --git a/upload/Alone_in_The_Dark_Screenshot1.jpg b/upload/Alone_in_The_Dark_Screenshot1.jpg new file mode 100644 index 0000000..968deb0 Binary files /dev/null and b/upload/Alone_in_The_Dark_Screenshot1.jpg differ diff --git a/upload/Alone_in_The_Dark_Screenshot2.jpg b/upload/Alone_in_The_Dark_Screenshot2.jpg new file mode 100644 index 0000000..e8dab54 Binary files /dev/null and b/upload/Alone_in_The_Dark_Screenshot2.jpg differ diff --git a/upload/Alone_in_The_Dark_Screenshot3.jpg b/upload/Alone_in_The_Dark_Screenshot3.jpg new file mode 100644 index 0000000..2ec9ff4 Binary files /dev/null and b/upload/Alone_in_The_Dark_Screenshot3.jpg differ diff --git a/upload/Alone_in_The_Dark_Screenshot4.jpg b/upload/Alone_in_The_Dark_Screenshot4.jpg new file mode 100644 index 0000000..3aa553c Binary files /dev/null and b/upload/Alone_in_The_Dark_Screenshot4.jpg differ diff --git a/upload/Alone_in_The_Dark_Screenshot5.jpg b/upload/Alone_in_The_Dark_Screenshot5.jpg new file mode 100644 index 0000000..c19a8d5 Binary files /dev/null and b/upload/Alone_in_The_Dark_Screenshot5.jpg differ diff --git a/upload/Alone_in_The_Dark_Screenshot6.jpg b/upload/Alone_in_The_Dark_Screenshot6.jpg new file mode 100644 index 0000000..4c24939 Binary files /dev/null and b/upload/Alone_in_The_Dark_Screenshot6.jpg differ diff --git a/upload/AmHOQ7rpHwiaUMRjKXztnauSJb7.jpg b/upload/AmHOQ7rpHwiaUMRjKXztnauSJb7.jpg new file mode 100644 index 0000000..5acebab Binary files /dev/null and b/upload/AmHOQ7rpHwiaUMRjKXztnauSJb7.jpg differ diff --git a/upload/AmR3JG1VQVxU8TfAvljUhfSFUOx.jpg b/upload/AmR3JG1VQVxU8TfAvljUhfSFUOx.jpg new file mode 100644 index 0000000..087d3ec Binary files /dev/null and b/upload/AmR3JG1VQVxU8TfAvljUhfSFUOx.jpg differ diff --git a/upload/AnI2OnXAu510OUCp3fW9AX1F9cM.jpg b/upload/AnI2OnXAu510OUCp3fW9AX1F9cM.jpg new file mode 100644 index 0000000..8c3853e Binary files /dev/null and b/upload/AnI2OnXAu510OUCp3fW9AX1F9cM.jpg differ diff --git a/upload/ApPBMGy8uWkDiPYAAMxgdC0j0gv.jpg b/upload/ApPBMGy8uWkDiPYAAMxgdC0j0gv.jpg new file mode 100644 index 0000000..c1f69bd Binary files /dev/null and b/upload/ApPBMGy8uWkDiPYAAMxgdC0j0gv.jpg differ diff --git a/upload/Apollo_13_astronauts.jpg b/upload/Apollo_13_astronauts.jpg new file mode 100644 index 0000000..a5574a0 Binary files /dev/null and b/upload/Apollo_13_astronauts.jpg differ diff --git a/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d2f789043.jpg b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d2f789043.jpg new file mode 100644 index 0000000..ddd299e Binary files /dev/null and b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d2f789043.jpg differ diff --git a/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d2ff09274.jpg b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d2ff09274.jpg new file mode 100644 index 0000000..2a2ab55 Binary files /dev/null and b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d2ff09274.jpg differ diff --git a/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d3077c631.jpg b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d3077c631.jpg new file mode 100644 index 0000000..1137d89 Binary files /dev/null and b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d3077c631.jpg differ diff --git a/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d32aadf0b.jpg b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d32aadf0b.jpg new file mode 100644 index 0000000..d5dbd70 Binary files /dev/null and b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d32aadf0b.jpg differ diff --git a/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d332c3c0c.jpg b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d332c3c0c.jpg new file mode 100644 index 0000000..f8b9a79 Binary files /dev/null and b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d332c3c0c.jpg differ diff --git a/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d338dca14.jpg b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d338dca14.jpg new file mode 100644 index 0000000..b306992 Binary files /dev/null and b/upload/Ashita_Sekai_ga_Owaru_Toshitemo-5c17d338dca14.jpg differ diff --git a/upload/Aui4lUWGWwBvCucpCTku9aXk1t.jpg b/upload/Aui4lUWGWwBvCucpCTku9aXk1t.jpg new file mode 100644 index 0000000..88f7a89 Binary files /dev/null and b/upload/Aui4lUWGWwBvCucpCTku9aXk1t.jpg differ diff --git a/upload/Av2TcPHpV2Fm2oHgqsLQa4ej5uI.jpg b/upload/Av2TcPHpV2Fm2oHgqsLQa4ej5uI.jpg new file mode 100644 index 0000000..030317b Binary files /dev/null and b/upload/Av2TcPHpV2Fm2oHgqsLQa4ej5uI.jpg differ diff --git a/upload/BNA_Brand_New_Animal-5e78c9da122b0.jpg b/upload/BNA_Brand_New_Animal-5e78c9da122b0.jpg new file mode 100644 index 0000000..d8e3c22 Binary files /dev/null and b/upload/BNA_Brand_New_Animal-5e78c9da122b0.jpg differ diff --git a/upload/BNA_Brand_New_Animal-5e78ca2c02ea9.jpg b/upload/BNA_Brand_New_Animal-5e78ca2c02ea9.jpg new file mode 100644 index 0000000..07617bc Binary files /dev/null and b/upload/BNA_Brand_New_Animal-5e78ca2c02ea9.jpg differ diff --git a/upload/BNA_Brand_New_Animal-5e78ca480f133.jpg b/upload/BNA_Brand_New_Animal-5e78ca480f133.jpg new file mode 100644 index 0000000..9c59ea2 Binary files /dev/null and b/upload/BNA_Brand_New_Animal-5e78ca480f133.jpg differ diff --git a/upload/BNA_Brand_New_Animal-5e79ff980c78e.jpg b/upload/BNA_Brand_New_Animal-5e79ff980c78e.jpg new file mode 100644 index 0000000..ea61c3e Binary files /dev/null and b/upload/BNA_Brand_New_Animal-5e79ff980c78e.jpg differ diff --git a/upload/BNA_Brand_New_Animal-5e79ffb4459ed.jpg b/upload/BNA_Brand_New_Animal-5e79ffb4459ed.jpg new file mode 100644 index 0000000..fe5b9b0 Binary files /dev/null and b/upload/BNA_Brand_New_Animal-5e79ffb4459ed.jpg differ diff --git a/upload/BNA_Brand_New_Animal-5e7a00369dc5a.jpg b/upload/BNA_Brand_New_Animal-5e7a00369dc5a.jpg new file mode 100644 index 0000000..93e2aae Binary files /dev/null and b/upload/BNA_Brand_New_Animal-5e7a00369dc5a.jpg differ diff --git a/upload/BS2972.jpg b/upload/BS2972.jpg new file mode 100644 index 0000000..11527f9 Binary files /dev/null and b/upload/BS2972.jpg differ diff --git a/upload/BgW3OnbQu8B5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg b/upload/BgW3OnbQu8B5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg new file mode 100644 index 0000000..fed4ec7 Binary files /dev/null and b/upload/BgW3OnbQu8B5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg differ diff --git a/upload/BnbIe.png b/upload/BnbIe.png new file mode 100644 index 0000000..51f1155 Binary files /dev/null and b/upload/BnbIe.png differ diff --git a/upload/Bohemian-Rhapsody-Mary.jpg b/upload/Bohemian-Rhapsody-Mary.jpg new file mode 100644 index 0000000..5f03f11 Binary files /dev/null and b/upload/Bohemian-Rhapsody-Mary.jpg differ diff --git a/upload/Bokura_no_Nanokakan_Sensou-5d0262dfeba3f.jpg b/upload/Bokura_no_Nanokakan_Sensou-5d0262dfeba3f.jpg new file mode 100644 index 0000000..84686b4 Binary files /dev/null and b/upload/Bokura_no_Nanokakan_Sensou-5d0262dfeba3f.jpg differ diff --git a/upload/Bokura_no_Nanokakan_Sensou-5d0262e747814.jpg b/upload/Bokura_no_Nanokakan_Sensou-5d0262e747814.jpg new file mode 100644 index 0000000..213b2eb Binary files /dev/null and b/upload/Bokura_no_Nanokakan_Sensou-5d0262e747814.jpg differ diff --git a/upload/Bokura_no_Nanokakan_Sensou-5d0262ea5360c.jpg b/upload/Bokura_no_Nanokakan_Sensou-5d0262ea5360c.jpg new file mode 100644 index 0000000..3ff603e Binary files /dev/null and b/upload/Bokura_no_Nanokakan_Sensou-5d0262ea5360c.jpg differ diff --git a/upload/Bokura_no_Nanokakan_Sensou-5d0262ec61363.jpg b/upload/Bokura_no_Nanokakan_Sensou-5d0262ec61363.jpg new file mode 100644 index 0000000..05999f2 Binary files /dev/null and b/upload/Bokura_no_Nanokakan_Sensou-5d0262ec61363.jpg differ diff --git a/upload/Brody-The-Hateful-Eight.jpg b/upload/Brody-The-Hateful-Eight.jpg new file mode 100644 index 0000000..0b0f31a Binary files /dev/null and b/upload/Brody-The-Hateful-Eight.jpg differ diff --git a/upload/CQxJO6q.jpeg b/upload/CQxJO6q.jpeg new file mode 100644 index 0000000..8521864 Binary files /dev/null and b/upload/CQxJO6q.jpeg differ diff --git a/upload/CQxJO6qpppp.jpg b/upload/CQxJO6qpppp.jpg new file mode 100644 index 0000000..10efafb Binary files /dev/null and b/upload/CQxJO6qpppp.jpg differ diff --git a/upload/CQxJO6qpppp_By693Qi.jpg b/upload/CQxJO6qpppp_By693Qi.jpg new file mode 100644 index 0000000..5298c55 Binary files /dev/null and b/upload/CQxJO6qpppp_By693Qi.jpg differ diff --git a/upload/CommediaSexi2.jpg b/upload/CommediaSexi2.jpg new file mode 100644 index 0000000..5155e59 Binary files /dev/null and b/upload/CommediaSexi2.jpg differ diff --git a/upload/CommediaSexiBackground.jpg b/upload/CommediaSexiBackground.jpg new file mode 100644 index 0000000..bc9d4f4 Binary files /dev/null and b/upload/CommediaSexiBackground.jpg differ diff --git a/upload/CommediaSexiPoster.jpg b/upload/CommediaSexiPoster.jpg new file mode 100644 index 0000000..85c94ea Binary files /dev/null and b/upload/CommediaSexiPoster.jpg differ diff --git a/upload/CommediaSexi_Poster.jpg b/upload/CommediaSexi_Poster.jpg new file mode 100644 index 0000000..f95b629 Binary files /dev/null and b/upload/CommediaSexi_Poster.jpg differ diff --git a/upload/DF_05572_rgb.0.jpeg b/upload/DF_05572_rgb.0.jpeg new file mode 100644 index 0000000..397234c Binary files /dev/null and b/upload/DF_05572_rgb.0.jpeg differ diff --git a/upload/DS7acSWE4JC278126-1.jpg b/upload/DS7acSWE4JC278126-1.jpg new file mode 100644 index 0000000..a8e18d7 Binary files /dev/null and b/upload/DS7acSWE4JC278126-1.jpg differ diff --git a/upload/DeadmanWonderland20.jpg b/upload/DeadmanWonderland20.jpg new file mode 100644 index 0000000..2bdbbe8 Binary files /dev/null and b/upload/DeadmanWonderland20.jpg differ diff --git a/upload/DeadmanWonderland29.jpg b/upload/DeadmanWonderland29.jpg new file mode 100644 index 0000000..f82bad0 Binary files /dev/null and b/upload/DeadmanWonderland29.jpg differ diff --git a/upload/DeadmanWonderland30.jpg b/upload/DeadmanWonderland30.jpg new file mode 100644 index 0000000..9fef5bf Binary files /dev/null and b/upload/DeadmanWonderland30.jpg differ diff --git a/upload/DeadmanWonderland31.jpg b/upload/DeadmanWonderland31.jpg new file mode 100644 index 0000000..411c038 Binary files /dev/null and b/upload/DeadmanWonderland31.jpg differ diff --git a/upload/DeadmanWonderland33.jpg b/upload/DeadmanWonderland33.jpg new file mode 100644 index 0000000..002f9f7 Binary files /dev/null and b/upload/DeadmanWonderland33.jpg differ diff --git a/upload/DeadmanWonderland34.jpg b/upload/DeadmanWonderland34.jpg new file mode 100644 index 0000000..106f108 Binary files /dev/null and b/upload/DeadmanWonderland34.jpg differ diff --git a/upload/Deadpool-1.jpg b/upload/Deadpool-1.jpg new file mode 100644 index 0000000..792f483 Binary files /dev/null and b/upload/Deadpool-1.jpg differ diff --git a/upload/Doom.jpeg b/upload/Doom.jpeg new file mode 100644 index 0000000..9d42602 Binary files /dev/null and b/upload/Doom.jpeg differ diff --git a/upload/Doom_PGqGBEk.jpeg b/upload/Doom_PGqGBEk.jpeg new file mode 100644 index 0000000..9d42602 Binary files /dev/null and b/upload/Doom_PGqGBEk.jpeg differ diff --git a/upload/DpcrXV5V4AAPKyt.jpg b/upload/DpcrXV5V4AAPKyt.jpg new file mode 100644 index 0000000..22ce733 Binary files /dev/null and b/upload/DpcrXV5V4AAPKyt.jpg differ diff --git a/upload/DsrMgeIWoAAbFGS.jpg b/upload/DsrMgeIWoAAbFGS.jpg new file mode 100644 index 0000000..3bcda8a Binary files /dev/null and b/upload/DsrMgeIWoAAbFGS.jpg differ diff --git a/upload/Enders-Game-Gavin-Hood-Asa-Butterfield-1280x720.jpg b/upload/Enders-Game-Gavin-Hood-Asa-Butterfield-1280x720.jpg new file mode 100644 index 0000000..6ee77d0 Binary files /dev/null and b/upload/Enders-Game-Gavin-Hood-Asa-Butterfield-1280x720.jpg differ diff --git a/upload/Enders-Game-review-Asa-Butterfield-and-Harrison-Ford.jpg b/upload/Enders-Game-review-Asa-Butterfield-and-Harrison-Ford.jpg new file mode 100644 index 0000000..40a93c9 Binary files /dev/null and b/upload/Enders-Game-review-Asa-Butterfield-and-Harrison-Ford.jpg differ diff --git a/upload/Eragon2.jpg b/upload/Eragon2.jpg new file mode 100644 index 0000000..488a7d3 Binary files /dev/null and b/upload/Eragon2.jpg differ diff --git a/upload/FB-JB-01450A-1024x683-1024x683.jpeg b/upload/FB-JB-01450A-1024x683-1024x683.jpeg new file mode 100644 index 0000000..9dde11c Binary files /dev/null and b/upload/FB-JB-01450A-1024x683-1024x683.jpeg differ diff --git a/upload/FROZEN-2-ONLINE-USE-mattias_anna31-1090x613.jpg b/upload/FROZEN-2-ONLINE-USE-mattias_anna31-1090x613.jpg new file mode 100644 index 0000000..dc0628f Binary files /dev/null and b/upload/FROZEN-2-ONLINE-USE-mattias_anna31-1090x613.jpg differ diff --git a/upload/FXFeJJD7gnN79525-1.jpg b/upload/FXFeJJD7gnN79525-1.jpg new file mode 100644 index 0000000..af01079 Binary files /dev/null and b/upload/FXFeJJD7gnN79525-1.jpg differ diff --git a/upload/Film-Review-Maleficent-Mi.jpg b/upload/Film-Review-Maleficent-Mi.jpg new file mode 100644 index 0000000..c76cc86 Binary files /dev/null and b/upload/Film-Review-Maleficent-Mi.jpg differ diff --git a/upload/G34eCJp1UV5zVKdI8djpn9esgj.jpg b/upload/G34eCJp1UV5zVKdI8djpn9esgj.jpg new file mode 100644 index 0000000..a3dd416 Binary files /dev/null and b/upload/G34eCJp1UV5zVKdI8djpn9esgj.jpg differ diff --git a/upload/GAL_1.jpg b/upload/GAL_1.jpg new file mode 100644 index 0000000..7966c08 Binary files /dev/null and b/upload/GAL_1.jpg differ diff --git a/upload/GAL_2.jpg b/upload/GAL_2.jpg new file mode 100644 index 0000000..effec38 Binary files /dev/null and b/upload/GAL_2.jpg differ diff --git a/upload/GAL_3.jpg b/upload/GAL_3.jpg new file mode 100644 index 0000000..2e6c24b Binary files /dev/null and b/upload/GAL_3.jpg differ diff --git a/upload/GAL_4.jpg b/upload/GAL_4.jpg new file mode 100644 index 0000000..c78b749 Binary files /dev/null and b/upload/GAL_4.jpg differ diff --git a/upload/GDTwA5FBvVUOjCGKoNDMflbs3Z.jpg b/upload/GDTwA5FBvVUOjCGKoNDMflbs3Z.jpg new file mode 100644 index 0000000..fc4bfcd Binary files /dev/null and b/upload/GDTwA5FBvVUOjCGKoNDMflbs3Z.jpg differ diff --git a/upload/GDls4LELywC278126-1.jpg b/upload/GDls4LELywC278126-1.jpg new file mode 100644 index 0000000..a8e18d7 Binary files /dev/null and b/upload/GDls4LELywC278126-1.jpg differ diff --git a/upload/Gleipnir-5e8a18b004b9b.jpg b/upload/Gleipnir-5e8a18b004b9b.jpg new file mode 100644 index 0000000..70a7e61 Binary files /dev/null and b/upload/Gleipnir-5e8a18b004b9b.jpg differ diff --git a/upload/Gleipnir-5e8a18d3a6834.jpg b/upload/Gleipnir-5e8a18d3a6834.jpg new file mode 100644 index 0000000..bae9c9e Binary files /dev/null and b/upload/Gleipnir-5e8a18d3a6834.jpg differ diff --git a/upload/Gleipnir-5e8a18e402c47.jpg b/upload/Gleipnir-5e8a18e402c47.jpg new file mode 100644 index 0000000..302cfc8 Binary files /dev/null and b/upload/Gleipnir-5e8a18e402c47.jpg differ diff --git a/upload/Gli-incredibili-2-il-primo-trailer.jpg b/upload/Gli-incredibili-2-il-primo-trailer.jpg new file mode 100644 index 0000000..547ef89 Binary files /dev/null and b/upload/Gli-incredibili-2-il-primo-trailer.jpg differ diff --git a/upload/Gli_Incredibili-5d35634e3674c.png b/upload/Gli_Incredibili-5d35634e3674c.png new file mode 100644 index 0000000..946db72 Binary files /dev/null and b/upload/Gli_Incredibili-5d35634e3674c.png differ diff --git a/upload/Goblin_Slayer-5bb91d0421e45.jpg b/upload/Goblin_Slayer-5bb91d0421e45.jpg new file mode 100644 index 0000000..65089a5 Binary files /dev/null and b/upload/Goblin_Slayer-5bb91d0421e45.jpg differ diff --git a/upload/Goblin_Slayer-5bb91d5bf2cbf.jpg b/upload/Goblin_Slayer-5bb91d5bf2cbf.jpg new file mode 100644 index 0000000..3ce97b9 Binary files /dev/null and b/upload/Goblin_Slayer-5bb91d5bf2cbf.jpg differ diff --git a/upload/Goblin_Slayer-5bb91d7060d6e.jpg b/upload/Goblin_Slayer-5bb91d7060d6e.jpg new file mode 100644 index 0000000..b8c0f43 Binary files /dev/null and b/upload/Goblin_Slayer-5bb91d7060d6e.jpg differ diff --git a/upload/Goblin_Slayer-5bc679e83ab30.jpg b/upload/Goblin_Slayer-5bc679e83ab30.jpg new file mode 100644 index 0000000..a62b6dd Binary files /dev/null and b/upload/Goblin_Slayer-5bc679e83ab30.jpg differ diff --git a/upload/Goblin_Slayer-5bc679ecb51c7.jpg b/upload/Goblin_Slayer-5bc679ecb51c7.jpg new file mode 100644 index 0000000..072b017 Binary files /dev/null and b/upload/Goblin_Slayer-5bc679ecb51c7.jpg differ diff --git a/upload/Goblin_Slayer-5bc679f4766ce.jpg b/upload/Goblin_Slayer-5bc679f4766ce.jpg new file mode 100644 index 0000000..9579b7e Binary files /dev/null and b/upload/Goblin_Slayer-5bc679f4766ce.jpg differ diff --git a/upload/Good_Omens_ScreenShot1.jpg b/upload/Good_Omens_ScreenShot1.jpg new file mode 100644 index 0000000..c381e1d Binary files /dev/null and b/upload/Good_Omens_ScreenShot1.jpg differ diff --git a/upload/Good_Omens_ScreenShot2.jpg b/upload/Good_Omens_ScreenShot2.jpg new file mode 100644 index 0000000..8bb8274 Binary files /dev/null and b/upload/Good_Omens_ScreenShot2.jpg differ diff --git a/upload/Good_Omens_ScreenShot3.jpg b/upload/Good_Omens_ScreenShot3.jpg new file mode 100644 index 0000000..01f95fc Binary files /dev/null and b/upload/Good_Omens_ScreenShot3.jpg differ diff --git a/upload/Good_Omens_ScreenShot4.jpg b/upload/Good_Omens_ScreenShot4.jpg new file mode 100644 index 0000000..e02765f Binary files /dev/null and b/upload/Good_Omens_ScreenShot4.jpg differ diff --git a/upload/Good_Omens_ScreenShot5.jpg b/upload/Good_Omens_ScreenShot5.jpg new file mode 100644 index 0000000..c2e4018 Binary files /dev/null and b/upload/Good_Omens_ScreenShot5.jpg differ diff --git a/upload/Good_Omens_ScreenShot6.jpg b/upload/Good_Omens_ScreenShot6.jpg new file mode 100644 index 0000000..020ed48 Binary files /dev/null and b/upload/Good_Omens_ScreenShot6.jpg differ diff --git a/upload/GveLiZeNx9x79824-6.jpg b/upload/GveLiZeNx9x79824-6.jpg new file mode 100644 index 0000000..35a065a Binary files /dev/null and b/upload/GveLiZeNx9x79824-6.jpg differ diff --git a/upload/Gyakusatsu_Kikan-58378d35d38b2.jpg b/upload/Gyakusatsu_Kikan-58378d35d38b2.jpg new file mode 100644 index 0000000..40dbb5f Binary files /dev/null and b/upload/Gyakusatsu_Kikan-58378d35d38b2.jpg differ diff --git a/upload/Gyakusatsu_Kikan-5a5010d0913c9.jpg b/upload/Gyakusatsu_Kikan-5a5010d0913c9.jpg new file mode 100644 index 0000000..6c3cf21 Binary files /dev/null and b/upload/Gyakusatsu_Kikan-5a5010d0913c9.jpg differ diff --git a/upload/Gyakusatsu_Kikan-5a5010db508fd.jpg b/upload/Gyakusatsu_Kikan-5a5010db508fd.jpg new file mode 100644 index 0000000..1bb74e3 Binary files /dev/null and b/upload/Gyakusatsu_Kikan-5a5010db508fd.jpg differ diff --git a/upload/Gyakusatsu_Kikan-5a501163594d8.jpg b/upload/Gyakusatsu_Kikan-5a501163594d8.jpg new file mode 100644 index 0000000..91cf25f Binary files /dev/null and b/upload/Gyakusatsu_Kikan-5a501163594d8.jpg differ diff --git a/upload/Gyakusatsu_Kikan-5a50134fc1987.jpg b/upload/Gyakusatsu_Kikan-5a50134fc1987.jpg new file mode 100644 index 0000000..be066b3 Binary files /dev/null and b/upload/Gyakusatsu_Kikan-5a50134fc1987.jpg differ diff --git a/upload/Gyakusatsu_Kikan-5a501ce14c68f.jpg b/upload/Gyakusatsu_Kikan-5a501ce14c68f.jpg new file mode 100644 index 0000000..43c5473 Binary files /dev/null and b/upload/Gyakusatsu_Kikan-5a501ce14c68f.jpg differ diff --git a/upload/HEoR98F2kRA59xf38FK0K8mlse.jpg b/upload/HEoR98F2kRA59xf38FK0K8mlse.jpg new file mode 100644 index 0000000..e5ce529 Binary files /dev/null and b/upload/HEoR98F2kRA59xf38FK0K8mlse.jpg differ diff --git a/upload/Harmony-57350cc96cab3.jpg b/upload/Harmony-57350cc96cab3.jpg new file mode 100644 index 0000000..fd8c1f9 Binary files /dev/null and b/upload/Harmony-57350cc96cab3.jpg differ diff --git a/upload/Harmony-57350ce4e1167.jpg b/upload/Harmony-57350ce4e1167.jpg new file mode 100644 index 0000000..e068852 Binary files /dev/null and b/upload/Harmony-57350ce4e1167.jpg differ diff --git a/upload/Harmony-57350cf373354.jpg b/upload/Harmony-57350cf373354.jpg new file mode 100644 index 0000000..a0d7313 Binary files /dev/null and b/upload/Harmony-57350cf373354.jpg differ diff --git a/upload/Harmony-57350cf3d05d0.jpg b/upload/Harmony-57350cf3d05d0.jpg new file mode 100644 index 0000000..d477b24 Binary files /dev/null and b/upload/Harmony-57350cf3d05d0.jpg differ diff --git a/upload/Harmony-57350d0285b18.jpg b/upload/Harmony-57350d0285b18.jpg new file mode 100644 index 0000000..38f0c28 Binary files /dev/null and b/upload/Harmony-57350d0285b18.jpg differ diff --git a/upload/Harmony-57350d152fb1e.jpg b/upload/Harmony-57350d152fb1e.jpg new file mode 100644 index 0000000..39e0f50 Binary files /dev/null and b/upload/Harmony-57350d152fb1e.jpg differ diff --git a/upload/Harrison-Ford-dans-Indiana-Jones-et-la-derniere-croisade.jpg b/upload/Harrison-Ford-dans-Indiana-Jones-et-la-derniere-croisade.jpg new file mode 100644 index 0000000..bd770a3 Binary files /dev/null and b/upload/Harrison-Ford-dans-Indiana-Jones-et-la-derniere-croisade.jpg differ diff --git a/upload/Harry-Potter-e-il-prigioniero-di-Azkaban.png b/upload/Harry-Potter-e-il-prigioniero-di-Azkaban.png new file mode 100644 index 0000000..977ac0f Binary files /dev/null and b/upload/Harry-Potter-e-il-prigioniero-di-Azkaban.png differ diff --git a/upload/High_Rise_Invasion-603d18943c518.jpg b/upload/High_Rise_Invasion-603d18943c518.jpg new file mode 100644 index 0000000..152cf12 Binary files /dev/null and b/upload/High_Rise_Invasion-603d18943c518.jpg differ diff --git a/upload/HllaJuJXkbM79525-2.jpg b/upload/HllaJuJXkbM79525-2.jpg new file mode 100644 index 0000000..08d4f7c Binary files /dev/null and b/upload/HllaJuJXkbM79525-2.jpg differ diff --git a/upload/HmEXofYSc56wBHIqY6tJDroCSw.jpg b/upload/HmEXofYSc56wBHIqY6tJDroCSw.jpg new file mode 100644 index 0000000..ada0811 Binary files /dev/null and b/upload/HmEXofYSc56wBHIqY6tJDroCSw.jpg differ diff --git a/upload/IMG_4642.JPG b/upload/IMG_4642.JPG new file mode 100644 index 0000000..63a73c6 Binary files /dev/null and b/upload/IMG_4642.JPG differ diff --git a/upload/IS05aZfPd5ttIbHrSIBZdIehMd.jpg b/upload/IS05aZfPd5ttIbHrSIBZdIehMd.jpg new file mode 100644 index 0000000..3a98fa9 Binary files /dev/null and b/upload/IS05aZfPd5ttIbHrSIBZdIehMd.jpg differ diff --git a/upload/ITSZjjs.jpg b/upload/ITSZjjs.jpg new file mode 100644 index 0000000..fbc82e6 Binary files /dev/null and b/upload/ITSZjjs.jpg differ diff --git a/upload/Il-risveglio-della-forza-4.jpg b/upload/Il-risveglio-della-forza-4.jpg new file mode 100644 index 0000000..a45026c Binary files /dev/null and b/upload/Il-risveglio-della-forza-4.jpg differ diff --git a/upload/Il_Mistero_Della_Piramide_ScreenShot1.jpg b/upload/Il_Mistero_Della_Piramide_ScreenShot1.jpg new file mode 100644 index 0000000..3feaef0 Binary files /dev/null and b/upload/Il_Mistero_Della_Piramide_ScreenShot1.jpg differ diff --git a/upload/Il_Mistero_Della_Piramide_ScreenShot2.jpg b/upload/Il_Mistero_Della_Piramide_ScreenShot2.jpg new file mode 100644 index 0000000..dc3e909 Binary files /dev/null and b/upload/Il_Mistero_Della_Piramide_ScreenShot2.jpg differ diff --git a/upload/Il_Mistero_Della_Piramide_ScreenShot3.jpg b/upload/Il_Mistero_Della_Piramide_ScreenShot3.jpg new file mode 100644 index 0000000..11a8ea6 Binary files /dev/null and b/upload/Il_Mistero_Della_Piramide_ScreenShot3.jpg differ diff --git a/upload/Il_Mistero_Della_Piramide_ScreenShot4.jpg b/upload/Il_Mistero_Della_Piramide_ScreenShot4.jpg new file mode 100644 index 0000000..eb587f6 Binary files /dev/null and b/upload/Il_Mistero_Della_Piramide_ScreenShot4.jpg differ diff --git a/upload/Il_Mistero_Della_Piramide_ScreenShot5.jpg b/upload/Il_Mistero_Della_Piramide_ScreenShot5.jpg new file mode 100644 index 0000000..20c19b0 Binary files /dev/null and b/upload/Il_Mistero_Della_Piramide_ScreenShot5.jpg differ diff --git a/upload/Il_Mistero_Della_Piramide_ScreenShot6.jpg b/upload/Il_Mistero_Della_Piramide_ScreenShot6.jpg new file mode 100644 index 0000000..2c05ff9 Binary files /dev/null and b/upload/Il_Mistero_Della_Piramide_ScreenShot6.jpg differ diff --git a/upload/Il_gobbo_di_Notre_Dame-582b5af7c69ea.jpg b/upload/Il_gobbo_di_Notre_Dame-582b5af7c69ea.jpg new file mode 100644 index 0000000..5cf42e5 Binary files /dev/null and b/upload/Il_gobbo_di_Notre_Dame-582b5af7c69ea.jpg differ diff --git a/upload/Il_gobbo_di_Notre_Dame-582b5b0f5692c.jpg b/upload/Il_gobbo_di_Notre_Dame-582b5b0f5692c.jpg new file mode 100644 index 0000000..f6cfa68 Binary files /dev/null and b/upload/Il_gobbo_di_Notre_Dame-582b5b0f5692c.jpg differ diff --git a/upload/Il_gobbo_di_Notre_Dame-582b5b2fbe7ed.jpg b/upload/Il_gobbo_di_Notre_Dame-582b5b2fbe7ed.jpg new file mode 100644 index 0000000..46b4834 Binary files /dev/null and b/upload/Il_gobbo_di_Notre_Dame-582b5b2fbe7ed.jpg differ diff --git a/upload/Il_gobbo_di_Notre_Dame-582b5b4465fcf.jpg b/upload/Il_gobbo_di_Notre_Dame-582b5b4465fcf.jpg new file mode 100644 index 0000000..3bdfe59 Binary files /dev/null and b/upload/Il_gobbo_di_Notre_Dame-582b5b4465fcf.jpg differ diff --git a/upload/Il_principe_d_egitto-5997ee9747f37.jpg b/upload/Il_principe_d_egitto-5997ee9747f37.jpg new file mode 100644 index 0000000..1b9ff7c Binary files /dev/null and b/upload/Il_principe_d_egitto-5997ee9747f37.jpg differ diff --git a/upload/Indiana-Jones-and-the-Kingdom-of-the-Crystal-Skull-DI.jpg b/upload/Indiana-Jones-and-the-Kingdom-of-the-Crystal-Skull-DI.jpg new file mode 100644 index 0000000..5946b41 Binary files /dev/null and b/upload/Indiana-Jones-and-the-Kingdom-of-the-Crystal-Skull-DI.jpg differ diff --git a/upload/Isola-delle-rose-2.jpg b/upload/Isola-delle-rose-2.jpg new file mode 100644 index 0000000..f69022f Binary files /dev/null and b/upload/Isola-delle-rose-2.jpg differ diff --git a/upload/JHVoiAI.png b/upload/JHVoiAI.png new file mode 100644 index 0000000..e6547c1 Binary files /dev/null and b/upload/JHVoiAI.png differ diff --git a/upload/JiAvMZ969xP3NKKxDV9eFXNkXA.jpg b/upload/JiAvMZ969xP3NKKxDV9eFXNkXA.jpg new file mode 100644 index 0000000..2bb380f Binary files /dev/null and b/upload/JiAvMZ969xP3NKKxDV9eFXNkXA.jpg differ diff --git a/upload/JohnWick3-officialstills-header.jpg b/upload/JohnWick3-officialstills-header.jpg new file mode 100644 index 0000000..3f47467 Binary files /dev/null and b/upload/JohnWick3-officialstills-header.jpg differ diff --git a/upload/John_Wick_Pacto_de_sangre-577237732-large.jpg b/upload/John_Wick_Pacto_de_sangre-577237732-large.jpg new file mode 100644 index 0000000..6c40348 Binary files /dev/null and b/upload/John_Wick_Pacto_de_sangre-577237732-large.jpg differ diff --git a/upload/KJQgoKZPzFL79525-1.jpg b/upload/KJQgoKZPzFL79525-1.jpg new file mode 100644 index 0000000..af01079 Binary files /dev/null and b/upload/KJQgoKZPzFL79525-1.jpg differ diff --git a/upload/Kenneth-Branagh-Murder-On-The-Orient-Express.jpg b/upload/Kenneth-Branagh-Murder-On-The-Orient-Express.jpg new file mode 100644 index 0000000..43008fc Binary files /dev/null and b/upload/Kenneth-Branagh-Murder-On-The-Orient-Express.jpg differ diff --git a/upload/Kimi_no_Na_wa-57ba081e066b1.jpg b/upload/Kimi_no_Na_wa-57ba081e066b1.jpg new file mode 100644 index 0000000..b375528 Binary files /dev/null and b/upload/Kimi_no_Na_wa-57ba081e066b1.jpg differ diff --git a/upload/Kimi_no_Na_wa-57ba0820e879c.jpg b/upload/Kimi_no_Na_wa-57ba0820e879c.jpg new file mode 100644 index 0000000..31a4e53 Binary files /dev/null and b/upload/Kimi_no_Na_wa-57ba0820e879c.jpg differ diff --git a/upload/Kimi_no_Na_wa-57ba083b3eb26.jpg b/upload/Kimi_no_Na_wa-57ba083b3eb26.jpg new file mode 100644 index 0000000..b4b7902 Binary files /dev/null and b/upload/Kimi_no_Na_wa-57ba083b3eb26.jpg differ diff --git a/upload/Kimi_no_Na_wa-57ba08400e173.jpg b/upload/Kimi_no_Na_wa-57ba08400e173.jpg new file mode 100644 index 0000000..37c315e Binary files /dev/null and b/upload/Kimi_no_Na_wa-57ba08400e173.jpg differ diff --git a/upload/Kimi_no_Na_wa-57ba0841231e4.jpg b/upload/Kimi_no_Na_wa-57ba0841231e4.jpg new file mode 100644 index 0000000..b525b47 Binary files /dev/null and b/upload/Kimi_no_Na_wa-57ba0841231e4.jpg differ diff --git a/upload/Kimi_no_Suizou_o_Tabetai-5aaaf680ebf34.jpg b/upload/Kimi_no_Suizou_o_Tabetai-5aaaf680ebf34.jpg new file mode 100644 index 0000000..7a255d8 Binary files /dev/null and b/upload/Kimi_no_Suizou_o_Tabetai-5aaaf680ebf34.jpg differ diff --git a/upload/Kimi_no_Suizou_o_Tabetai-5c495c00240be.jpg b/upload/Kimi_no_Suizou_o_Tabetai-5c495c00240be.jpg new file mode 100644 index 0000000..722d205 Binary files /dev/null and b/upload/Kimi_no_Suizou_o_Tabetai-5c495c00240be.jpg differ diff --git a/upload/Kimi_no_Suizou_o_Tabetai-5c495c068b50f.jpg b/upload/Kimi_no_Suizou_o_Tabetai-5c495c068b50f.jpg new file mode 100644 index 0000000..7e1e6c0 Binary files /dev/null and b/upload/Kimi_no_Suizou_o_Tabetai-5c495c068b50f.jpg differ diff --git a/upload/Kimi_no_Suizou_o_Tabetai-5c495c09c82c4.jpg b/upload/Kimi_no_Suizou_o_Tabetai-5c495c09c82c4.jpg new file mode 100644 index 0000000..0821cbb Binary files /dev/null and b/upload/Kimi_no_Suizou_o_Tabetai-5c495c09c82c4.jpg differ diff --git a/upload/Kimi_no_Suizou_o_Tabetai-5c495c0db4d08.jpg b/upload/Kimi_no_Suizou_o_Tabetai-5c495c0db4d08.jpg new file mode 100644 index 0000000..b0061ba Binary files /dev/null and b/upload/Kimi_no_Suizou_o_Tabetai-5c495c0db4d08.jpg differ diff --git a/upload/Kimi_no_Suizou_o_Tabetai-5c495c11b61fa.jpg b/upload/Kimi_no_Suizou_o_Tabetai-5c495c11b61fa.jpg new file mode 100644 index 0000000..d85548d Binary files /dev/null and b/upload/Kimi_no_Suizou_o_Tabetai-5c495c11b61fa.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21687f9060d.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21687f9060d.jpg new file mode 100644 index 0000000..ceae815 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21687f9060d.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21688a14cfc.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21688a14cfc.jpg new file mode 100644 index 0000000..6de1f28 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21688a14cfc.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21688a14cfc_iewAJSO.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21688a14cfc_iewAJSO.jpg new file mode 100644 index 0000000..91b4ca0 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21688a14cfc_iewAJSO.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21688da1756.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21688da1756.jpg new file mode 100644 index 0000000..b062e05 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21688da1756.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f2168e0c22e1.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f2168e0c22e1.jpg new file mode 100644 index 0000000..6fcb548 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f2168e0c22e1.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f2168e0c22e1_ebZnPK3.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f2168e0c22e1_ebZnPK3.jpg new file mode 100644 index 0000000..029ddac Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f2168e0c22e1_ebZnPK3.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f2168ee9f6c2.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f2168ee9f6c2.jpg new file mode 100644 index 0000000..d977272 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f2168ee9f6c2.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f216900c0f5b.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f216900c0f5b.jpg new file mode 100644 index 0000000..4e159a0 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f216900c0f5b.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f216900c0f5b_1.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f216900c0f5b_1.jpg new file mode 100644 index 0000000..3476ddb Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f216900c0f5b_1.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21690d171e4.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21690d171e4.jpg new file mode 100644 index 0000000..65de2f3 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21690d171e4.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21692eee200.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21692eee200.jpg new file mode 100644 index 0000000..a4a91e6 Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21692eee200.jpg differ diff --git a/upload/Kimi_to_Nami_ni_Noretara-5f21692eee200_Nr1OgZ9.jpg b/upload/Kimi_to_Nami_ni_Noretara-5f21692eee200_Nr1OgZ9.jpg new file mode 100644 index 0000000..c0219cf Binary files /dev/null and b/upload/Kimi_to_Nami_ni_Noretara-5f21692eee200_Nr1OgZ9.jpg differ diff --git a/upload/Kiseijuu1.jpg b/upload/Kiseijuu1.jpg new file mode 100644 index 0000000..5e4d3a8 Binary files /dev/null and b/upload/Kiseijuu1.jpg differ diff --git a/upload/Kiseijuu2.jpg b/upload/Kiseijuu2.jpg new file mode 100644 index 0000000..705b68a Binary files /dev/null and b/upload/Kiseijuu2.jpg differ diff --git a/upload/Kiseijuu3.jpg b/upload/Kiseijuu3.jpg new file mode 100644 index 0000000..40e3369 Binary files /dev/null and b/upload/Kiseijuu3.jpg differ diff --git a/upload/Kono_Sekai_no_Katasumi_ni-581e4eb966ac7.jpg b/upload/Kono_Sekai_no_Katasumi_ni-581e4eb966ac7.jpg new file mode 100644 index 0000000..3cf5226 Binary files /dev/null and b/upload/Kono_Sekai_no_Katasumi_ni-581e4eb966ac7.jpg differ diff --git a/upload/Kono_Sekai_no_Katasumi_ni-581e4ebc41023.jpg b/upload/Kono_Sekai_no_Katasumi_ni-581e4ebc41023.jpg new file mode 100644 index 0000000..e571dc2 Binary files /dev/null and b/upload/Kono_Sekai_no_Katasumi_ni-581e4ebc41023.jpg differ diff --git a/upload/Kono_Sekai_no_Katasumi_ni-581e4ed62abfc.jpg b/upload/Kono_Sekai_no_Katasumi_ni-581e4ed62abfc.jpg new file mode 100644 index 0000000..07f266d Binary files /dev/null and b/upload/Kono_Sekai_no_Katasumi_ni-581e4ed62abfc.jpg differ diff --git a/upload/Kono_Sekai_no_Katasumi_ni-581e4efc2b2fd.jpg b/upload/Kono_Sekai_no_Katasumi_ni-581e4efc2b2fd.jpg new file mode 100644 index 0000000..ff02e41 Binary files /dev/null and b/upload/Kono_Sekai_no_Katasumi_ni-581e4efc2b2fd.jpg differ diff --git a/upload/KungFury.jpg b/upload/KungFury.jpg new file mode 100644 index 0000000..498bd3a Binary files /dev/null and b/upload/KungFury.jpg differ diff --git a/upload/LAbominevole_Dr_Phibes_Poster.jpg b/upload/LAbominevole_Dr_Phibes_Poster.jpg new file mode 100644 index 0000000..74e47c7 Binary files /dev/null and b/upload/LAbominevole_Dr_Phibes_Poster.jpg differ diff --git a/upload/LAttacco-dei-cloni2.jpg b/upload/LAttacco-dei-cloni2.jpg new file mode 100644 index 0000000..14be478 Binary files /dev/null and b/upload/LAttacco-dei-cloni2.jpg differ diff --git a/upload/LIncredibile_storia_dellIsola_Delle_Rose__1770862__00_44_12_00__2652020.jpg b/upload/LIncredibile_storia_dellIsola_Delle_Rose__1770862__00_44_12_00__2652020.jpg new file mode 100644 index 0000000..ef1e4f0 Binary files /dev/null and b/upload/LIncredibile_storia_dellIsola_Delle_Rose__1770862__00_44_12_00__2652020.jpg differ diff --git a/upload/La-Mummia-La-tomba-dellimperatore-dragone-2008-05.jpg b/upload/La-Mummia-La-tomba-dellimperatore-dragone-2008-05.jpg new file mode 100644 index 0000000..8bf5adc Binary files /dev/null and b/upload/La-Mummia-La-tomba-dellimperatore-dragone-2008-05.jpg differ diff --git a/upload/La-Mummia.jpg b/upload/La-Mummia.jpg new file mode 100644 index 0000000..c7478f8 Binary files /dev/null and b/upload/La-Mummia.jpg differ diff --git a/upload/La-caduta-Immagini-dal-film-8_big.jpg b/upload/La-caduta-Immagini-dal-film-8_big.jpg new file mode 100644 index 0000000..630bdfa Binary files /dev/null and b/upload/La-caduta-Immagini-dal-film-8_big.jpg differ diff --git a/upload/La_forma_della_voce.jpg b/upload/La_forma_della_voce.jpg new file mode 100644 index 0000000..a7c53eb Binary files /dev/null and b/upload/La_forma_della_voce.jpg differ diff --git a/upload/La_mummia_-_La_tomba_dellImperatore_Dragone_-_Trailer.png b/upload/La_mummia_-_La_tomba_dellImperatore_Dragone_-_Trailer.png new file mode 100644 index 0000000..c72c3a1 Binary files /dev/null and b/upload/La_mummia_-_La_tomba_dellImperatore_Dragone_-_Trailer.png differ diff --git a/upload/LbMAJ5.jpg b/upload/LbMAJ5.jpg new file mode 100644 index 0000000..6fcc53b Binary files /dev/null and b/upload/LbMAJ5.jpg differ diff --git a/upload/LegoStarWarsYoda.jpg b/upload/LegoStarWarsYoda.jpg new file mode 100644 index 0000000..d562ae2 Binary files /dev/null and b/upload/LegoStarWarsYoda.jpg differ diff --git a/upload/LegoStarWarsYoda2.jpg b/upload/LegoStarWarsYoda2.jpg new file mode 100644 index 0000000..b62ea64 Binary files /dev/null and b/upload/LegoStarWarsYoda2.jpg differ diff --git a/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c1fb782f.jpg b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c1fb782f.jpg new file mode 100644 index 0000000..6cf239b Binary files /dev/null and b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c1fb782f.jpg differ diff --git a/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c20f1b8d.jpg b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c20f1b8d.jpg new file mode 100644 index 0000000..5fe7c14 Binary files /dev/null and b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c20f1b8d.jpg differ diff --git a/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c26a56ee.jpg b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c26a56ee.jpg new file mode 100644 index 0000000..e78a940 Binary files /dev/null and b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c26a56ee.jpg differ diff --git a/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c29b17ad.jpg b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c29b17ad.jpg new file mode 100644 index 0000000..4c35d94 Binary files /dev/null and b/upload/Lego_Star_Wars_The_Yoda_Chronicles-5dce5c29b17ad.jpg differ diff --git a/upload/Lora_più_buia_-_01.jpg b/upload/Lora_più_buia_-_01.jpg new file mode 100644 index 0000000..513fd77 Binary files /dev/null and b/upload/Lora_più_buia_-_01.jpg differ diff --git a/upload/Lost_Song-5ac93b888bd42.jpg b/upload/Lost_Song-5ac93b888bd42.jpg new file mode 100644 index 0000000..cbcbd99 Binary files /dev/null and b/upload/Lost_Song-5ac93b888bd42.jpg differ diff --git a/upload/Lost_Song-5ac93b8e41fc1.jpg b/upload/Lost_Song-5ac93b8e41fc1.jpg new file mode 100644 index 0000000..846eb5c Binary files /dev/null and b/upload/Lost_Song-5ac93b8e41fc1.jpg differ diff --git a/upload/Lost_Song-5ac93b8ebb4ca.jpg b/upload/Lost_Song-5ac93b8ebb4ca.jpg new file mode 100644 index 0000000..e668fa6 Binary files /dev/null and b/upload/Lost_Song-5ac93b8ebb4ca.jpg differ diff --git a/upload/Lost_Song-5ac93bacc2d7d.jpg b/upload/Lost_Song-5ac93bacc2d7d.jpg new file mode 100644 index 0000000..e327b28 Binary files /dev/null and b/upload/Lost_Song-5ac93bacc2d7d.jpg differ diff --git a/upload/Lost_Song-5ac93bbd391f4.jpg b/upload/Lost_Song-5ac93bbd391f4.jpg new file mode 100644 index 0000000..9258c5d Binary files /dev/null and b/upload/Lost_Song-5ac93bbd391f4.jpg differ diff --git a/upload/Lost_Song-5ac93be7d8f47.jpg b/upload/Lost_Song-5ac93be7d8f47.jpg new file mode 100644 index 0000000..ff5db32 Binary files /dev/null and b/upload/Lost_Song-5ac93be7d8f47.jpg differ diff --git a/upload/MImywxo0iDktDxdb1IZ4PT9EAP.jpg b/upload/MImywxo0iDktDxdb1IZ4PT9EAP.jpg new file mode 100644 index 0000000..7518318 Binary files /dev/null and b/upload/MImywxo0iDktDxdb1IZ4PT9EAP.jpg differ diff --git a/upload/MV5BMjQ2MDk4NTEzM15BMl5BanBnXkFtZTgwMDAzMTAyNzM._V1_.jpg b/upload/MV5BMjQ2MDk4NTEzM15BMl5BanBnXkFtZTgwMDAzMTAyNzM._V1_.jpg new file mode 100644 index 0000000..23facbd Binary files /dev/null and b/upload/MV5BMjQ2MDk4NTEzM15BMl5BanBnXkFtZTgwMDAzMTAyNzM._V1_.jpg differ diff --git a/upload/MV5BMzYyNTM5NjA0Nl5BMl5BanBnXkFtZTgwNTg3NzM3NjM._V1_.jpg b/upload/MV5BMzYyNTM5NjA0Nl5BMl5BanBnXkFtZTgwNTg3NzM3NjM._V1_.jpg new file mode 100644 index 0000000..da488be Binary files /dev/null and b/upload/MV5BMzYyNTM5NjA0Nl5BMl5BanBnXkFtZTgwNTg3NzM3NjM._V1_.jpg differ diff --git a/upload/Macchine-Mortali-03.jpg b/upload/Macchine-Mortali-03.jpg new file mode 100644 index 0000000..afab87e Binary files /dev/null and b/upload/Macchine-Mortali-03.jpg differ diff --git a/upload/Macchine-Mortali-1280x720.jpg b/upload/Macchine-Mortali-1280x720.jpg new file mode 100644 index 0000000..2cc4bf5 Binary files /dev/null and b/upload/Macchine-Mortali-1280x720.jpg differ diff --git a/upload/Made_in_Abyss-5973ac333be20.jpg b/upload/Made_in_Abyss-5973ac333be20.jpg new file mode 100644 index 0000000..d76cf18 Binary files /dev/null and b/upload/Made_in_Abyss-5973ac333be20.jpg differ diff --git a/upload/Made_in_Abyss-5973ad76b8bcc.jpg b/upload/Made_in_Abyss-5973ad76b8bcc.jpg new file mode 100644 index 0000000..0b89bb9 Binary files /dev/null and b/upload/Made_in_Abyss-5973ad76b8bcc.jpg differ diff --git a/upload/Madoka-Magica-Battle-Pentagram-Screenshot-2.jpg b/upload/Madoka-Magica-Battle-Pentagram-Screenshot-2.jpg new file mode 100644 index 0000000..5313495 Binary files /dev/null and b/upload/Madoka-Magica-Battle-Pentagram-Screenshot-2.jpg differ diff --git a/upload/MahouShoujoMadokaMagika12.jpg b/upload/MahouShoujoMadokaMagika12.jpg new file mode 100644 index 0000000..33e697e Binary files /dev/null and b/upload/MahouShoujoMadokaMagika12.jpg differ diff --git a/upload/MahouShoujoMadokaMagika6.jpg b/upload/MahouShoujoMadokaMagika6.jpg new file mode 100644 index 0000000..eb872c3 Binary files /dev/null and b/upload/MahouShoujoMadokaMagika6.jpg differ diff --git a/upload/Maleficent-Stefan-Wallpaper-HD1.jpg b/upload/Maleficent-Stefan-Wallpaper-HD1.jpg new file mode 100644 index 0000000..26b15fa Binary files /dev/null and b/upload/Maleficent-Stefan-Wallpaper-HD1.jpg differ diff --git a/upload/Mass_Effect_Background_Lava.jpg b/upload/Mass_Effect_Background_Lava.jpg new file mode 100644 index 0000000..a57a996 Binary files /dev/null and b/upload/Mass_Effect_Background_Lava.jpg differ diff --git a/upload/MbgBDZGNuSy341395-1.jpg b/upload/MbgBDZGNuSy341395-1.jpg new file mode 100644 index 0000000..a785d0f Binary files /dev/null and b/upload/MbgBDZGNuSy341395-1.jpg differ diff --git a/upload/Minaccia-fantasma-7.jpg b/upload/Minaccia-fantasma-7.jpg new file mode 100644 index 0000000..af62d98 Binary files /dev/null and b/upload/Minaccia-fantasma-7.jpg differ diff --git a/upload/Mune-Il-guardiano-della-luna-01.jpg b/upload/Mune-Il-guardiano-della-luna-01.jpg new file mode 100644 index 0000000..14267cd Binary files /dev/null and b/upload/Mune-Il-guardiano-della-luna-01.jpg differ diff --git a/upload/N12bS06iClC311903-5.jpg b/upload/N12bS06iClC311903-5.jpg new file mode 100644 index 0000000..658ab14 Binary files /dev/null and b/upload/N12bS06iClC311903-5.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Background.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Background.jpg new file mode 100644 index 0000000..47e8a57 Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Background.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot1.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot1.jpg new file mode 100644 index 0000000..1b87250 Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot1.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot2.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot2.jpg new file mode 100644 index 0000000..9575462 Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot2.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot3.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot3.jpg new file mode 100644 index 0000000..9871d23 Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot3.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot4.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot4.jpg new file mode 100644 index 0000000..edd1ccc Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot4.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot5.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot5.jpg new file mode 100644 index 0000000..e71d285 Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot5.jpg differ diff --git a/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot6.jpg b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot6.jpg new file mode 100644 index 0000000..865dc3c Binary files /dev/null and b/upload/Neverland_-_La_vera_storia_di_Peter_Pan_Screenshot6.jpg differ diff --git a/upload/Notorious_Screenshot1.jpg b/upload/Notorious_Screenshot1.jpg new file mode 100644 index 0000000..235ca05 Binary files /dev/null and b/upload/Notorious_Screenshot1.jpg differ diff --git a/upload/Notorious_Screenshot2.jpg b/upload/Notorious_Screenshot2.jpg new file mode 100644 index 0000000..07b08ee Binary files /dev/null and b/upload/Notorious_Screenshot2.jpg differ diff --git a/upload/Notorious_Screenshot3.jpg b/upload/Notorious_Screenshot3.jpg new file mode 100644 index 0000000..9c6fcb6 Binary files /dev/null and b/upload/Notorious_Screenshot3.jpg differ diff --git a/upload/Notorious_Screenshot4.jpg b/upload/Notorious_Screenshot4.jpg new file mode 100644 index 0000000..26e087b Binary files /dev/null and b/upload/Notorious_Screenshot4.jpg differ diff --git a/upload/Notorious_Screenshot5.jpg b/upload/Notorious_Screenshot5.jpg new file mode 100644 index 0000000..67a23f3 Binary files /dev/null and b/upload/Notorious_Screenshot5.jpg differ diff --git a/upload/Notorious_Screenshot6.jpg b/upload/Notorious_Screenshot6.jpg new file mode 100644 index 0000000..5ce2ade Binary files /dev/null and b/upload/Notorious_Screenshot6.jpg differ diff --git a/upload/OPZfZyudj2R81189-10.jpg b/upload/OPZfZyudj2R81189-10.jpg new file mode 100644 index 0000000..7836940 Binary files /dev/null and b/upload/OPZfZyudj2R81189-10.jpg differ diff --git a/upload/OovpZI.jpg b/upload/OovpZI.jpg new file mode 100644 index 0000000..b3a91cc Binary files /dev/null and b/upload/OovpZI.jpg differ diff --git a/upload/P1_Battle.jpg b/upload/P1_Battle.jpg new file mode 100644 index 0000000..cc289fa Binary files /dev/null and b/upload/P1_Battle.jpg differ diff --git a/upload/PapVt2VAbCMCT7YjVn4HvF.jpg b/upload/PapVt2VAbCMCT7YjVn4HvF.jpg new file mode 100644 index 0000000..9763024 Binary files /dev/null and b/upload/PapVt2VAbCMCT7YjVn4HvF.jpg differ diff --git a/upload/Puella-Magi-Madoka-Magica-Movie-Posters-puella-magi-madoka-magica-32925318-1179-1723.jpg b/upload/Puella-Magi-Madoka-Magica-Movie-Posters-puella-magi-madoka-magica-32925318-1179-1723.jpg new file mode 100644 index 0000000..8a19101 Binary files /dev/null and b/upload/Puella-Magi-Madoka-Magica-Movie-Posters-puella-magi-madoka-magica-32925318-1179-1723.jpg differ diff --git a/upload/Puella-Magi-Madoka-Magica-Movie-Posters.jpg b/upload/Puella-Magi-Madoka-Magica-Movie-Posters.jpg new file mode 100644 index 0000000..be35d4c Binary files /dev/null and b/upload/Puella-Magi-Madoka-Magica-Movie-Posters.jpg differ diff --git a/upload/QdZRiBUJvrEeIi3klFf7mp3oL5EEF4mLIDs26r.jpg b/upload/QdZRiBUJvrEeIi3klFf7mp3oL5EEF4mLIDs26r.jpg new file mode 100644 index 0000000..371c105 Binary files /dev/null and b/upload/QdZRiBUJvrEeIi3klFf7mp3oL5EEF4mLIDs26r.jpg differ diff --git a/upload/RIzLbq9nDYy278126-1.jpg b/upload/RIzLbq9nDYy278126-1.jpg new file mode 100644 index 0000000..2fdc28f Binary files /dev/null and b/upload/RIzLbq9nDYy278126-1.jpg differ diff --git a/upload/Rasputin-Anastasia-Blu-Ray-rasputin-30092070-1356-576.jpg b/upload/Rasputin-Anastasia-Blu-Ray-rasputin-30092070-1356-576.jpg new file mode 100644 index 0000000..9e4e317 Binary files /dev/null and b/upload/Rasputin-Anastasia-Blu-Ray-rasputin-30092070-1356-576.jpg differ diff --git a/upload/ResidentEvilDamnation2012i01.jpg b/upload/ResidentEvilDamnation2012i01.jpg new file mode 100644 index 0000000..0dbe073 Binary files /dev/null and b/upload/ResidentEvilDamnation2012i01.jpg differ diff --git a/upload/ResidentEvilDamnation2012i02.jpg b/upload/ResidentEvilDamnation2012i02.jpg new file mode 100644 index 0000000..738aa03 Binary files /dev/null and b/upload/ResidentEvilDamnation2012i02.jpg differ diff --git a/upload/ResidentEvilDamnation2012i03.jpg b/upload/ResidentEvilDamnation2012i03.jpg new file mode 100644 index 0000000..0ae9656 Binary files /dev/null and b/upload/ResidentEvilDamnation2012i03.jpg differ diff --git a/upload/ResidentEvilDamnation2012i04.png b/upload/ResidentEvilDamnation2012i04.png new file mode 100644 index 0000000..f5a23cc Binary files /dev/null and b/upload/ResidentEvilDamnation2012i04.png differ diff --git a/upload/ResidentEvilDamnation2012i05.png b/upload/ResidentEvilDamnation2012i05.png new file mode 100644 index 0000000..6f640f8 Binary files /dev/null and b/upload/ResidentEvilDamnation2012i05.png differ diff --git a/upload/ResidentEvilDamnation2012i06.png b/upload/ResidentEvilDamnation2012i06.png new file mode 100644 index 0000000..b695eb7 Binary files /dev/null and b/upload/ResidentEvilDamnation2012i06.png differ diff --git a/upload/Rocketman-recensione-02.jpg b/upload/Rocketman-recensione-02.jpg new file mode 100644 index 0000000..3eb25d5 Binary files /dev/null and b/upload/Rocketman-recensione-02.jpg differ diff --git a/upload/RtjgUHnZs2E247997-2.jpg b/upload/RtjgUHnZs2E247997-2.jpg new file mode 100644 index 0000000..2b68cdd Binary files /dev/null and b/upload/RtjgUHnZs2E247997-2.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_Background.jpg b/upload/Sai_Tenere_Un_Segreto_Background.jpg new file mode 100644 index 0000000..efc494e Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_Background.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_Poster.jpg b/upload/Sai_Tenere_Un_Segreto_Poster.jpg new file mode 100644 index 0000000..743289f Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_Poster.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_Poster_DY2TXxK.jpg b/upload/Sai_Tenere_Un_Segreto_Poster_DY2TXxK.jpg new file mode 100644 index 0000000..1f72bbe Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_Poster_DY2TXxK.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_ScreenShot1.jpg b/upload/Sai_Tenere_Un_Segreto_ScreenShot1.jpg new file mode 100644 index 0000000..af660f5 Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_ScreenShot1.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_ScreenShot2.jpg b/upload/Sai_Tenere_Un_Segreto_ScreenShot2.jpg new file mode 100644 index 0000000..deaed3e Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_ScreenShot2.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_ScreenShot3.jpg b/upload/Sai_Tenere_Un_Segreto_ScreenShot3.jpg new file mode 100644 index 0000000..6b86853 Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_ScreenShot3.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_ScreenShot4.jpg b/upload/Sai_Tenere_Un_Segreto_ScreenShot4.jpg new file mode 100644 index 0000000..86e2e45 Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_ScreenShot4.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_ScreenShot5.jpg b/upload/Sai_Tenere_Un_Segreto_ScreenShot5.jpg new file mode 100644 index 0000000..de74834 Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_ScreenShot5.jpg differ diff --git a/upload/Sai_Tenere_Un_Segreto_ScreenShot6.jpg b/upload/Sai_Tenere_Un_Segreto_ScreenShot6.jpg new file mode 100644 index 0000000..aedf157 Binary files /dev/null and b/upload/Sai_Tenere_Un_Segreto_ScreenShot6.jpg differ diff --git a/upload/Saruman_with_Orthancs_Palanti.jpg b/upload/Saruman_with_Orthancs_Palanti.jpg new file mode 100644 index 0000000..15c030f Binary files /dev/null and b/upload/Saruman_with_Orthancs_Palanti.jpg differ diff --git a/upload/Satsuriku_no_Tenshi-5b40ebcab1999.jpg b/upload/Satsuriku_no_Tenshi-5b40ebcab1999.jpg new file mode 100644 index 0000000..49c6268 Binary files /dev/null and b/upload/Satsuriku_no_Tenshi-5b40ebcab1999.jpg differ diff --git a/upload/Satsuriku_no_Tenshi-5b40ebcf3c278.jpg b/upload/Satsuriku_no_Tenshi-5b40ebcf3c278.jpg new file mode 100644 index 0000000..23a0ae1 Binary files /dev/null and b/upload/Satsuriku_no_Tenshi-5b40ebcf3c278.jpg differ diff --git a/upload/Satsuriku_no_Tenshi-5b40ebd73fb21.jpg b/upload/Satsuriku_no_Tenshi-5b40ebd73fb21.jpg new file mode 100644 index 0000000..f432d67 Binary files /dev/null and b/upload/Satsuriku_no_Tenshi-5b40ebd73fb21.jpg differ diff --git a/upload/Satsuriku_no_Tenshi-5b40ebdb90593.jpg b/upload/Satsuriku_no_Tenshi-5b40ebdb90593.jpg new file mode 100644 index 0000000..1e9c2f0 Binary files /dev/null and b/upload/Satsuriku_no_Tenshi-5b40ebdb90593.jpg differ diff --git a/upload/Satsuriku_no_Tenshi-5b40ebe92acc1.jpg b/upload/Satsuriku_no_Tenshi-5b40ebe92acc1.jpg new file mode 100644 index 0000000..8b5808e Binary files /dev/null and b/upload/Satsuriku_no_Tenshi-5b40ebe92acc1.jpg differ diff --git a/upload/Satsuriku_no_Tenshi-5b40ebf1d127d.jpg b/upload/Satsuriku_no_Tenshi-5b40ebf1d127d.jpg new file mode 100644 index 0000000..e75a2bd Binary files /dev/null and b/upload/Satsuriku_no_Tenshi-5b40ebf1d127d.jpg differ diff --git a/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d023e067d.jpg b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d023e067d.jpg new file mode 100644 index 0000000..b3dd023 Binary files /dev/null and b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d023e067d.jpg differ diff --git a/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d06ba62ea.jpg b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d06ba62ea.jpg new file mode 100644 index 0000000..d7ac6eb Binary files /dev/null and b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d06ba62ea.jpg differ diff --git a/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d08dd8e39.jpg b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d08dd8e39.jpg new file mode 100644 index 0000000..5898bc4 Binary files /dev/null and b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d08dd8e39.jpg differ diff --git a/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d09daca09.jpg b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d09daca09.jpg new file mode 100644 index 0000000..609972e Binary files /dev/null and b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d09daca09.jpg differ diff --git a/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d0bd2dd4a.jpg b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d0bd2dd4a.jpg new file mode 100644 index 0000000..f155153 Binary files /dev/null and b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d0bd2dd4a.jpg differ diff --git a/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d0de0f3b6.jpg b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d0de0f3b6.jpg new file mode 100644 index 0000000..d528bc5 Binary files /dev/null and b/upload/Sayonara_no_Asa_ni_Yakusoku_no_Hana_o_Kazarou-5c01d0de0f3b6.jpg differ diff --git a/upload/Screenshot-2019-11-28-11.58.14.png b/upload/Screenshot-2019-11-28-11.58.14.png new file mode 100644 index 0000000..2e363b9 Binary files /dev/null and b/upload/Screenshot-2019-11-28-11.58.14.png differ diff --git a/upload/ShishanoTeikoku20.jpg b/upload/ShishanoTeikoku20.jpg new file mode 100644 index 0000000..f825496 Binary files /dev/null and b/upload/ShishanoTeikoku20.jpg differ diff --git a/upload/Si-Alza-il-Vento-01-1.jpg b/upload/Si-Alza-il-Vento-01-1.jpg new file mode 100644 index 0000000..02054e4 Binary files /dev/null and b/upload/Si-Alza-il-Vento-01-1.jpg differ diff --git a/upload/Sid-toy-story.jpg b/upload/Sid-toy-story.jpg new file mode 100644 index 0000000..8ae598a Binary files /dev/null and b/upload/Sid-toy-story.jpg differ diff --git a/upload/Sigourney-Weaver-and-Tom-Woodruff-Jr.-in-Alien-3-1992.jpg b/upload/Sigourney-Weaver-and-Tom-Woodruff-Jr.-in-Alien-3-1992.jpg new file mode 100644 index 0000000..d504690 Binary files /dev/null and b/upload/Sigourney-Weaver-and-Tom-Woodruff-Jr.-in-Alien-3-1992.jpg differ diff --git a/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b1c3592be.jpg b/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b1c3592be.jpg new file mode 100644 index 0000000..8f16891 Binary files /dev/null and b/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b1c3592be.jpg differ diff --git a/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b1c77e2b1.jpg b/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b1c77e2b1.jpg new file mode 100644 index 0000000..e6e0e3a Binary files /dev/null and b/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b1c77e2b1.jpg differ diff --git a/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b22d22602.jpg b/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b22d22602.jpg new file mode 100644 index 0000000..c0834ce Binary files /dev/null and b/upload/Sinbad_-_La_leggenda_dei_sette_mari-59b3b22d22602.jpg differ diff --git a/upload/Spz50fA4viXiP2tEA2A77qhbhRfcFkiD6WFOqH.jpg b/upload/Spz50fA4viXiP2tEA2A77qhbhRfcFkiD6WFOqH.jpg new file mode 100644 index 0000000..81003ef Binary files /dev/null and b/upload/Spz50fA4viXiP2tEA2A77qhbhRfcFkiD6WFOqH.jpg differ diff --git a/upload/Star_Wars_Episodio_II_YouTube.jpg b/upload/Star_Wars_Episodio_II_YouTube.jpg new file mode 100644 index 0000000..a7162fc Binary files /dev/null and b/upload/Star_Wars_Episodio_II_YouTube.jpg differ diff --git a/upload/Steamboy.full.191487.jpg b/upload/Steamboy.full.191487.jpg new file mode 100644 index 0000000..6948c4b Binary files /dev/null and b/upload/Steamboy.full.191487.jpg differ diff --git a/upload/Ted-screencaps-ted-31754665-1200-729.jpg b/upload/Ted-screencaps-ted-31754665-1200-729.jpg new file mode 100644 index 0000000..bfaf14f Binary files /dev/null and b/upload/Ted-screencaps-ted-31754665-1200-729.jpg differ diff --git a/upload/Ted-screencaps-ted-31754668-1200-715.jpg b/upload/Ted-screencaps-ted-31754668-1200-715.jpg new file mode 100644 index 0000000..fe6bd26 Binary files /dev/null and b/upload/Ted-screencaps-ted-31754668-1200-715.jpg differ diff --git a/upload/Tenki_no_Ko-5cad2e6415b9e.jpg b/upload/Tenki_no_Ko-5cad2e6415b9e.jpg new file mode 100644 index 0000000..c3dbf6b Binary files /dev/null and b/upload/Tenki_no_Ko-5cad2e6415b9e.jpg differ diff --git a/upload/Tenkuu-Shinpan-PV.jpg b/upload/Tenkuu-Shinpan-PV.jpg new file mode 100644 index 0000000..d64eadd Binary files /dev/null and b/upload/Tenkuu-Shinpan-PV.jpg differ diff --git a/upload/The-Abominable-Dr.-Phibes.jpg b/upload/The-Abominable-Dr.-Phibes.jpg new file mode 100644 index 0000000..f1fc667 Binary files /dev/null and b/upload/The-Abominable-Dr.-Phibes.jpg differ diff --git a/upload/The-Mummy-Returns-Rick-Alex-and-Evie.jpg b/upload/The-Mummy-Returns-Rick-Alex-and-Evie.jpg new file mode 100644 index 0000000..15cc89a Binary files /dev/null and b/upload/The-Mummy-Returns-Rick-Alex-and-Evie.jpg differ diff --git a/upload/The-addams-family-2.jpg b/upload/The-addams-family-2.jpg new file mode 100644 index 0000000..438650b Binary files /dev/null and b/upload/The-addams-family-2.jpg differ diff --git a/upload/The_Blacklist_Redemption_Screenshot1.jpg b/upload/The_Blacklist_Redemption_Screenshot1.jpg new file mode 100644 index 0000000..8bcb0ea Binary files /dev/null and b/upload/The_Blacklist_Redemption_Screenshot1.jpg differ diff --git a/upload/The_Blacklist_Redemption_Screenshot2.jpg b/upload/The_Blacklist_Redemption_Screenshot2.jpg new file mode 100644 index 0000000..630e239 Binary files /dev/null and b/upload/The_Blacklist_Redemption_Screenshot2.jpg differ diff --git a/upload/The_Blacklist_Redemption_Screenshot3.jpg b/upload/The_Blacklist_Redemption_Screenshot3.jpg new file mode 100644 index 0000000..1f7b5cf Binary files /dev/null and b/upload/The_Blacklist_Redemption_Screenshot3.jpg differ diff --git a/upload/The_Blacklist_Redemption_Screenshot4.jpg b/upload/The_Blacklist_Redemption_Screenshot4.jpg new file mode 100644 index 0000000..b403edb Binary files /dev/null and b/upload/The_Blacklist_Redemption_Screenshot4.jpg differ diff --git a/upload/The_Blacklist_Redemption_Screenshot5.jpg b/upload/The_Blacklist_Redemption_Screenshot5.jpg new file mode 100644 index 0000000..55f23c4 Binary files /dev/null and b/upload/The_Blacklist_Redemption_Screenshot5.jpg differ diff --git a/upload/The_Blacklist_Redemption_Screenshot6.jpg b/upload/The_Blacklist_Redemption_Screenshot6.jpg new file mode 100644 index 0000000..b22f506 Binary files /dev/null and b/upload/The_Blacklist_Redemption_Screenshot6.jpg differ diff --git a/upload/The_Hobbit_The_441728.jpg b/upload/The_Hobbit_The_441728.jpg new file mode 100644 index 0000000..5a5e3b8 Binary files /dev/null and b/upload/The_Hobbit_The_441728.jpg differ diff --git a/upload/Tim-Lego2.gif b/upload/Tim-Lego2.gif new file mode 100644 index 0000000..e3b352e Binary files /dev/null and b/upload/Tim-Lego2.gif differ diff --git a/upload/Tir8ZF.jpg b/upload/Tir8ZF.jpg new file mode 100644 index 0000000..f7f5287 Binary files /dev/null and b/upload/Tir8ZF.jpg differ diff --git a/upload/ULFVZCznZgw278126-1.jpg b/upload/ULFVZCznZgw278126-1.jpg new file mode 100644 index 0000000..a8e18d7 Binary files /dev/null and b/upload/ULFVZCznZgw278126-1.jpg differ diff --git a/upload/UN_programmi_tv_oggi_7_settembre_un_medico_in_famiglia_guida_tv_sky_mediaset_rai.png b/upload/UN_programmi_tv_oggi_7_settembre_un_medico_in_famiglia_guida_tv_sky_mediaset_rai.png new file mode 100644 index 0000000..613885f Binary files /dev/null and b/upload/UN_programmi_tv_oggi_7_settembre_un_medico_in_famiglia_guida_tv_sky_mediaset_rai.png differ diff --git a/upload/Uchiage_Hanabi-5bf03e3a797ce.jpg b/upload/Uchiage_Hanabi-5bf03e3a797ce.jpg new file mode 100644 index 0000000..a12de38 Binary files /dev/null and b/upload/Uchiage_Hanabi-5bf03e3a797ce.jpg differ diff --git a/upload/Uchiage_Hanabi-5bf03e7073f52.jpg b/upload/Uchiage_Hanabi-5bf03e7073f52.jpg new file mode 100644 index 0000000..34407ef Binary files /dev/null and b/upload/Uchiage_Hanabi-5bf03e7073f52.jpg differ diff --git a/upload/Uchiage_Hanabi-5bf03e796d89f.jpg b/upload/Uchiage_Hanabi-5bf03e796d89f.jpg new file mode 100644 index 0000000..d43af6c Binary files /dev/null and b/upload/Uchiage_Hanabi-5bf03e796d89f.jpg differ diff --git a/upload/Uchiage_Hanabi-5bf03e8255958.jpg b/upload/Uchiage_Hanabi-5bf03e8255958.jpg new file mode 100644 index 0000000..7c87664 Binary files /dev/null and b/upload/Uchiage_Hanabi-5bf03e8255958.jpg differ diff --git a/upload/Uchiage_Hanabi-5bf03eaee45db.jpg b/upload/Uchiage_Hanabi-5bf03eaee45db.jpg new file mode 100644 index 0000000..be98100 Binary files /dev/null and b/upload/Uchiage_Hanabi-5bf03eaee45db.jpg differ diff --git a/upload/Uchiage_Hanabi-5bf03ebd239b2.jpg b/upload/Uchiage_Hanabi-5bf03ebd239b2.jpg new file mode 100644 index 0000000..1b3db39 Binary files /dev/null and b/upload/Uchiage_Hanabi-5bf03ebd239b2.jpg differ diff --git a/upload/Un-milione-di-modi-per-morire-nel-west-03.jpg b/upload/Un-milione-di-modi-per-morire-nel-west-03.jpg new file mode 100644 index 0000000..bf92b72 Binary files /dev/null and b/upload/Un-milione-di-modi-per-morire-nel-west-03.jpg differ diff --git a/upload/V_Wars_ScreenShot1.jpg b/upload/V_Wars_ScreenShot1.jpg new file mode 100644 index 0000000..1196ff8 Binary files /dev/null and b/upload/V_Wars_ScreenShot1.jpg differ diff --git a/upload/V_Wars_ScreenShot2.jpg b/upload/V_Wars_ScreenShot2.jpg new file mode 100644 index 0000000..b37357f Binary files /dev/null and b/upload/V_Wars_ScreenShot2.jpg differ diff --git a/upload/V_Wars_ScreenShot3.jpg b/upload/V_Wars_ScreenShot3.jpg new file mode 100644 index 0000000..3e52af2 Binary files /dev/null and b/upload/V_Wars_ScreenShot3.jpg differ diff --git a/upload/V_Wars_ScreenShot4.jpg b/upload/V_Wars_ScreenShot4.jpg new file mode 100644 index 0000000..6c388d4 Binary files /dev/null and b/upload/V_Wars_ScreenShot4.jpg differ diff --git a/upload/V_Wars_ScreenShot5.jpg b/upload/V_Wars_ScreenShot5.jpg new file mode 100644 index 0000000..4e4c375 Binary files /dev/null and b/upload/V_Wars_ScreenShot5.jpg differ diff --git a/upload/V_Wars_ScreenShot6.jpg b/upload/V_Wars_ScreenShot6.jpg new file mode 100644 index 0000000..1293094 Binary files /dev/null and b/upload/V_Wars_ScreenShot6.jpg differ diff --git a/upload/VuukZLgaCrho2Ar8Scl9HtV3yD.jpg b/upload/VuukZLgaCrho2Ar8Scl9HtV3yD.jpg new file mode 100644 index 0000000..f3b74ce Binary files /dev/null and b/upload/VuukZLgaCrho2Ar8Scl9HtV3yD.jpg differ diff --git a/upload/VuukZLgaCrho2Ar8Scl9HtV3yD_PGTrUEn.jpg b/upload/VuukZLgaCrho2Ar8Scl9HtV3yD_PGTrUEn.jpg new file mode 100644 index 0000000..12df130 Binary files /dev/null and b/upload/VuukZLgaCrho2Ar8Scl9HtV3yD_PGTrUEn.jpg differ diff --git a/upload/WB_Sherlock_Holmes.jpg b/upload/WB_Sherlock_Holmes.jpg new file mode 100644 index 0000000..2fac63e Binary files /dev/null and b/upload/WB_Sherlock_Holmes.jpg differ diff --git a/upload/XLwjO1NSCIaLznh58OQtmSFl0N.jpg b/upload/XLwjO1NSCIaLznh58OQtmSFl0N.jpg new file mode 100644 index 0000000..ce360f8 Binary files /dev/null and b/upload/XLwjO1NSCIaLznh58OQtmSFl0N.jpg differ diff --git a/upload/Y66wNNr.jpg b/upload/Y66wNNr.jpg new file mode 100644 index 0000000..a62ab88 Binary files /dev/null and b/upload/Y66wNNr.jpg differ diff --git a/upload/YC2HuIkt6JOyOInuSRnRR9iVLE.jpg b/upload/YC2HuIkt6JOyOInuSRnRR9iVLE.jpg new file mode 100644 index 0000000..2adbdb4 Binary files /dev/null and b/upload/YC2HuIkt6JOyOInuSRnRR9iVLE.jpg differ diff --git a/upload/YC2HuIkt6JOyOInuSRnRR9iVLE_iRBJ6rC.jpg b/upload/YC2HuIkt6JOyOInuSRnRR9iVLE_iRBJ6rC.jpg new file mode 100644 index 0000000..61af6f1 Binary files /dev/null and b/upload/YC2HuIkt6JOyOInuSRnRR9iVLE_iRBJ6rC.jpg differ diff --git a/upload/YLyORLsYIjC0d1TFBSpJKk7piP.jpg b/upload/YLyORLsYIjC0d1TFBSpJKk7piP.jpg new file mode 100644 index 0000000..f6767c9 Binary files /dev/null and b/upload/YLyORLsYIjC0d1TFBSpJKk7piP.jpg differ diff --git a/upload/Yaea5zx.png b/upload/Yaea5zx.png new file mode 100644 index 0000000..4231613 Binary files /dev/null and b/upload/Yaea5zx.png differ diff --git a/upload/Yeti.TombOfTheDragonEmperor.jpg b/upload/Yeti.TombOfTheDragonEmperor.jpg new file mode 100644 index 0000000..2fc3aa5 Binary files /dev/null and b/upload/Yeti.TombOfTheDragonEmperor.jpg differ diff --git a/upload/YfMEwVRe1c5rhFYmL2P8153T8x.jpg b/upload/YfMEwVRe1c5rhFYmL2P8153T8x.jpg new file mode 100644 index 0000000..8010261 Binary files /dev/null and b/upload/YfMEwVRe1c5rhFYmL2P8153T8x.jpg differ diff --git a/upload/a-million-ways-to-die-in-the-west-seth-macfarlane-giovanni-ribisi.jpg b/upload/a-million-ways-to-die-in-the-west-seth-macfarlane-giovanni-ribisi.jpg new file mode 100644 index 0000000..05353e7 Binary files /dev/null and b/upload/a-million-ways-to-die-in-the-west-seth-macfarlane-giovanni-ribisi.jpg differ diff --git a/upload/a1wL3PlIGVcLwqeOd3NdwYoqGpP.jpg b/upload/a1wL3PlIGVcLwqeOd3NdwYoqGpP.jpg new file mode 100644 index 0000000..855c0ef Binary files /dev/null and b/upload/a1wL3PlIGVcLwqeOd3NdwYoqGpP.jpg differ diff --git a/upload/a3dmI6TtJ00zgOIPVgaJrouVFg8.jpg b/upload/a3dmI6TtJ00zgOIPVgaJrouVFg8.jpg new file mode 100644 index 0000000..a1e0841 Binary files /dev/null and b/upload/a3dmI6TtJ00zgOIPVgaJrouVFg8.jpg differ diff --git a/upload/a4827e867ef74a734001ea12d4c27843.jpg b/upload/a4827e867ef74a734001ea12d4c27843.jpg new file mode 100644 index 0000000..a36ba01 Binary files /dev/null and b/upload/a4827e867ef74a734001ea12d4c27843.jpg differ diff --git a/upload/a5Lzn2WKALRJH42LFps9O6wjfqC.jpg b/upload/a5Lzn2WKALRJH42LFps9O6wjfqC.jpg new file mode 100644 index 0000000..fb0f6db Binary files /dev/null and b/upload/a5Lzn2WKALRJH42LFps9O6wjfqC.jpg differ diff --git a/upload/a7qsGNgG0iCGrI7rJ46GFY7M13T.jpg b/upload/a7qsGNgG0iCGrI7rJ46GFY7M13T.jpg new file mode 100644 index 0000000..9a15c6b Binary files /dev/null and b/upload/a7qsGNgG0iCGrI7rJ46GFY7M13T.jpg differ diff --git a/upload/a8nXYg6hIRnUy5Xli0kBUZ1xtKT.jpg b/upload/a8nXYg6hIRnUy5Xli0kBUZ1xtKT.jpg new file mode 100644 index 0000000..3d3ee1c Binary files /dev/null and b/upload/a8nXYg6hIRnUy5Xli0kBUZ1xtKT.jpg differ diff --git a/upload/aJCtkxLLzkk1pECehVjKHA2lBgw.jpg b/upload/aJCtkxLLzkk1pECehVjKHA2lBgw.jpg new file mode 100644 index 0000000..61e9bff Binary files /dev/null and b/upload/aJCtkxLLzkk1pECehVjKHA2lBgw.jpg differ diff --git a/upload/aJn9XeesqsrSLKcHfHP4u5985hn.jpg b/upload/aJn9XeesqsrSLKcHfHP4u5985hn.jpg new file mode 100644 index 0000000..34cbdda Binary files /dev/null and b/upload/aJn9XeesqsrSLKcHfHP4u5985hn.jpg differ diff --git a/upload/aMdz0ngZaAsKvlbOCIXieHd9fgD.jpg b/upload/aMdz0ngZaAsKvlbOCIXieHd9fgD.jpg new file mode 100644 index 0000000..8f293a5 Binary files /dev/null and b/upload/aMdz0ngZaAsKvlbOCIXieHd9fgD.jpg differ diff --git a/upload/aN5RjS3G0Kaj6MtDYkGhSSaQ54O.jpg b/upload/aN5RjS3G0Kaj6MtDYkGhSSaQ54O.jpg new file mode 100644 index 0000000..0e68745 Binary files /dev/null and b/upload/aN5RjS3G0Kaj6MtDYkGhSSaQ54O.jpg differ diff --git a/upload/aPJflLsNm8uGVxj0n3rayYuxLr4.jpg b/upload/aPJflLsNm8uGVxj0n3rayYuxLr4.jpg new file mode 100644 index 0000000..51b314e Binary files /dev/null and b/upload/aPJflLsNm8uGVxj0n3rayYuxLr4.jpg differ diff --git a/upload/aQX9Hc4pCdbkzf4Oz6FMSpujagV.jpg b/upload/aQX9Hc4pCdbkzf4Oz6FMSpujagV.jpg new file mode 100644 index 0000000..e12d731 Binary files /dev/null and b/upload/aQX9Hc4pCdbkzf4Oz6FMSpujagV.jpg differ diff --git a/upload/aSpZe4POHqhjBNDCe4FbE3pwHEU.jpg b/upload/aSpZe4POHqhjBNDCe4FbE3pwHEU.jpg new file mode 100644 index 0000000..10a0b57 Binary files /dev/null and b/upload/aSpZe4POHqhjBNDCe4FbE3pwHEU.jpg differ diff --git a/upload/aTXhYyxx23AGWAqrkrs1fNGhgSO.jpg b/upload/aTXhYyxx23AGWAqrkrs1fNGhgSO.jpg new file mode 100644 index 0000000..e6095b6 Binary files /dev/null and b/upload/aTXhYyxx23AGWAqrkrs1fNGhgSO.jpg differ diff --git a/upload/aWPWCeihRraZayNOcZVnq5dXFwX.jpg b/upload/aWPWCeihRraZayNOcZVnq5dXFwX.jpg new file mode 100644 index 0000000..8ab7929 Binary files /dev/null and b/upload/aWPWCeihRraZayNOcZVnq5dXFwX.jpg differ diff --git a/upload/aWZ6yIs8LgBG6Yk4C5GAXTDyqDM.jpg b/upload/aWZ6yIs8LgBG6Yk4C5GAXTDyqDM.jpg new file mode 100644 index 0000000..5453074 Binary files /dev/null and b/upload/aWZ6yIs8LgBG6Yk4C5GAXTDyqDM.jpg differ diff --git a/upload/aYuYAAE7Va8zQxeM0A2X4FmGQsU.jpg b/upload/aYuYAAE7Va8zQxeM0A2X4FmGQsU.jpg new file mode 100644 index 0000000..14046d7 Binary files /dev/null and b/upload/aYuYAAE7Va8zQxeM0A2X4FmGQsU.jpg differ diff --git a/upload/aZtwH3RQ0L8jbInxr7OSc9tlGMJ.jpg b/upload/aZtwH3RQ0L8jbInxr7OSc9tlGMJ.jpg new file mode 100644 index 0000000..4027ae0 Binary files /dev/null and b/upload/aZtwH3RQ0L8jbInxr7OSc9tlGMJ.jpg differ diff --git a/upload/aZtwH3RQ0L8jbInxr7OSc9tlGMJ_425SirT.jpg b/upload/aZtwH3RQ0L8jbInxr7OSc9tlGMJ_425SirT.jpg new file mode 100644 index 0000000..3f2cccd Binary files /dev/null and b/upload/aZtwH3RQ0L8jbInxr7OSc9tlGMJ_425SirT.jpg differ diff --git a/upload/aaq7l7vbQzX2s2HeRIZybwqt3y6.jpg b/upload/aaq7l7vbQzX2s2HeRIZybwqt3y6.jpg new file mode 100644 index 0000000..b0d3473 Binary files /dev/null and b/upload/aaq7l7vbQzX2s2HeRIZybwqt3y6.jpg differ diff --git a/upload/abY62mILpCTD6NjR0WLFLjq6TuV.jpg b/upload/abY62mILpCTD6NjR0WLFLjq6TuV.jpg new file mode 100644 index 0000000..cff94fa Binary files /dev/null and b/upload/abY62mILpCTD6NjR0WLFLjq6TuV.jpg differ diff --git a/upload/abY62mILpCTD6NjR0WLFLjq6TuV_nKPPS4j.jpg b/upload/abY62mILpCTD6NjR0WLFLjq6TuV_nKPPS4j.jpg new file mode 100644 index 0000000..38f4921 Binary files /dev/null and b/upload/abY62mILpCTD6NjR0WLFLjq6TuV_nKPPS4j.jpg differ diff --git a/upload/ackgOgD.png b/upload/ackgOgD.png new file mode 100644 index 0000000..86403e0 Binary files /dev/null and b/upload/ackgOgD.png differ diff --git a/upload/addams-wednesday-newmovie-mobileMasterAt3x.jpg b/upload/addams-wednesday-newmovie-mobileMasterAt3x.jpg new file mode 100644 index 0000000..7089f2d Binary files /dev/null and b/upload/addams-wednesday-newmovie-mobileMasterAt3x.jpg differ diff --git a/upload/ae258d2371e0e2a6b99036fbf0e3e09bb93ef540_s2_n2.jpg b/upload/ae258d2371e0e2a6b99036fbf0e3e09bb93ef540_s2_n2.jpg new file mode 100644 index 0000000..673eeb0 Binary files /dev/null and b/upload/ae258d2371e0e2a6b99036fbf0e3e09bb93ef540_s2_n2.jpg differ diff --git a/upload/ae2ba135b3091758f6287b615151547cc50f6f09_s2_n2.jpg b/upload/ae2ba135b3091758f6287b615151547cc50f6f09_s2_n2.jpg new file mode 100644 index 0000000..3e8d409 Binary files /dev/null and b/upload/ae2ba135b3091758f6287b615151547cc50f6f09_s2_n2.jpg differ diff --git a/upload/ag73V4cFdAtoDJ5cKy8fBZelvet.jpg b/upload/ag73V4cFdAtoDJ5cKy8fBZelvet.jpg new file mode 100644 index 0000000..f4b558b Binary files /dev/null and b/upload/ag73V4cFdAtoDJ5cKy8fBZelvet.jpg differ diff --git a/upload/ahRKcLMyWq7zJsPyqg8Ykolmw1k.jpg b/upload/ahRKcLMyWq7zJsPyqg8Ykolmw1k.jpg new file mode 100644 index 0000000..dbe6360 Binary files /dev/null and b/upload/ahRKcLMyWq7zJsPyqg8Ykolmw1k.jpg differ diff --git a/upload/ai2FicMUxLCurVkjtYdSvVDWRmS.jpg b/upload/ai2FicMUxLCurVkjtYdSvVDWRmS.jpg new file mode 100644 index 0000000..75470ac Binary files /dev/null and b/upload/ai2FicMUxLCurVkjtYdSvVDWRmS.jpg differ diff --git a/upload/aiQl6H0C3LEE7GHCfHQf4GDl5a9.jpg b/upload/aiQl6H0C3LEE7GHCfHQf4GDl5a9.jpg new file mode 100644 index 0000000..70a146d Binary files /dev/null and b/upload/aiQl6H0C3LEE7GHCfHQf4GDl5a9.jpg differ diff --git a/upload/alien-3-1992-4.jpg b/upload/alien-3-1992-4.jpg new file mode 100644 index 0000000..5bbb7f2 Binary files /dev/null and b/upload/alien-3-1992-4.jpg differ diff --git a/upload/alien3-9.jpg b/upload/alien3-9.jpg new file mode 100644 index 0000000..3e1be04 Binary files /dev/null and b/upload/alien3-9.jpg differ diff --git a/upload/alien4feature.jpg b/upload/alien4feature.jpg new file mode 100644 index 0000000..a462c9e Binary files /dev/null and b/upload/alien4feature.jpg differ diff --git a/upload/alita-2-1.jpg b/upload/alita-2-1.jpg new file mode 100644 index 0000000..a18c0e4 Binary files /dev/null and b/upload/alita-2-1.jpg differ diff --git a/upload/alita-battle-angel-cast-parla-potere-femminile-film-robert-rodriguez-v3-323555.jpg b/upload/alita-battle-angel-cast-parla-potere-femminile-film-robert-rodriguez-v3-323555.jpg new file mode 100644 index 0000000..b83b862 Binary files /dev/null and b/upload/alita-battle-angel-cast-parla-potere-femminile-film-robert-rodriguez-v3-323555.jpg differ diff --git a/upload/alita-battle-angel-featurette-behind-the-scenes-with-weta.jpg b/upload/alita-battle-angel-featurette-behind-the-scenes-with-weta.jpg new file mode 100644 index 0000000..75383d4 Binary files /dev/null and b/upload/alita-battle-angel-featurette-behind-the-scenes-with-weta.jpg differ diff --git a/upload/alita_battle_angel_cityspace_hd_movies-2560x1440.jpg b/upload/alita_battle_angel_cityspace_hd_movies-2560x1440.jpg new file mode 100644 index 0000000..568d419 Binary files /dev/null and b/upload/alita_battle_angel_cityspace_hd_movies-2560x1440.jpg differ diff --git a/upload/alitaegasghsa.jpg b/upload/alitaegasghsa.jpg new file mode 100644 index 0000000..baaddf1 Binary files /dev/null and b/upload/alitaegasghsa.jpg differ diff --git a/upload/alla-ricerca-di-dory-finding-dory-screenshot-trailer-08.jpg b/upload/alla-ricerca-di-dory-finding-dory-screenshot-trailer-08.jpg new file mode 100644 index 0000000..67adb69 Binary files /dev/null and b/upload/alla-ricerca-di-dory-finding-dory-screenshot-trailer-08.jpg differ diff --git a/upload/amanda-seyfried-2000.jpg b/upload/amanda-seyfried-2000.jpg new file mode 100644 index 0000000..fb0688f Binary files /dev/null and b/upload/amanda-seyfried-2000.jpg differ diff --git a/upload/anSPPInN5tY6Bk1sOwLLTJAFzTq.jpg b/upload/anSPPInN5tY6Bk1sOwLLTJAFzTq.jpg new file mode 100644 index 0000000..4f6a7b4 Binary files /dev/null and b/upload/anSPPInN5tY6Bk1sOwLLTJAFzTq.jpg differ diff --git a/upload/animali-fantastici-dove-trovarli-2016.jpg b/upload/animali-fantastici-dove-trovarli-2016.jpg new file mode 100644 index 0000000..6d33425 Binary files /dev/null and b/upload/animali-fantastici-dove-trovarli-2016.jpg differ diff --git a/upload/animali-fantastici-e-dove-trovarli.jpg b/upload/animali-fantastici-e-dove-trovarli.jpg new file mode 100644 index 0000000..2fec24a Binary files /dev/null and b/upload/animali-fantastici-e-dove-trovarli.jpg differ diff --git a/upload/apollo-13-1200-1200-675-675-crop-000000.jpg b/upload/apollo-13-1200-1200-675-675-crop-000000.jpg new file mode 100644 index 0000000..7baa2dc Binary files /dev/null and b/upload/apollo-13-1200-1200-675-675-crop-000000.jpg differ diff --git a/upload/apollo-crew-2.jpg b/upload/apollo-crew-2.jpg new file mode 100644 index 0000000..5d87793 Binary files /dev/null and b/upload/apollo-crew-2.jpg differ diff --git a/upload/apw5CMaiV1csnqybLRI1WQbzSTd.jpg b/upload/apw5CMaiV1csnqybLRI1WQbzSTd.jpg new file mode 100644 index 0000000..6677023 Binary files /dev/null and b/upload/apw5CMaiV1csnqybLRI1WQbzSTd.jpg differ diff --git a/upload/arrival-1200.jpg b/upload/arrival-1200.jpg new file mode 100644 index 0000000..a907820 Binary files /dev/null and b/upload/arrival-1200.jpg differ diff --git a/upload/arrival.jpg b/upload/arrival.jpg new file mode 100644 index 0000000..76fb1e9 Binary files /dev/null and b/upload/arrival.jpg differ diff --git a/upload/articolo-110402.jpg b/upload/articolo-110402.jpg new file mode 100644 index 0000000..e51abd4 Binary files /dev/null and b/upload/articolo-110402.jpg differ diff --git a/upload/articolo-111212.jpg b/upload/articolo-111212.jpg new file mode 100644 index 0000000..3d1caff Binary files /dev/null and b/upload/articolo-111212.jpg differ diff --git a/upload/arton1029-1450x800-c.jpg b/upload/arton1029-1450x800-c.jpg new file mode 100644 index 0000000..a7fa52b Binary files /dev/null and b/upload/arton1029-1450x800-c.jpg differ diff --git a/upload/assassin-s-creed-recensione-film-michael-fassbender-recensione-v5-32013-1280x16.jpg b/upload/assassin-s-creed-recensione-film-michael-fassbender-recensione-v5-32013-1280x16.jpg new file mode 100644 index 0000000..98d45b7 Binary files /dev/null and b/upload/assassin-s-creed-recensione-film-michael-fassbender-recensione-v5-32013-1280x16.jpg differ diff --git a/upload/assassins-creed-film_2783723.jpg b/upload/assassins-creed-film_2783723.jpg new file mode 100644 index 0000000..2ff6b2a Binary files /dev/null and b/upload/assassins-creed-film_2783723.jpg differ diff --git a/upload/atlantis-live-action-remake-disney-hp.jpg b/upload/atlantis-live-action-remake-disney-hp.jpg new file mode 100644 index 0000000..dc0f6fc Binary files /dev/null and b/upload/atlantis-live-action-remake-disney-hp.jpg differ diff --git a/upload/auZIuHEUec5tBTns3tCRXfayxZq.jpg b/upload/auZIuHEUec5tBTns3tCRXfayxZq.jpg new file mode 100644 index 0000000..01d14df Binary files /dev/null and b/upload/auZIuHEUec5tBTns3tCRXfayxZq.jpg differ diff --git a/upload/avhDOCbHBaxzqmxZIYDThh7ITTc.jpg b/upload/avhDOCbHBaxzqmxZIYDThh7ITTc.jpg new file mode 100644 index 0000000..798ae9e Binary files /dev/null and b/upload/avhDOCbHBaxzqmxZIYDThh7ITTc.jpg differ diff --git a/upload/axvBWwjDN8r8lW5a8bVvn5Tp5B9.jpg b/upload/axvBWwjDN8r8lW5a8bVvn5Tp5B9.jpg new file mode 100644 index 0000000..63b430c Binary files /dev/null and b/upload/axvBWwjDN8r8lW5a8bVvn5Tp5B9.jpg differ diff --git a/upload/azIbQpeKKNF9r85lBSRrNnMK0Si.jpg b/upload/azIbQpeKKNF9r85lBSRrNnMK0Si.jpg new file mode 100644 index 0000000..a0d718a Binary files /dev/null and b/upload/azIbQpeKKNF9r85lBSRrNnMK0Si.jpg differ diff --git a/upload/azmloi907.png b/upload/azmloi907.png new file mode 100644 index 0000000..8a1d569 Binary files /dev/null and b/upload/azmloi907.png differ diff --git a/upload/b0bddd941e88b49b.jpg b/upload/b0bddd941e88b49b.jpg new file mode 100644 index 0000000..4fe5d98 Binary files /dev/null and b/upload/b0bddd941e88b49b.jpg differ diff --git a/upload/b1Vwyg96L86W5sAqqF9V89p9Ogn.jpg b/upload/b1Vwyg96L86W5sAqqF9V89p9Ogn.jpg new file mode 100644 index 0000000..202f71e Binary files /dev/null and b/upload/b1Vwyg96L86W5sAqqF9V89p9Ogn.jpg differ diff --git a/upload/b2ed25f63890b744.jpg b/upload/b2ed25f63890b744.jpg new file mode 100644 index 0000000..d0593a7 Binary files /dev/null and b/upload/b2ed25f63890b744.jpg differ diff --git a/upload/b37U5gN6itEjaFcmaKhUOqG2Mkt.jpg b/upload/b37U5gN6itEjaFcmaKhUOqG2Mkt.jpg new file mode 100644 index 0000000..06dc155 Binary files /dev/null and b/upload/b37U5gN6itEjaFcmaKhUOqG2Mkt.jpg differ diff --git a/upload/b5AXnmTLqzcZGvwMnWBundnZJCw.jpg b/upload/b5AXnmTLqzcZGvwMnWBundnZJCw.jpg new file mode 100644 index 0000000..41f9201 Binary files /dev/null and b/upload/b5AXnmTLqzcZGvwMnWBundnZJCw.jpg differ diff --git a/upload/b6Spp82Tg8rv4YUSHGWFqFbgp0q.jpg b/upload/b6Spp82Tg8rv4YUSHGWFqFbgp0q.jpg new file mode 100644 index 0000000..4efab9e Binary files /dev/null and b/upload/b6Spp82Tg8rv4YUSHGWFqFbgp0q.jpg differ diff --git a/upload/b6e31f7f8892883e32d8cb346bbf4494.jpg b/upload/b6e31f7f8892883e32d8cb346bbf4494.jpg new file mode 100644 index 0000000..9e4da02 Binary files /dev/null and b/upload/b6e31f7f8892883e32d8cb346bbf4494.jpg differ diff --git a/upload/b9XoSklkXIDIOQh6otfs0l8YLCH.jpg b/upload/b9XoSklkXIDIOQh6otfs0l8YLCH.jpg new file mode 100644 index 0000000..84e1d05 Binary files /dev/null and b/upload/b9XoSklkXIDIOQh6otfs0l8YLCH.jpg differ diff --git a/upload/b9XoSklkXIDIOQh6otfs0l8YLCH_pZAh20h.jpg b/upload/b9XoSklkXIDIOQh6otfs0l8YLCH_pZAh20h.jpg new file mode 100644 index 0000000..a1e5e68 Binary files /dev/null and b/upload/b9XoSklkXIDIOQh6otfs0l8YLCH_pZAh20h.jpg differ diff --git a/upload/b9f986082e340e82dc0bb81719ej.png b/upload/b9f986082e340e82dc0bb81719ej.png new file mode 100644 index 0000000..e2f019d Binary files /dev/null and b/upload/b9f986082e340e82dc0bb81719ej.png differ diff --git a/upload/b9f986082e340e82dc0bb81719ej9.png b/upload/b9f986082e340e82dc0bb81719ej9.png new file mode 100644 index 0000000..d0a373f Binary files /dev/null and b/upload/b9f986082e340e82dc0bb81719ej9.png differ diff --git a/upload/bAkOVkZXat1Ocv2pZmY1Z3cr28h.jpg b/upload/bAkOVkZXat1Ocv2pZmY1Z3cr28h.jpg new file mode 100644 index 0000000..188fd1e Binary files /dev/null and b/upload/bAkOVkZXat1Ocv2pZmY1Z3cr28h.jpg differ diff --git a/upload/bGEzAGgDdXQfY2f505Vctmvo0RS.jpg b/upload/bGEzAGgDdXQfY2f505Vctmvo0RS.jpg new file mode 100644 index 0000000..d63cb07 Binary files /dev/null and b/upload/bGEzAGgDdXQfY2f505Vctmvo0RS.jpg differ diff --git a/upload/bIL7ENqh1egWTxN41sM2W42JqPc.jpg b/upload/bIL7ENqh1egWTxN41sM2W42JqPc.jpg new file mode 100644 index 0000000..32849ef Binary files /dev/null and b/upload/bIL7ENqh1egWTxN41sM2W42JqPc.jpg differ diff --git a/upload/bJLJAtGjBj836UjJZNOwgrfe5Ps.jpg b/upload/bJLJAtGjBj836UjJZNOwgrfe5Ps.jpg new file mode 100644 index 0000000..0fd157e Binary files /dev/null and b/upload/bJLJAtGjBj836UjJZNOwgrfe5Ps.jpg differ diff --git a/upload/bJlJBz5CMfoIhj9UNULUzTAj61y.jpg b/upload/bJlJBz5CMfoIhj9UNULUzTAj61y.jpg new file mode 100644 index 0000000..dad73ed Binary files /dev/null and b/upload/bJlJBz5CMfoIhj9UNULUzTAj61y.jpg differ diff --git a/upload/bLiC8Bh3g9C8JPUJspMkpDlL6nD.jpg b/upload/bLiC8Bh3g9C8JPUJspMkpDlL6nD.jpg new file mode 100644 index 0000000..7505695 Binary files /dev/null and b/upload/bLiC8Bh3g9C8JPUJspMkpDlL6nD.jpg differ diff --git a/upload/bMKiLh0mES4Uiococ240lbbTGXQ.jpg b/upload/bMKiLh0mES4Uiococ240lbbTGXQ.jpg new file mode 100644 index 0000000..5d323de Binary files /dev/null and b/upload/bMKiLh0mES4Uiococ240lbbTGXQ.jpg differ diff --git a/upload/bNeuaw2gXXRdWWagLxY45UEIN7l.jpg b/upload/bNeuaw2gXXRdWWagLxY45UEIN7l.jpg new file mode 100644 index 0000000..90edefc Binary files /dev/null and b/upload/bNeuaw2gXXRdWWagLxY45UEIN7l.jpg differ diff --git a/upload/bORKgryWrZ8q8PUBsMqgJGrbhkp.jpg b/upload/bORKgryWrZ8q8PUBsMqgJGrbhkp.jpg new file mode 100644 index 0000000..b80320a Binary files /dev/null and b/upload/bORKgryWrZ8q8PUBsMqgJGrbhkp.jpg differ diff --git a/upload/bQnfr24O1vzn6lxdKhRm0hQEXmc.jpg b/upload/bQnfr24O1vzn6lxdKhRm0hQEXmc.jpg new file mode 100644 index 0000000..81d043d Binary files /dev/null and b/upload/bQnfr24O1vzn6lxdKhRm0hQEXmc.jpg differ diff --git a/upload/bVmSXNgH1gpHYTDyF9Q826YwJT5.jpg b/upload/bVmSXNgH1gpHYTDyF9Q826YwJT5.jpg new file mode 100644 index 0000000..acbae3a Binary files /dev/null and b/upload/bVmSXNgH1gpHYTDyF9Q826YwJT5.jpg differ diff --git a/upload/bWOmzd1pUkSsP2efOtiocN9YUQq.jpg b/upload/bWOmzd1pUkSsP2efOtiocN9YUQq.jpg new file mode 100644 index 0000000..abc114f Binary files /dev/null and b/upload/bWOmzd1pUkSsP2efOtiocN9YUQq.jpg differ diff --git a/upload/bXb00CkHqx7TPchTGG131sWV59y.jpg b/upload/bXb00CkHqx7TPchTGG131sWV59y.jpg new file mode 100644 index 0000000..2998d03 Binary files /dev/null and b/upload/bXb00CkHqx7TPchTGG131sWV59y.jpg differ diff --git a/upload/bYR8O1H1ZlME7Dm9ysfTYZnRDpw.jpg b/upload/bYR8O1H1ZlME7Dm9ysfTYZnRDpw.jpg new file mode 100644 index 0000000..16f0676 Binary files /dev/null and b/upload/bYR8O1H1ZlME7Dm9ysfTYZnRDpw.jpg differ diff --git a/upload/bYeg8ssTvpFFFpWYbAkhrCCgedX.jpg b/upload/bYeg8ssTvpFFFpWYbAkhrCCgedX.jpg new file mode 100644 index 0000000..c82da5d Binary files /dev/null and b/upload/bYeg8ssTvpFFFpWYbAkhrCCgedX.jpg differ diff --git a/upload/bZX3tZfcH25hrb2vx4hYiYTFzFd.jpg b/upload/bZX3tZfcH25hrb2vx4hYiYTFzFd.jpg new file mode 100644 index 0000000..88e26b7 Binary files /dev/null and b/upload/bZX3tZfcH25hrb2vx4hYiYTFzFd.jpg differ diff --git a/upload/background.jpg b/upload/background.jpg new file mode 100644 index 0000000..e5c5432 Binary files /dev/null and b/upload/background.jpg differ diff --git a/upload/background_image.jpg b/upload/background_image.jpg new file mode 100644 index 0000000..a371466 Binary files /dev/null and b/upload/background_image.jpg differ diff --git a/upload/background_image_girl_anime.jpg b/upload/background_image_girl_anime.jpg new file mode 100644 index 0000000..c728f07 Binary files /dev/null and b/upload/background_image_girl_anime.jpg differ diff --git a/upload/background_ocU9eI1.jpg b/upload/background_ocU9eI1.jpg new file mode 100644 index 0000000..9109d48 Binary files /dev/null and b/upload/background_ocU9eI1.jpg differ diff --git a/upload/bcqTvavTgLNi2IRW47Aog3iFeo9.jpg b/upload/bcqTvavTgLNi2IRW47Aog3iFeo9.jpg new file mode 100644 index 0000000..cf82579 Binary files /dev/null and b/upload/bcqTvavTgLNi2IRW47Aog3iFeo9.jpg differ diff --git a/upload/beb314aca5c17f.jpg b/upload/beb314aca5c17f.jpg new file mode 100644 index 0000000..c4e1e0d Binary files /dev/null and b/upload/beb314aca5c17f.jpg differ diff --git a/upload/bfElrlousY13LSGKS5Lfwv4w6zs.jpg b/upload/bfElrlousY13LSGKS5Lfwv4w6zs.jpg new file mode 100644 index 0000000..9d71549 Binary files /dev/null and b/upload/bfElrlousY13LSGKS5Lfwv4w6zs.jpg differ diff --git a/upload/bfTKq6mGHt2CzZlBU31JHF9bMog.jpg b/upload/bfTKq6mGHt2CzZlBU31JHF9bMog.jpg new file mode 100644 index 0000000..adee882 Binary files /dev/null and b/upload/bfTKq6mGHt2CzZlBU31JHF9bMog.jpg differ diff --git a/upload/bgslxHUmtCncOa9hOIDsVBarfyc.jpg b/upload/bgslxHUmtCncOa9hOIDsVBarfyc.jpg new file mode 100644 index 0000000..d04f0eb Binary files /dev/null and b/upload/bgslxHUmtCncOa9hOIDsVBarfyc.jpg differ diff --git a/upload/bgx0hblyE1XYWHFFewrYjXE6DeQ.jpg b/upload/bgx0hblyE1XYWHFFewrYjXE6DeQ.jpg new file mode 100644 index 0000000..c396308 Binary files /dev/null and b/upload/bgx0hblyE1XYWHFFewrYjXE6DeQ.jpg differ diff --git a/upload/bh4VRie1Pv2fsfVMDZfn985B7sr.jpg b/upload/bh4VRie1Pv2fsfVMDZfn985B7sr.jpg new file mode 100644 index 0000000..4d81698 Binary files /dev/null and b/upload/bh4VRie1Pv2fsfVMDZfn985B7sr.jpg differ diff --git a/upload/bhVYu6Nf1Q1BlrAKdaXyTPexXVO.jpg b/upload/bhVYu6Nf1Q1BlrAKdaXyTPexXVO.jpg new file mode 100644 index 0000000..b3006ec Binary files /dev/null and b/upload/bhVYu6Nf1Q1BlrAKdaXyTPexXVO.jpg differ diff --git a/upload/biK5Dk.jpg b/upload/biK5Dk.jpg new file mode 100644 index 0000000..ddd8e7a Binary files /dev/null and b/upload/biK5Dk.jpg differ diff --git a/upload/bjPz7MKLxXjmoRvpkQwf8sz2TcK.jpg b/upload/bjPz7MKLxXjmoRvpkQwf8sz2TcK.jpg new file mode 100644 index 0000000..fb02b4e Binary files /dev/null and b/upload/bjPz7MKLxXjmoRvpkQwf8sz2TcK.jpg differ diff --git a/upload/bkQx3gUwXPC2TW7zBe6CejOwupN.jpg b/upload/bkQx3gUwXPC2TW7zBe6CejOwupN.jpg new file mode 100644 index 0000000..cbc1398 Binary files /dev/null and b/upload/bkQx3gUwXPC2TW7zBe6CejOwupN.jpg differ diff --git a/upload/blBOGMKU4cJDBllETLcWxz5xHog.jpg b/upload/blBOGMKU4cJDBllETLcWxz5xHog.jpg new file mode 100644 index 0000000..8e4bf72 Binary files /dev/null and b/upload/blBOGMKU4cJDBllETLcWxz5xHog.jpg differ diff --git a/upload/bokHgo581DnVBbKxoJOwXwN5EdD.jpg b/upload/bokHgo581DnVBbKxoJOwXwN5EdD.jpg new file mode 100644 index 0000000..90d2b95 Binary files /dev/null and b/upload/bokHgo581DnVBbKxoJOwXwN5EdD.jpg differ diff --git a/upload/bpeiV13Lix5oGzUmGKFdKf9h0RP.jpg b/upload/bpeiV13Lix5oGzUmGKFdKf9h0RP.jpg new file mode 100644 index 0000000..c995a1c Binary files /dev/null and b/upload/bpeiV13Lix5oGzUmGKFdKf9h0RP.jpg differ diff --git a/upload/brYHUMl6o2VxJfyH9MWPziGzoQW.jpg b/upload/brYHUMl6o2VxJfyH9MWPziGzoQW.jpg new file mode 100644 index 0000000..9f44d90 Binary files /dev/null and b/upload/brYHUMl6o2VxJfyH9MWPziGzoQW.jpg differ diff --git a/upload/bsg0mrxUKyJoL4oSGP5mlhEsqp.jpg b/upload/bsg0mrxUKyJoL4oSGP5mlhEsqp.jpg new file mode 100644 index 0000000..55eeeb8 Binary files /dev/null and b/upload/bsg0mrxUKyJoL4oSGP5mlhEsqp.jpg differ diff --git a/upload/btd0r2.jpg b/upload/btd0r2.jpg new file mode 100644 index 0000000..d992994 Binary files /dev/null and b/upload/btd0r2.jpg differ diff --git a/upload/bvRnPaai6JL7XHF4K6414DdSHro.jpg b/upload/bvRnPaai6JL7XHF4K6414DdSHro.jpg new file mode 100644 index 0000000..2bf437a Binary files /dev/null and b/upload/bvRnPaai6JL7XHF4K6414DdSHro.jpg differ diff --git a/upload/bvpI11RJbE6lHSWCrhvNC1S1MtO.jpg b/upload/bvpI11RJbE6lHSWCrhvNC1S1MtO.jpg new file mode 100644 index 0000000..ca3db32 Binary files /dev/null and b/upload/bvpI11RJbE6lHSWCrhvNC1S1MtO.jpg differ diff --git a/upload/c2aOeMSyQCKLAj9HackcOaxe0MP.jpg b/upload/c2aOeMSyQCKLAj9HackcOaxe0MP.jpg new file mode 100644 index 0000000..d7df98b Binary files /dev/null and b/upload/c2aOeMSyQCKLAj9HackcOaxe0MP.jpg differ diff --git a/upload/c2g83Ux98pi1fGAs42xUYfJHf4Q.jpg b/upload/c2g83Ux98pi1fGAs42xUYfJHf4Q.jpg new file mode 100644 index 0000000..7d23086 Binary files /dev/null and b/upload/c2g83Ux98pi1fGAs42xUYfJHf4Q.jpg differ diff --git a/upload/c2zuk9304sz6LQLNDNPNGOmNCtv.jpg b/upload/c2zuk9304sz6LQLNDNPNGOmNCtv.jpg new file mode 100644 index 0000000..2db1698 Binary files /dev/null and b/upload/c2zuk9304sz6LQLNDNPNGOmNCtv.jpg differ diff --git a/upload/c2zuk9304sz6LQLNDNPNGOmNCtv_yHxumLS.jpg b/upload/c2zuk9304sz6LQLNDNPNGOmNCtv_yHxumLS.jpg new file mode 100644 index 0000000..d35beeb Binary files /dev/null and b/upload/c2zuk9304sz6LQLNDNPNGOmNCtv_yHxumLS.jpg differ diff --git a/upload/c36cf5Hu4yKLMnho7jVa8EirMzj.jpg b/upload/c36cf5Hu4yKLMnho7jVa8EirMzj.jpg new file mode 100644 index 0000000..14074e2 Binary files /dev/null and b/upload/c36cf5Hu4yKLMnho7jVa8EirMzj.jpg differ diff --git a/upload/c4fb51d3ee88857077f6e06fc7f438ef.jpg b/upload/c4fb51d3ee88857077f6e06fc7f438ef.jpg new file mode 100644 index 0000000..a628d49 Binary files /dev/null and b/upload/c4fb51d3ee88857077f6e06fc7f438ef.jpg differ diff --git a/upload/c558da170075278a8f7090b7d81eaec9.jpg b/upload/c558da170075278a8f7090b7d81eaec9.jpg new file mode 100644 index 0000000..fa59373 Binary files /dev/null and b/upload/c558da170075278a8f7090b7d81eaec9.jpg differ diff --git a/upload/c7Mjuip0jfHLY7x8ZSEriRj45cu.jpg b/upload/c7Mjuip0jfHLY7x8ZSEriRj45cu.jpg new file mode 100644 index 0000000..ecc4425 Binary files /dev/null and b/upload/c7Mjuip0jfHLY7x8ZSEriRj45cu.jpg differ diff --git a/upload/c974bdcec139557f866c0818461c381867228af5_s2_n2.jpg b/upload/c974bdcec139557f866c0818461c381867228af5_s2_n2.jpg new file mode 100644 index 0000000..179b885 Binary files /dev/null and b/upload/c974bdcec139557f866c0818461c381867228af5_s2_n2.jpg differ diff --git a/upload/cDDhTPf89DX2u2kiirAXE7jK8dl.jpg b/upload/cDDhTPf89DX2u2kiirAXE7jK8dl.jpg new file mode 100644 index 0000000..e719d8e Binary files /dev/null and b/upload/cDDhTPf89DX2u2kiirAXE7jK8dl.jpg differ diff --git a/upload/cDOv649oRCxLxsrMtboqSFOb6aB.jpg b/upload/cDOv649oRCxLxsrMtboqSFOb6aB.jpg new file mode 100644 index 0000000..60035c0 Binary files /dev/null and b/upload/cDOv649oRCxLxsrMtboqSFOb6aB.jpg differ diff --git a/upload/cDdz0m76e2FUwBsmQxrEoR4ldm5.jpg b/upload/cDdz0m76e2FUwBsmQxrEoR4ldm5.jpg new file mode 100644 index 0000000..0b94516 Binary files /dev/null and b/upload/cDdz0m76e2FUwBsmQxrEoR4ldm5.jpg differ diff --git a/upload/cJ2VIhEdmlgGl7FiQTqLt95bjdK.jpg b/upload/cJ2VIhEdmlgGl7FiQTqLt95bjdK.jpg new file mode 100644 index 0000000..de4f1c1 Binary files /dev/null and b/upload/cJ2VIhEdmlgGl7FiQTqLt95bjdK.jpg differ diff --git a/upload/cKzu8xiwtCsL1QEptwQ1qtaM3mp.jpg b/upload/cKzu8xiwtCsL1QEptwQ1qtaM3mp.jpg new file mode 100644 index 0000000..cd8137a Binary files /dev/null and b/upload/cKzu8xiwtCsL1QEptwQ1qtaM3mp.jpg differ diff --git a/upload/cLBzhr4har4npYij2VTWNIR0TEp.jpg b/upload/cLBzhr4har4npYij2VTWNIR0TEp.jpg new file mode 100644 index 0000000..d5cf2d9 Binary files /dev/null and b/upload/cLBzhr4har4npYij2VTWNIR0TEp.jpg differ diff --git a/upload/cRh9xFIHsOoDwsaDUzi0PwOvBcV.jpg b/upload/cRh9xFIHsOoDwsaDUzi0PwOvBcV.jpg new file mode 100644 index 0000000..8fd82fe Binary files /dev/null and b/upload/cRh9xFIHsOoDwsaDUzi0PwOvBcV.jpg differ diff --git a/upload/cT0o6RFi36TkMFG1wWyTyGb2jrR.jpg b/upload/cT0o6RFi36TkMFG1wWyTyGb2jrR.jpg new file mode 100644 index 0000000..fe2800c Binary files /dev/null and b/upload/cT0o6RFi36TkMFG1wWyTyGb2jrR.jpg differ diff --git a/upload/cWkbd0tBNKAqm49FomICxLXfU3C.jpg b/upload/cWkbd0tBNKAqm49FomICxLXfU3C.jpg new file mode 100644 index 0000000..543ed5f Binary files /dev/null and b/upload/cWkbd0tBNKAqm49FomICxLXfU3C.jpg differ diff --git a/upload/cacb5310761f3f803fd2e9d45bc208d8.jpg b/upload/cacb5310761f3f803fd2e9d45bc208d8.jpg new file mode 100644 index 0000000..ae49299 Binary files /dev/null and b/upload/cacb5310761f3f803fd2e9d45bc208d8.jpg differ diff --git a/upload/callum-inside-animus.jpg b/upload/callum-inside-animus.jpg new file mode 100644 index 0000000..bc22015 Binary files /dev/null and b/upload/callum-inside-animus.jpg differ diff --git a/upload/cf0bfe137bb709b6ef81fc35db6077e6.jpg b/upload/cf0bfe137bb709b6ef81fc35db6077e6.jpg new file mode 100644 index 0000000..1d13098 Binary files /dev/null and b/upload/cf0bfe137bb709b6ef81fc35db6077e6.jpg differ diff --git a/upload/cfdsg.jpg b/upload/cfdsg.jpg new file mode 100644 index 0000000..a13d48a Binary files /dev/null and b/upload/cfdsg.jpg differ diff --git a/upload/cgjfiOxVn5BW0U7hD5Dp52wrPMD.jpg b/upload/cgjfiOxVn5BW0U7hD5Dp52wrPMD.jpg new file mode 100644 index 0000000..8ef67a3 Binary files /dev/null and b/upload/cgjfiOxVn5BW0U7hD5Dp52wrPMD.jpg differ diff --git a/upload/ciBMz1QaGNcGaznf03wY4oxQflB.jpg b/upload/ciBMz1QaGNcGaznf03wY4oxQflB.jpg new file mode 100644 index 0000000..232b12d Binary files /dev/null and b/upload/ciBMz1QaGNcGaznf03wY4oxQflB.jpg differ diff --git a/upload/ciID0Mu1pPuOUP3JbOsDXQ5aMV6.jpg b/upload/ciID0Mu1pPuOUP3JbOsDXQ5aMV6.jpg new file mode 100644 index 0000000..f6f4d11 Binary files /dev/null and b/upload/ciID0Mu1pPuOUP3JbOsDXQ5aMV6.jpg differ diff --git a/upload/cjFawSYprlCnrlCm85PbcTWlIg1.jpg b/upload/cjFawSYprlCnrlCm85PbcTWlIg1.jpg new file mode 100644 index 0000000..4d744cc Binary files /dev/null and b/upload/cjFawSYprlCnrlCm85PbcTWlIg1.jpg differ diff --git a/upload/cmyDcJLkWjIBsB74K7BMA5DL5QU.jpg b/upload/cmyDcJLkWjIBsB74K7BMA5DL5QU.jpg new file mode 100644 index 0000000..95e8a71 Binary files /dev/null and b/upload/cmyDcJLkWjIBsB74K7BMA5DL5QU.jpg differ diff --git a/upload/cnA434G2b8m95dp76AKMhM1ufku.jpg b/upload/cnA434G2b8m95dp76AKMhM1ufku.jpg new file mode 100644 index 0000000..ce1ce0a Binary files /dev/null and b/upload/cnA434G2b8m95dp76AKMhM1ufku.jpg differ diff --git a/upload/cnSi0f.jpg b/upload/cnSi0f.jpg new file mode 100644 index 0000000..319f0c8 Binary files /dev/null and b/upload/cnSi0f.jpg differ diff --git a/upload/commodo.jpg b/upload/commodo.jpg new file mode 100644 index 0000000..e5d2d5f Binary files /dev/null and b/upload/commodo.jpg differ diff --git a/upload/community_image_1398322027.gif b/upload/community_image_1398322027.gif new file mode 100644 index 0000000..f770306 Binary files /dev/null and b/upload/community_image_1398322027.gif differ diff --git a/upload/coverlg.jpg b/upload/coverlg.jpg new file mode 100644 index 0000000..2f81cc4 Binary files /dev/null and b/upload/coverlg.jpg differ diff --git a/upload/cowKpgUTINdpO2eOip3D2HtGa3T.jpg b/upload/cowKpgUTINdpO2eOip3D2HtGa3T.jpg new file mode 100644 index 0000000..d3f2f59 Binary files /dev/null and b/upload/cowKpgUTINdpO2eOip3D2HtGa3T.jpg differ diff --git a/upload/cq5CYGaEWWJpWFq2BWKjDRA8w8z.jpg b/upload/cq5CYGaEWWJpWFq2BWKjDRA8w8z.jpg new file mode 100644 index 0000000..2bff13f Binary files /dev/null and b/upload/cq5CYGaEWWJpWFq2BWKjDRA8w8z.jpg differ diff --git a/upload/crop.jpg b/upload/crop.jpg new file mode 100644 index 0000000..e5befc1 Binary files /dev/null and b/upload/crop.jpg differ diff --git a/upload/cropped-1920-1080-1085729.jpg b/upload/cropped-1920-1080-1085729.jpg new file mode 100644 index 0000000..d2e8328 Binary files /dev/null and b/upload/cropped-1920-1080-1085729.jpg differ diff --git a/upload/cropped-1920-1080-1105132.jpg b/upload/cropped-1920-1080-1105132.jpg new file mode 100644 index 0000000..c16bb74 Binary files /dev/null and b/upload/cropped-1920-1080-1105132.jpg differ diff --git a/upload/cropped-1920-1080-151870.jpg b/upload/cropped-1920-1080-151870.jpg new file mode 100644 index 0000000..3a0b232 Binary files /dev/null and b/upload/cropped-1920-1080-151870.jpg differ diff --git a/upload/cropped-1920-1080-204788.jpg b/upload/cropped-1920-1080-204788.jpg new file mode 100644 index 0000000..aae6f1b Binary files /dev/null and b/upload/cropped-1920-1080-204788.jpg differ diff --git a/upload/cropped-1920-1080-226095.jpg b/upload/cropped-1920-1080-226095.jpg new file mode 100644 index 0000000..3d702c5 Binary files /dev/null and b/upload/cropped-1920-1080-226095.jpg differ diff --git a/upload/cropped-1920-1080-294425.jpg b/upload/cropped-1920-1080-294425.jpg new file mode 100644 index 0000000..390f800 Binary files /dev/null and b/upload/cropped-1920-1080-294425.jpg differ diff --git a/upload/cropped-1920-1080-556444.jpg b/upload/cropped-1920-1080-556444.jpg new file mode 100644 index 0000000..fe4521d Binary files /dev/null and b/upload/cropped-1920-1080-556444.jpg differ diff --git a/upload/cropped-1920-1080-556455.jpg b/upload/cropped-1920-1080-556455.jpg new file mode 100644 index 0000000..903198e Binary files /dev/null and b/upload/cropped-1920-1080-556455.jpg differ diff --git a/upload/cropped-1920-1080-556565.jpg b/upload/cropped-1920-1080-556565.jpg new file mode 100644 index 0000000..193d61c Binary files /dev/null and b/upload/cropped-1920-1080-556565.jpg differ diff --git a/upload/cropped-1920-1080-923165.jpg b/upload/cropped-1920-1080-923165.jpg new file mode 100644 index 0000000..a4a736d Binary files /dev/null and b/upload/cropped-1920-1080-923165.jpg differ diff --git a/upload/cropped-1920-1080-923173.jpg b/upload/cropped-1920-1080-923173.jpg new file mode 100644 index 0000000..d793835 Binary files /dev/null and b/upload/cropped-1920-1080-923173.jpg differ diff --git a/upload/cropped-1920-1080-923494.jpg b/upload/cropped-1920-1080-923494.jpg new file mode 100644 index 0000000..8fbc12b Binary files /dev/null and b/upload/cropped-1920-1080-923494.jpg differ diff --git a/upload/cropped-1920-1080-923500.jpg b/upload/cropped-1920-1080-923500.jpg new file mode 100644 index 0000000..83d2e95 Binary files /dev/null and b/upload/cropped-1920-1080-923500.jpg differ diff --git a/upload/cropped-1920-1080-947325.jpg b/upload/cropped-1920-1080-947325.jpg new file mode 100644 index 0000000..c2fe195 Binary files /dev/null and b/upload/cropped-1920-1080-947325.jpg differ diff --git a/upload/cs2.43-copia.jpg b/upload/cs2.43-copia.jpg new file mode 100644 index 0000000..fa0b146 Binary files /dev/null and b/upload/cs2.43-copia.jpg differ diff --git a/upload/cs6z1byqL0ffw1948FJI2Jr1HVT.jpg b/upload/cs6z1byqL0ffw1948FJI2Jr1HVT.jpg new file mode 100644 index 0000000..5eb9cd1 Binary files /dev/null and b/upload/cs6z1byqL0ffw1948FJI2Jr1HVT.jpg differ diff --git a/upload/cubJVCW297g6nBDI8mGoYg7iipp.jpg b/upload/cubJVCW297g6nBDI8mGoYg7iipp.jpg new file mode 100644 index 0000000..699712c Binary files /dev/null and b/upload/cubJVCW297g6nBDI8mGoYg7iipp.jpg differ diff --git a/upload/cubJVCW297g6nBDI8mGoYg7iipp_AQdEn0k.jpg b/upload/cubJVCW297g6nBDI8mGoYg7iipp_AQdEn0k.jpg new file mode 100644 index 0000000..f6d49f4 Binary files /dev/null and b/upload/cubJVCW297g6nBDI8mGoYg7iipp_AQdEn0k.jpg differ diff --git a/upload/cvWzggFuKqFrojLhIPaTif23DpV.jpg b/upload/cvWzggFuKqFrojLhIPaTif23DpV.jpg new file mode 100644 index 0000000..0b5e7a7 Binary files /dev/null and b/upload/cvWzggFuKqFrojLhIPaTif23DpV.jpg differ diff --git a/upload/cvhEXingh5GH3WIiUf0PCKw21kT.jpg b/upload/cvhEXingh5GH3WIiUf0PCKw21kT.jpg new file mode 100644 index 0000000..b82636e Binary files /dev/null and b/upload/cvhEXingh5GH3WIiUf0PCKw21kT.jpg differ diff --git a/upload/cwi9VbL3pA2hD1LNCqEW1BYcvzw.jpg b/upload/cwi9VbL3pA2hD1LNCqEW1BYcvzw.jpg new file mode 100644 index 0000000..2a7c7de Binary files /dev/null and b/upload/cwi9VbL3pA2hD1LNCqEW1BYcvzw.jpg differ diff --git a/upload/cx1Ycae.png b/upload/cx1Ycae.png new file mode 100644 index 0000000..1e3b4d2 Binary files /dev/null and b/upload/cx1Ycae.png differ diff --git a/upload/cxIwqO2fYHBVIfATkODv3m2BImL.jpg b/upload/cxIwqO2fYHBVIfATkODv3m2BImL.jpg new file mode 100644 index 0000000..a51b992 Binary files /dev/null and b/upload/cxIwqO2fYHBVIfATkODv3m2BImL.jpg differ diff --git a/upload/cyuhi.jpg b/upload/cyuhi.jpg new file mode 100644 index 0000000..fccb954 Binary files /dev/null and b/upload/cyuhi.jpg differ diff --git a/upload/czdMTESEgDREa6vutnMpTlRWIir.jpg b/upload/czdMTESEgDREa6vutnMpTlRWIir.jpg new file mode 100644 index 0000000..f632c6c Binary files /dev/null and b/upload/czdMTESEgDREa6vutnMpTlRWIir.jpg differ diff --git a/upload/d0KyaXMQz3Z8yuclSC7QxcSsNb6.jpg b/upload/d0KyaXMQz3Z8yuclSC7QxcSsNb6.jpg new file mode 100644 index 0000000..70ea367 Binary files /dev/null and b/upload/d0KyaXMQz3Z8yuclSC7QxcSsNb6.jpg differ diff --git a/upload/d7wcwvd-4281fd1b-1fd5-4c7d-bff1-54745fddae79.jpg b/upload/d7wcwvd-4281fd1b-1fd5-4c7d-bff1-54745fddae79.jpg new file mode 100644 index 0000000..05ad7dd Binary files /dev/null and b/upload/d7wcwvd-4281fd1b-1fd5-4c7d-bff1-54745fddae79.jpg differ diff --git a/upload/d9051df4dcbeb0ee8fdeba448d34d63c1553469736.jpeg b/upload/d9051df4dcbeb0ee8fdeba448d34d63c1553469736.jpeg new file mode 100644 index 0000000..6a78a14 Binary files /dev/null and b/upload/d9051df4dcbeb0ee8fdeba448d34d63c1553469736.jpeg differ diff --git a/upload/dBZhGEDbuWQFE2AHPCRtq20N98h.jpg b/upload/dBZhGEDbuWQFE2AHPCRtq20N98h.jpg new file mode 100644 index 0000000..3a8d554 Binary files /dev/null and b/upload/dBZhGEDbuWQFE2AHPCRtq20N98h.jpg differ diff --git a/upload/dDO2d5NVbHWqKlnoSjAyn3ignbJ.jpg b/upload/dDO2d5NVbHWqKlnoSjAyn3ignbJ.jpg new file mode 100644 index 0000000..361c995 Binary files /dev/null and b/upload/dDO2d5NVbHWqKlnoSjAyn3ignbJ.jpg differ diff --git a/upload/dDmCjhfE0aTlqPY5D4vxT1G9Qm2.jpg b/upload/dDmCjhfE0aTlqPY5D4vxT1G9Qm2.jpg new file mode 100644 index 0000000..23b8bd9 Binary files /dev/null and b/upload/dDmCjhfE0aTlqPY5D4vxT1G9Qm2.jpg differ diff --git a/upload/dFGQp8cIbcad3adgofMaWD3GErG.jpg b/upload/dFGQp8cIbcad3adgofMaWD3GErG.jpg new file mode 100644 index 0000000..2178db7 Binary files /dev/null and b/upload/dFGQp8cIbcad3adgofMaWD3GErG.jpg differ diff --git a/upload/dFYguAfeVt19qAbzJ5mArn7DEJw.jpg b/upload/dFYguAfeVt19qAbzJ5mArn7DEJw.jpg new file mode 100644 index 0000000..7b0ff95 Binary files /dev/null and b/upload/dFYguAfeVt19qAbzJ5mArn7DEJw.jpg differ diff --git a/upload/dGEjo6eLvx7haI1VP3Do0sAGZPi.jpg b/upload/dGEjo6eLvx7haI1VP3Do0sAGZPi.jpg new file mode 100644 index 0000000..7f446b3 Binary files /dev/null and b/upload/dGEjo6eLvx7haI1VP3Do0sAGZPi.jpg differ diff --git a/upload/dIjYHlDHm3kNgJOZSzaUNYlD29g.jpg b/upload/dIjYHlDHm3kNgJOZSzaUNYlD29g.jpg new file mode 100644 index 0000000..61bf116 Binary files /dev/null and b/upload/dIjYHlDHm3kNgJOZSzaUNYlD29g.jpg differ diff --git a/upload/dJBS2Uq9Qr2TqZ6vVadux6Mbgcf.jpg b/upload/dJBS2Uq9Qr2TqZ6vVadux6Mbgcf.jpg new file mode 100644 index 0000000..c24f5a5 Binary files /dev/null and b/upload/dJBS2Uq9Qr2TqZ6vVadux6Mbgcf.jpg differ diff --git a/upload/dJBS2Uq9Qr2TqZ6vVadux6Mbgcf_3UMwffW.jpg b/upload/dJBS2Uq9Qr2TqZ6vVadux6Mbgcf_3UMwffW.jpg new file mode 100644 index 0000000..75e2235 Binary files /dev/null and b/upload/dJBS2Uq9Qr2TqZ6vVadux6Mbgcf_3UMwffW.jpg differ diff --git a/upload/dJjruhgpIZSfdlLA3hl6wpfxDf2.jpg b/upload/dJjruhgpIZSfdlLA3hl6wpfxDf2.jpg new file mode 100644 index 0000000..db70d7d Binary files /dev/null and b/upload/dJjruhgpIZSfdlLA3hl6wpfxDf2.jpg differ diff --git a/upload/dJkZyYpYWo0AkLMi9SiUwIixCKd.jpg b/upload/dJkZyYpYWo0AkLMi9SiUwIixCKd.jpg new file mode 100644 index 0000000..5b98a27 Binary files /dev/null and b/upload/dJkZyYpYWo0AkLMi9SiUwIixCKd.jpg differ diff --git a/upload/dMZxEdrWIzUmUoOz2zvmFuutbj7.jpg b/upload/dMZxEdrWIzUmUoOz2zvmFuutbj7.jpg new file mode 100644 index 0000000..6120004 Binary files /dev/null and b/upload/dMZxEdrWIzUmUoOz2zvmFuutbj7.jpg differ diff --git a/upload/dNt5q68BBkddBxlvrHDa1apyBy8.jpg b/upload/dNt5q68BBkddBxlvrHDa1apyBy8.jpg new file mode 100644 index 0000000..ce63502 Binary files /dev/null and b/upload/dNt5q68BBkddBxlvrHDa1apyBy8.jpg differ diff --git a/upload/dNznSMEcNW3XTcruhBMAT6QQo5N.jpg b/upload/dNznSMEcNW3XTcruhBMAT6QQo5N.jpg new file mode 100644 index 0000000..d1d2bf8 Binary files /dev/null and b/upload/dNznSMEcNW3XTcruhBMAT6QQo5N.jpg differ diff --git a/upload/dNznSMEcNW3XTcruhBMAT6QQo5N_bK4JRUV.jpg b/upload/dNznSMEcNW3XTcruhBMAT6QQo5N_bK4JRUV.jpg new file mode 100644 index 0000000..e64ec89 Binary files /dev/null and b/upload/dNznSMEcNW3XTcruhBMAT6QQo5N_bK4JRUV.jpg differ diff --git a/upload/dPrUPFcgLfNbmDL8V69vcrTyEfb.jpg b/upload/dPrUPFcgLfNbmDL8V69vcrTyEfb.jpg new file mode 100644 index 0000000..fb6fbb6 Binary files /dev/null and b/upload/dPrUPFcgLfNbmDL8V69vcrTyEfb.jpg differ diff --git a/upload/dU2IQqQ8wg98F9VIfgEuKAfc132.jpg b/upload/dU2IQqQ8wg98F9VIfgEuKAfc132.jpg new file mode 100644 index 0000000..e4be0fc Binary files /dev/null and b/upload/dU2IQqQ8wg98F9VIfgEuKAfc132.jpg differ diff --git a/upload/da8c9ac1aa8387967d5892b3d4b9ae9340bd9954_hq.jpg b/upload/da8c9ac1aa8387967d5892b3d4b9ae9340bd9954_hq.jpg new file mode 100644 index 0000000..76a3182 Binary files /dev/null and b/upload/da8c9ac1aa8387967d5892b3d4b9ae9340bd9954_hq.jpg differ diff --git a/upload/daL27yunol4Vhq7Adz81ApoPlkg.jpg b/upload/daL27yunol4Vhq7Adz81ApoPlkg.jpg new file mode 100644 index 0000000..de1bd13 Binary files /dev/null and b/upload/daL27yunol4Vhq7Adz81ApoPlkg.jpg differ diff --git a/upload/dbc102d9-13ec-4086-ac31-06fe94d58605.jpg b/upload/dbc102d9-13ec-4086-ac31-06fe94d58605.jpg new file mode 100644 index 0000000..88e5f12 Binary files /dev/null and b/upload/dbc102d9-13ec-4086-ac31-06fe94d58605.jpg differ diff --git a/upload/dde27e_34a87d225.png b/upload/dde27e_34a87d225.png new file mode 100644 index 0000000..2a87705 Binary files /dev/null and b/upload/dde27e_34a87d225.png differ diff --git a/upload/ddffgghhjj.jpg b/upload/ddffgghhjj.jpg new file mode 100644 index 0000000..d31c259 Binary files /dev/null and b/upload/ddffgghhjj.jpg differ diff --git a/upload/dds1ox9rv6rvbUAllJ2zpkuyHM1.jpg b/upload/dds1ox9rv6rvbUAllJ2zpkuyHM1.jpg new file mode 100644 index 0000000..1d25de2 Binary files /dev/null and b/upload/dds1ox9rv6rvbUAllJ2zpkuyHM1.jpg differ diff --git a/upload/deadpool-guns-4k-wallpaper.jpg b/upload/deadpool-guns-4k-wallpaper.jpg new file mode 100644 index 0000000..0a0a9f1 Binary files /dev/null and b/upload/deadpool-guns-4k-wallpaper.jpg differ diff --git a/upload/deadpool-movie-hd_1536362270.jpg b/upload/deadpool-movie-hd_1536362270.jpg new file mode 100644 index 0000000..a96002c Binary files /dev/null and b/upload/deadpool-movie-hd_1536362270.jpg differ diff --git a/upload/deadpool_clip_hd.0.jpg b/upload/deadpool_clip_hd.0.jpg new file mode 100644 index 0000000..9dc89e8 Binary files /dev/null and b/upload/deadpool_clip_hd.0.jpg differ diff --git a/upload/deb65109e197e3d2.jpg b/upload/deb65109e197e3d2.jpg new file mode 100644 index 0000000..3332d0e Binary files /dev/null and b/upload/deb65109e197e3d2.jpg differ diff --git a/upload/default/Doom.jpeg b/upload/default/Doom.jpeg new file mode 100644 index 0000000..9d42602 Binary files /dev/null and b/upload/default/Doom.jpeg differ diff --git a/upload/default/default.png b/upload/default/default.png new file mode 100644 index 0000000..c302bfd Binary files /dev/null and b/upload/default/default.png differ diff --git a/upload/default_xVXRnKk.png b/upload/default_xVXRnKk.png new file mode 100644 index 0000000..c302bfd Binary files /dev/null and b/upload/default_xVXRnKk.png differ diff --git a/upload/depdB9y1ro4f59V63IyZiyRPKHG.jpg b/upload/depdB9y1ro4f59V63IyZiyRPKHG.jpg new file mode 100644 index 0000000..ea06387 Binary files /dev/null and b/upload/depdB9y1ro4f59V63IyZiyRPKHG.jpg differ diff --git a/upload/df-02748-1.jpg b/upload/df-02748-1.jpg new file mode 100644 index 0000000..46680af Binary files /dev/null and b/upload/df-02748-1.jpg differ diff --git a/upload/dgdKGnA2aG4W3DoPLormPWVtocl.jpg b/upload/dgdKGnA2aG4W3DoPLormPWVtocl.jpg new file mode 100644 index 0000000..600c565 Binary files /dev/null and b/upload/dgdKGnA2aG4W3DoPLormPWVtocl.jpg differ diff --git a/upload/di6lpMWDZLwg7Z265yhFNhqss2F.jpg b/upload/di6lpMWDZLwg7Z265yhFNhqss2F.jpg new file mode 100644 index 0000000..5f1ad5f Binary files /dev/null and b/upload/di6lpMWDZLwg7Z265yhFNhqss2F.jpg differ diff --git a/upload/do0EU1nOFwTH7qrOEYCJv71pfPg.jpg b/upload/do0EU1nOFwTH7qrOEYCJv71pfPg.jpg new file mode 100644 index 0000000..5d0b405 Binary files /dev/null and b/upload/do0EU1nOFwTH7qrOEYCJv71pfPg.jpg differ diff --git a/upload/downfall-untergang-der.jpg b/upload/downfall-untergang-der.jpg new file mode 100644 index 0000000..253eeaa Binary files /dev/null and b/upload/downfall-untergang-der.jpg differ diff --git a/upload/download-1-1038x576.jpg b/upload/download-1-1038x576.jpg new file mode 100644 index 0000000..04cd2cc Binary files /dev/null and b/upload/download-1-1038x576.jpg differ diff --git a/upload/dqQIgYgP65tAOcgzXzjbqOQ2BV9.jpg b/upload/dqQIgYgP65tAOcgzXzjbqOQ2BV9.jpg new file mode 100644 index 0000000..9b0d94b Binary files /dev/null and b/upload/dqQIgYgP65tAOcgzXzjbqOQ2BV9.jpg differ diff --git a/upload/drIxCVyHbWWjtmlurRaAf7dHXc9.jpg b/upload/drIxCVyHbWWjtmlurRaAf7dHXc9.jpg new file mode 100644 index 0000000..76f5aa0 Binary files /dev/null and b/upload/drIxCVyHbWWjtmlurRaAf7dHXc9.jpg differ diff --git a/upload/duxXmVTVe9JzwDvRMY2vDZlC6aB.jpg b/upload/duxXmVTVe9JzwDvRMY2vDZlC6aB.jpg new file mode 100644 index 0000000..2fd677d Binary files /dev/null and b/upload/duxXmVTVe9JzwDvRMY2vDZlC6aB.jpg differ diff --git a/upload/dv4jOrYEteoKIRZ0TNWPA9HqE8r.jpg b/upload/dv4jOrYEteoKIRZ0TNWPA9HqE8r.jpg new file mode 100644 index 0000000..db95c89 Binary files /dev/null and b/upload/dv4jOrYEteoKIRZ0TNWPA9HqE8r.jpg differ diff --git a/upload/dxZ8iGf5jQoLcNqBJL6uzNTivp.jpg b/upload/dxZ8iGf5jQoLcNqBJL6uzNTivp.jpg new file mode 100644 index 0000000..4c398cd Binary files /dev/null and b/upload/dxZ8iGf5jQoLcNqBJL6uzNTivp.jpg differ diff --git a/upload/dyVVZtkuOHi24XYn33GcCzembG2.jpg b/upload/dyVVZtkuOHi24XYn33GcCzembG2.jpg new file mode 100644 index 0000000..cef46cf Binary files /dev/null and b/upload/dyVVZtkuOHi24XYn33GcCzembG2.jpg differ diff --git a/upload/dypbMiWx4Dr0Wa3C80VIZCeByJP.jpg b/upload/dypbMiWx4Dr0Wa3C80VIZCeByJP.jpg new file mode 100644 index 0000000..4a80474 Binary files /dev/null and b/upload/dypbMiWx4Dr0Wa3C80VIZCeByJP.jpg differ diff --git a/upload/dytzj9yo098z.jpg b/upload/dytzj9yo098z.jpg new file mode 100644 index 0000000..fa7cf10 Binary files /dev/null and b/upload/dytzj9yo098z.jpg differ diff --git a/upload/dzyyDgfJArRSMpv9Co7jD50PoEA.jpg b/upload/dzyyDgfJArRSMpv9Co7jD50PoEA.jpg new file mode 100644 index 0000000..7f7ffed Binary files /dev/null and b/upload/dzyyDgfJArRSMpv9Co7jD50PoEA.jpg differ diff --git a/upload/e0G8BNfxEA9wXxWmWc9rdiQ1qup.jpg b/upload/e0G8BNfxEA9wXxWmWc9rdiQ1qup.jpg new file mode 100644 index 0000000..fae5905 Binary files /dev/null and b/upload/e0G8BNfxEA9wXxWmWc9rdiQ1qup.jpg differ diff --git a/upload/e109286447ef193db8d5f78f5619c4aa.jpg b/upload/e109286447ef193db8d5f78f5619c4aa.jpg new file mode 100644 index 0000000..93eff49 Binary files /dev/null and b/upload/e109286447ef193db8d5f78f5619c4aa.jpg differ diff --git a/upload/e4S1jhTMXJRjhG1S8doUW81DH2i.jpg b/upload/e4S1jhTMXJRjhG1S8doUW81DH2i.jpg new file mode 100644 index 0000000..b65c74f Binary files /dev/null and b/upload/e4S1jhTMXJRjhG1S8doUW81DH2i.jpg differ diff --git a/upload/e4S1jhTMXJRjhG1S8doUW81DH2i_4wm1U4q.jpg b/upload/e4S1jhTMXJRjhG1S8doUW81DH2i_4wm1U4q.jpg new file mode 100644 index 0000000..a794eae Binary files /dev/null and b/upload/e4S1jhTMXJRjhG1S8doUW81DH2i_4wm1U4q.jpg differ diff --git a/upload/e5LhYpGiHsrQzGbOL2nEM2Ooa40.jpg b/upload/e5LhYpGiHsrQzGbOL2nEM2Ooa40.jpg new file mode 100644 index 0000000..96725d9 Binary files /dev/null and b/upload/e5LhYpGiHsrQzGbOL2nEM2Ooa40.jpg differ diff --git a/upload/e6bG3pp3cpImIDObC62bxmsarto.jpg b/upload/e6bG3pp3cpImIDObC62bxmsarto.jpg new file mode 100644 index 0000000..acbe737 Binary files /dev/null and b/upload/e6bG3pp3cpImIDObC62bxmsarto.jpg differ diff --git a/upload/e842d06f01ab51f6b83574a8ae2db903.jpg b/upload/e842d06f01ab51f6b83574a8ae2db903.jpg new file mode 100644 index 0000000..cac648e Binary files /dev/null and b/upload/e842d06f01ab51f6b83574a8ae2db903.jpg differ diff --git a/upload/e8grqkdNzjIUg3wa0Siqizg2QCA.jpg b/upload/e8grqkdNzjIUg3wa0Siqizg2QCA.jpg new file mode 100644 index 0000000..50d2ac3 Binary files /dev/null and b/upload/e8grqkdNzjIUg3wa0Siqizg2QCA.jpg differ diff --git a/upload/e957281f5d9b3c51954bace009c.jpg b/upload/e957281f5d9b3c51954bace009c.jpg new file mode 100644 index 0000000..18105f7 Binary files /dev/null and b/upload/e957281f5d9b3c51954bace009c.jpg differ diff --git a/upload/eAtKc86jWm9ThZSSG0upRjd2cb6.jpg b/upload/eAtKc86jWm9ThZSSG0upRjd2cb6.jpg new file mode 100644 index 0000000..c40a74d Binary files /dev/null and b/upload/eAtKc86jWm9ThZSSG0upRjd2cb6.jpg differ diff --git a/upload/eBGRsgzhfpYsOTcVZYJlkLMcSuf.jpg b/upload/eBGRsgzhfpYsOTcVZYJlkLMcSuf.jpg new file mode 100644 index 0000000..8023900 Binary files /dev/null and b/upload/eBGRsgzhfpYsOTcVZYJlkLMcSuf.jpg differ diff --git a/upload/eCeMqcjT1pQ3qlseY374bXX6LLX.jpg b/upload/eCeMqcjT1pQ3qlseY374bXX6LLX.jpg new file mode 100644 index 0000000..23f45e1 Binary files /dev/null and b/upload/eCeMqcjT1pQ3qlseY374bXX6LLX.jpg differ diff --git a/upload/eCgD5IfS9ZvfdoJCp2UZpv9CVoY.jpg b/upload/eCgD5IfS9ZvfdoJCp2UZpv9CVoY.jpg new file mode 100644 index 0000000..13882bc Binary files /dev/null and b/upload/eCgD5IfS9ZvfdoJCp2UZpv9CVoY.jpg differ diff --git a/upload/eD1C60oJXvA5uYVBx3k6lq2RMve.jpg b/upload/eD1C60oJXvA5uYVBx3k6lq2RMve.jpg new file mode 100644 index 0000000..57f286d Binary files /dev/null and b/upload/eD1C60oJXvA5uYVBx3k6lq2RMve.jpg differ diff --git a/upload/eIBmAlLdOaqYWnbDv7nuipS0EIj.jpg b/upload/eIBmAlLdOaqYWnbDv7nuipS0EIj.jpg new file mode 100644 index 0000000..f70d964 Binary files /dev/null and b/upload/eIBmAlLdOaqYWnbDv7nuipS0EIj.jpg differ diff --git a/upload/eId7vsdsREfyLuIZW1ZnhCA9h2H.jpg b/upload/eId7vsdsREfyLuIZW1ZnhCA9h2H.jpg new file mode 100644 index 0000000..b93d297 Binary files /dev/null and b/upload/eId7vsdsREfyLuIZW1ZnhCA9h2H.jpg differ diff --git a/upload/eIi3klFf7mp3oL5EEF4mLIDs26r.jpg b/upload/eIi3klFf7mp3oL5EEF4mLIDs26r.jpg new file mode 100644 index 0000000..371c105 Binary files /dev/null and b/upload/eIi3klFf7mp3oL5EEF4mLIDs26r.jpg differ diff --git a/upload/eLQR0Jkz9lJmtku2ahWcAbwCJb0.jpg b/upload/eLQR0Jkz9lJmtku2ahWcAbwCJb0.jpg new file mode 100644 index 0000000..e6f428f Binary files /dev/null and b/upload/eLQR0Jkz9lJmtku2ahWcAbwCJb0.jpg differ diff --git a/upload/eM6UuMLKVbOBdMQu3mjmUtiWh1b.jpg b/upload/eM6UuMLKVbOBdMQu3mjmUtiWh1b.jpg new file mode 100644 index 0000000..e67c3d2 Binary files /dev/null and b/upload/eM6UuMLKVbOBdMQu3mjmUtiWh1b.jpg differ diff --git a/upload/eN58EQuzpi0NwZqaBKvqOUpIANP.jpg b/upload/eN58EQuzpi0NwZqaBKvqOUpIANP.jpg new file mode 100644 index 0000000..6b69a54 Binary files /dev/null and b/upload/eN58EQuzpi0NwZqaBKvqOUpIANP.jpg differ diff --git a/upload/eQUObOQFzrWr6AvE1zGlvgMfBhN.jpg b/upload/eQUObOQFzrWr6AvE1zGlvgMfBhN.jpg new file mode 100644 index 0000000..952171f Binary files /dev/null and b/upload/eQUObOQFzrWr6AvE1zGlvgMfBhN.jpg differ diff --git a/upload/eSRxLqwyH6EeUI8o0jxqQN5njcl.jpg b/upload/eSRxLqwyH6EeUI8o0jxqQN5njcl.jpg new file mode 100644 index 0000000..54e28e2 Binary files /dev/null and b/upload/eSRxLqwyH6EeUI8o0jxqQN5njcl.jpg differ diff --git a/upload/eTaagQ44lFkFwukan1NXRNB64BG.jpg b/upload/eTaagQ44lFkFwukan1NXRNB64BG.jpg new file mode 100644 index 0000000..d742691 Binary files /dev/null and b/upload/eTaagQ44lFkFwukan1NXRNB64BG.jpg differ diff --git a/upload/eWzwYqBm5iztV1IEVWIfGUEng1u.jpg b/upload/eWzwYqBm5iztV1IEVWIfGUEng1u.jpg new file mode 100644 index 0000000..da2ddf3 Binary files /dev/null and b/upload/eWzwYqBm5iztV1IEVWIfGUEng1u.jpg differ diff --git a/upload/eX29Pj1dPifTOJ7oaeqzOx6ZkGm.jpg b/upload/eX29Pj1dPifTOJ7oaeqzOx6ZkGm.jpg new file mode 100644 index 0000000..6ff70e8 Binary files /dev/null and b/upload/eX29Pj1dPifTOJ7oaeqzOx6ZkGm.jpg differ diff --git a/upload/eYByUQaXMrmJRlyxJlL4ApOBdkh.jpg b/upload/eYByUQaXMrmJRlyxJlL4ApOBdkh.jpg new file mode 100644 index 0000000..f0ca19d Binary files /dev/null and b/upload/eYByUQaXMrmJRlyxJlL4ApOBdkh.jpg differ diff --git a/upload/ed1871decb95aabee0fd0a446d35ddcf.jpg b/upload/ed1871decb95aabee0fd0a446d35ddcf.jpg new file mode 100644 index 0000000..13ba3cc Binary files /dev/null and b/upload/ed1871decb95aabee0fd0a446d35ddcf.jpg differ diff --git a/upload/edna-mode.jpg b/upload/edna-mode.jpg new file mode 100644 index 0000000..c082b9f Binary files /dev/null and b/upload/edna-mode.jpg differ diff --git a/upload/edwHViQXRIj3b5AFfvucElxNOtQ.jpg b/upload/edwHViQXRIj3b5AFfvucElxNOtQ.jpg new file mode 100644 index 0000000..ed4f4c2 Binary files /dev/null and b/upload/edwHViQXRIj3b5AFfvucElxNOtQ.jpg differ diff --git a/upload/eeeeewwqq.jpg b/upload/eeeeewwqq.jpg new file mode 100644 index 0000000..0f4cbb1 Binary files /dev/null and b/upload/eeeeewwqq.jpg differ diff --git a/upload/eeqqww22.png b/upload/eeqqww22.png new file mode 100644 index 0000000..0eb38f5 Binary files /dev/null and b/upload/eeqqww22.png differ diff --git a/upload/eete5ZAaagldSXxDetN62V3WXcg.jpg b/upload/eete5ZAaagldSXxDetN62V3WXcg.jpg new file mode 100644 index 0000000..164fe57 Binary files /dev/null and b/upload/eete5ZAaagldSXxDetN62V3WXcg.jpg differ diff --git a/upload/ef2521d95c4757f27c73f7961d32a76e.jpg b/upload/ef2521d95c4757f27c73f7961d32a76e.jpg new file mode 100644 index 0000000..72f9d14 Binary files /dev/null and b/upload/ef2521d95c4757f27c73f7961d32a76e.jpg differ diff --git a/upload/eftie6YcK0HpMEFrT95mdNrIbBu.jpg b/upload/eftie6YcK0HpMEFrT95mdNrIbBu.jpg new file mode 100644 index 0000000..9ff8b88 Binary files /dev/null and b/upload/eftie6YcK0HpMEFrT95mdNrIbBu.jpg differ diff --git a/upload/egybPos4AIOpC3o1WlTdRPE0Y02.jpg b/upload/egybPos4AIOpC3o1WlTdRPE0Y02.jpg new file mode 100644 index 0000000..8a059d5 Binary files /dev/null and b/upload/egybPos4AIOpC3o1WlTdRPE0Y02.jpg differ diff --git a/upload/ejdD20cdHNFAYAN2DlqPToXKyzx.jpg b/upload/ejdD20cdHNFAYAN2DlqPToXKyzx.jpg new file mode 100644 index 0000000..70eb13a Binary files /dev/null and b/upload/ejdD20cdHNFAYAN2DlqPToXKyzx.jpg differ diff --git a/upload/ekIHnFwXtSMJQppLUGvfenZBhnC.jpg b/upload/ekIHnFwXtSMJQppLUGvfenZBhnC.jpg new file mode 100644 index 0000000..5616b82 Binary files /dev/null and b/upload/ekIHnFwXtSMJQppLUGvfenZBhnC.jpg differ diff --git a/upload/elena-santarelli-e-paolo-bonolis-in-una-scena-di-commediasexi-34512.jpg b/upload/elena-santarelli-e-paolo-bonolis-in-una-scena-di-commediasexi-34512.jpg new file mode 100644 index 0000000..e828be7 Binary files /dev/null and b/upload/elena-santarelli-e-paolo-bonolis-in-una-scena-di-commediasexi-34512.jpg differ diff --git a/upload/elena-santarelli-in-una-scena-di-commediasexi-34506.jpg b/upload/elena-santarelli-in-una-scena-di-commediasexi-34506.jpg new file mode 100644 index 0000000..bdb6c3e Binary files /dev/null and b/upload/elena-santarelli-in-una-scena-di-commediasexi-34506.jpg differ diff --git a/upload/emBl8L1h3lP39XmLBmegVElqsDF.jpg b/upload/emBl8L1h3lP39XmLBmegVElqsDF.jpg new file mode 100644 index 0000000..fe3f632 Binary files /dev/null and b/upload/emBl8L1h3lP39XmLBmegVElqsDF.jpg differ diff --git a/upload/en83hjWRJzzolLiXh92VTj8juIY.jpg b/upload/en83hjWRJzzolLiXh92VTj8juIY.jpg new file mode 100644 index 0000000..c8cc8d2 Binary files /dev/null and b/upload/en83hjWRJzzolLiXh92VTj8juIY.jpg differ diff --git a/upload/en971MEXui9diirXlogOrPKmsEn.jpg b/upload/en971MEXui9diirXlogOrPKmsEn.jpg new file mode 100644 index 0000000..3ba5084 Binary files /dev/null and b/upload/en971MEXui9diirXlogOrPKmsEn.jpg differ diff --git a/upload/enEPyXukVCPUCwAS1UbQpcjq2nM.jpg b/upload/enEPyXukVCPUCwAS1UbQpcjq2nM.jpg new file mode 100644 index 0000000..401f17c Binary files /dev/null and b/upload/enEPyXukVCPUCwAS1UbQpcjq2nM.jpg differ diff --git a/upload/endersgame_102113_1280.jpg b/upload/endersgame_102113_1280.jpg new file mode 100644 index 0000000..7322219 Binary files /dev/null and b/upload/endersgame_102113_1280.jpg differ diff --git a/upload/ep5rIHafeGtx3mV3OyEVbtlQuC1.jpg b/upload/ep5rIHafeGtx3mV3OyEVbtlQuC1.jpg new file mode 100644 index 0000000..5d38038 Binary files /dev/null and b/upload/ep5rIHafeGtx3mV3OyEVbtlQuC1.jpg differ diff --git a/upload/eqW98S4xarcV94rF8k7HC1npHpA.jpg b/upload/eqW98S4xarcV94rF8k7HC1npHpA.jpg new file mode 100644 index 0000000..f098825 Binary files /dev/null and b/upload/eqW98S4xarcV94rF8k7HC1npHpA.jpg differ diff --git a/upload/ewwwtt.jpg b/upload/ewwwtt.jpg new file mode 100644 index 0000000..bdb7651 Binary files /dev/null and b/upload/ewwwtt.jpg differ diff --git a/upload/f019bda13e9bf3d723e632df1d5c7892.jpg b/upload/f019bda13e9bf3d723e632df1d5c7892.jpg new file mode 100644 index 0000000..004dcd3 Binary files /dev/null and b/upload/f019bda13e9bf3d723e632df1d5c7892.jpg differ diff --git a/upload/f26be92ab338494307f1f011b3a060b4.jpg b/upload/f26be92ab338494307f1f011b3a060b4.jpg new file mode 100644 index 0000000..20c5ab4 Binary files /dev/null and b/upload/f26be92ab338494307f1f011b3a060b4.jpg differ diff --git a/upload/f2opsSUSiMdEp6AiY2sbC8QPd8S.jpg b/upload/f2opsSUSiMdEp6AiY2sbC8QPd8S.jpg new file mode 100644 index 0000000..66ff2ce Binary files /dev/null and b/upload/f2opsSUSiMdEp6AiY2sbC8QPd8S.jpg differ diff --git a/upload/f4FF18ia7yTvHf2izNrHqBmgH8U.jpg b/upload/f4FF18ia7yTvHf2izNrHqBmgH8U.jpg new file mode 100644 index 0000000..a1f8cfa Binary files /dev/null and b/upload/f4FF18ia7yTvHf2izNrHqBmgH8U.jpg differ diff --git a/upload/f8XUY6srsxTabJ8h353izrqaKfs.jpg b/upload/f8XUY6srsxTabJ8h353izrqaKfs.jpg new file mode 100644 index 0000000..c1b10e5 Binary files /dev/null and b/upload/f8XUY6srsxTabJ8h353izrqaKfs.jpg differ diff --git a/upload/f8db2fb2703e8e7400f6123c19538358.jpg b/upload/f8db2fb2703e8e7400f6123c19538358.jpg new file mode 100644 index 0000000..98adfe3 Binary files /dev/null and b/upload/f8db2fb2703e8e7400f6123c19538358.jpg differ diff --git a/upload/fAf4I3h8kDcvm5wQyxyrBmTeDcv.jpg b/upload/fAf4I3h8kDcvm5wQyxyrBmTeDcv.jpg new file mode 100644 index 0000000..11bd904 Binary files /dev/null and b/upload/fAf4I3h8kDcvm5wQyxyrBmTeDcv.jpg differ diff --git a/upload/fAwfLSqGsIDtHkGFX4LnXAyGepl.jpg b/upload/fAwfLSqGsIDtHkGFX4LnXAyGepl.jpg new file mode 100644 index 0000000..7a517f0 Binary files /dev/null and b/upload/fAwfLSqGsIDtHkGFX4LnXAyGepl.jpg differ diff --git a/upload/fAzcowvEcFeZI0etzNyprAg14xG.jpg b/upload/fAzcowvEcFeZI0etzNyprAg14xG.jpg new file mode 100644 index 0000000..fe45803 Binary files /dev/null and b/upload/fAzcowvEcFeZI0etzNyprAg14xG.jpg differ diff --git a/upload/fDTl99wzITwMtXQ0hFBpRjCLl7Z.jpg b/upload/fDTl99wzITwMtXQ0hFBpRjCLl7Z.jpg new file mode 100644 index 0000000..550b7ef Binary files /dev/null and b/upload/fDTl99wzITwMtXQ0hFBpRjCLl7Z.jpg differ diff --git a/upload/fFZmfoupqWmHg73A07MIBMwRYqc.jpg b/upload/fFZmfoupqWmHg73A07MIBMwRYqc.jpg new file mode 100644 index 0000000..fa2b2ab Binary files /dev/null and b/upload/fFZmfoupqWmHg73A07MIBMwRYqc.jpg differ diff --git a/upload/fGxuHMe2fegrFp0gCBpvS7joOSm.jpg b/upload/fGxuHMe2fegrFp0gCBpvS7joOSm.jpg new file mode 100644 index 0000000..a1a070c Binary files /dev/null and b/upload/fGxuHMe2fegrFp0gCBpvS7joOSm.jpg differ diff --git a/upload/fHCMPd1w8wcJmrplR3ebCl6nfFI.jpg b/upload/fHCMPd1w8wcJmrplR3ebCl6nfFI.jpg new file mode 100644 index 0000000..08211eb Binary files /dev/null and b/upload/fHCMPd1w8wcJmrplR3ebCl6nfFI.jpg differ diff --git a/upload/fHoQtJHtLvINUS2eO47PWoRM5jd.jpg b/upload/fHoQtJHtLvINUS2eO47PWoRM5jd.jpg new file mode 100644 index 0000000..52b8272 Binary files /dev/null and b/upload/fHoQtJHtLvINUS2eO47PWoRM5jd.jpg differ diff --git a/upload/fJ5eT1ARwNUvsjmZKVbp6Qt3f7W.jpg b/upload/fJ5eT1ARwNUvsjmZKVbp6Qt3f7W.jpg new file mode 100644 index 0000000..87079eb Binary files /dev/null and b/upload/fJ5eT1ARwNUvsjmZKVbp6Qt3f7W.jpg differ diff --git a/upload/fJ5eT1ARwNUvsjmZKVbp6Qt3f7W_4DPGs1L.jpg b/upload/fJ5eT1ARwNUvsjmZKVbp6Qt3f7W_4DPGs1L.jpg new file mode 100644 index 0000000..859a661 Binary files /dev/null and b/upload/fJ5eT1ARwNUvsjmZKVbp6Qt3f7W_4DPGs1L.jpg differ diff --git a/upload/fK5ssgvtI43z19FoWigdlqgpLRE.jpg b/upload/fK5ssgvtI43z19FoWigdlqgpLRE.jpg new file mode 100644 index 0000000..834ac2a Binary files /dev/null and b/upload/fK5ssgvtI43z19FoWigdlqgpLRE.jpg differ diff --git a/upload/fNG7i7RqMErkcqhohV2a6cV1Ehy.jpg b/upload/fNG7i7RqMErkcqhohV2a6cV1Ehy.jpg new file mode 100644 index 0000000..644b705 Binary files /dev/null and b/upload/fNG7i7RqMErkcqhohV2a6cV1Ehy.jpg differ diff --git a/upload/fNzbCpfr2HGWaZYLPoMBOg2jP2B.jpg b/upload/fNzbCpfr2HGWaZYLPoMBOg2jP2B.jpg new file mode 100644 index 0000000..06eb521 Binary files /dev/null and b/upload/fNzbCpfr2HGWaZYLPoMBOg2jP2B.jpg differ diff --git a/upload/fRLftkwv8jm3DLxXOf2NbngHjPB.jpg b/upload/fRLftkwv8jm3DLxXOf2NbngHjPB.jpg new file mode 100644 index 0000000..4670b4d Binary files /dev/null and b/upload/fRLftkwv8jm3DLxXOf2NbngHjPB.jpg differ diff --git a/upload/fTAVk9QJnZvOdJwf0PYwOn12S9s.jpg b/upload/fTAVk9QJnZvOdJwf0PYwOn12S9s.jpg new file mode 100644 index 0000000..1161994 Binary files /dev/null and b/upload/fTAVk9QJnZvOdJwf0PYwOn12S9s.jpg differ diff --git a/upload/fVKewiBPcY2dQujYEsnQmQ7lfRZ.jpg b/upload/fVKewiBPcY2dQujYEsnQmQ7lfRZ.jpg new file mode 100644 index 0000000..1ef9e89 Binary files /dev/null and b/upload/fVKewiBPcY2dQujYEsnQmQ7lfRZ.jpg differ diff --git a/upload/fVqKwpvobwWy0P1UImZWIDuw4RI.jpg b/upload/fVqKwpvobwWy0P1UImZWIDuw4RI.jpg new file mode 100644 index 0000000..e40c930 Binary files /dev/null and b/upload/fVqKwpvobwWy0P1UImZWIDuw4RI.jpg differ diff --git a/upload/fWj0FN4gvTp1bDwREFrmPSv71RS.jpg b/upload/fWj0FN4gvTp1bDwREFrmPSv71RS.jpg new file mode 100644 index 0000000..64c5be0 Binary files /dev/null and b/upload/fWj0FN4gvTp1bDwREFrmPSv71RS.jpg differ diff --git a/upload/fXmV6lRAPHs8GYx8VLJ0pPst67.jpg b/upload/fXmV6lRAPHs8GYx8VLJ0pPst67.jpg new file mode 100644 index 0000000..569726e Binary files /dev/null and b/upload/fXmV6lRAPHs8GYx8VLJ0pPst67.jpg differ diff --git a/upload/fYr0fqT9NImOuaN1QgnDHgGh4Ci.jpg b/upload/fYr0fqT9NImOuaN1QgnDHgGh4Ci.jpg new file mode 100644 index 0000000..37bc5bf Binary files /dev/null and b/upload/fYr0fqT9NImOuaN1QgnDHgGh4Ci.jpg differ diff --git a/upload/fYzc4QssjK4340890-1.jpg b/upload/fYzc4QssjK4340890-1.jpg new file mode 100644 index 0000000..afc5f4a Binary files /dev/null and b/upload/fYzc4QssjK4340890-1.jpg differ diff --git a/upload/fZL447eRii2HiWBk7QzOIFZoWJd.jpg b/upload/fZL447eRii2HiWBk7QzOIFZoWJd.jpg new file mode 100644 index 0000000..9ae7716 Binary files /dev/null and b/upload/fZL447eRii2HiWBk7QzOIFZoWJd.jpg differ diff --git a/upload/fcSSxOIKFZN43nMcjFUK1gpGsmy.jpg b/upload/fcSSxOIKFZN43nMcjFUK1gpGsmy.jpg new file mode 100644 index 0000000..cadd9f0 Binary files /dev/null and b/upload/fcSSxOIKFZN43nMcjFUK1gpGsmy.jpg differ diff --git a/upload/fcSSxOIKFZN43nMcjFUK1gpGsmy_DBm070Z.jpg b/upload/fcSSxOIKFZN43nMcjFUK1gpGsmy_DBm070Z.jpg new file mode 100644 index 0000000..3c1abb6 Binary files /dev/null and b/upload/fcSSxOIKFZN43nMcjFUK1gpGsmy_DBm070Z.jpg differ diff --git a/upload/featured31.jpg b/upload/featured31.jpg new file mode 100644 index 0000000..e2e826a Binary files /dev/null and b/upload/featured31.jpg differ diff --git a/upload/feffe.jpg b/upload/feffe.jpg new file mode 100644 index 0000000..254d2a8 Binary files /dev/null and b/upload/feffe.jpg differ diff --git a/upload/fiZ9poxqYAW0oCIzjUnAoEpkTmH.jpg b/upload/fiZ9poxqYAW0oCIzjUnAoEpkTmH.jpg new file mode 100644 index 0000000..3231282 Binary files /dev/null and b/upload/fiZ9poxqYAW0oCIzjUnAoEpkTmH.jpg differ diff --git a/upload/filme-300-fascismo.jpg b/upload/filme-300-fascismo.jpg new file mode 100644 index 0000000..5d04247 Binary files /dev/null and b/upload/filme-300-fascismo.jpg differ diff --git a/upload/first-synopsis-and-full-cast-announced-for-disneys-maleficent-2-social.jpg b/upload/first-synopsis-and-full-cast-announced-for-disneys-maleficent-2-social.jpg new file mode 100644 index 0000000..b0fe7e3 Binary files /dev/null and b/upload/first-synopsis-and-full-cast-announced-for-disneys-maleficent-2-social.jpg differ diff --git a/upload/fk4syPg8y1xOK5W7TqBsro2p7SH.jpg b/upload/fk4syPg8y1xOK5W7TqBsro2p7SH.jpg new file mode 100644 index 0000000..11452a0 Binary files /dev/null and b/upload/fk4syPg8y1xOK5W7TqBsro2p7SH.jpg differ diff --git a/upload/fkpMsqXf4w6qhbqhb4FogCS9jkk.jpg b/upload/fkpMsqXf4w6qhbqhb4FogCS9jkk.jpg new file mode 100644 index 0000000..229eece Binary files /dev/null and b/upload/fkpMsqXf4w6qhbqhb4FogCS9jkk.jpg differ diff --git a/upload/fm12pudqEgr8zMKgp4q1Aw3SME6.jpg b/upload/fm12pudqEgr8zMKgp4q1Aw3SME6.jpg new file mode 100644 index 0000000..ce3f49a Binary files /dev/null and b/upload/fm12pudqEgr8zMKgp4q1Aw3SME6.jpg differ diff --git a/upload/font-colorff0000bzootopia_b_font-295-0_008-00_0113-2000.jpg b/upload/font-colorff0000bzootopia_b_font-295-0_008-00_0113-2000.jpg new file mode 100644 index 0000000..c1fbde5 Binary files /dev/null and b/upload/font-colorff0000bzootopia_b_font-295-0_008-00_0113-2000.jpg differ diff --git a/upload/fpEYSEpbPAQMppYRyRA66EZoWCX.jpg b/upload/fpEYSEpbPAQMppYRyRA66EZoWCX.jpg new file mode 100644 index 0000000..1ec110e Binary files /dev/null and b/upload/fpEYSEpbPAQMppYRyRA66EZoWCX.jpg differ diff --git a/upload/frozen-2-meraviglioso-poster-ufficiale-targato-imax-v3-409268.jpg b/upload/frozen-2-meraviglioso-poster-ufficiale-targato-imax-v3-409268.jpg new file mode 100644 index 0000000..87b3524 Binary files /dev/null and b/upload/frozen-2-meraviglioso-poster-ufficiale-targato-imax-v3-409268.jpg differ diff --git a/upload/frozen-2-rivelato-ruolo-genitori-anna-elsa-1024x576.jpg b/upload/frozen-2-rivelato-ruolo-genitori-anna-elsa-1024x576.jpg new file mode 100644 index 0000000..ef76231 Binary files /dev/null and b/upload/frozen-2-rivelato-ruolo-genitori-anna-elsa-1024x576.jpg differ diff --git a/upload/frozen-3-1920x1080.jpg b/upload/frozen-3-1920x1080.jpg new file mode 100644 index 0000000..f35b2fe Binary files /dev/null and b/upload/frozen-3-1920x1080.jpg differ diff --git a/upload/ftUk4JzWA7UEsLmjRRfB3THyW4M.jpg b/upload/ftUk4JzWA7UEsLmjRRfB3THyW4M.jpg new file mode 100644 index 0000000..bae476d Binary files /dev/null and b/upload/ftUk4JzWA7UEsLmjRRfB3THyW4M.jpg differ diff --git a/upload/ftkY1xIQ6ianSVp3EDufPVPLwa2.jpg b/upload/ftkY1xIQ6ianSVp3EDufPVPLwa2.jpg new file mode 100644 index 0000000..691c00e Binary files /dev/null and b/upload/ftkY1xIQ6ianSVp3EDufPVPLwa2.jpg differ diff --git a/upload/fydUcbkqLyESCFa9U5XKqi8dIVj.jpg b/upload/fydUcbkqLyESCFa9U5XKqi8dIVj.jpg new file mode 100644 index 0000000..1090fb8 Binary files /dev/null and b/upload/fydUcbkqLyESCFa9U5XKqi8dIVj.jpg differ diff --git a/upload/g0z3bsyaxt351.jpg b/upload/g0z3bsyaxt351.jpg new file mode 100644 index 0000000..bba6da3 Binary files /dev/null and b/upload/g0z3bsyaxt351.jpg differ diff --git a/upload/g3RQjjBoWaJXqsIcsjGEslwHVh3.jpg b/upload/g3RQjjBoWaJXqsIcsjGEslwHVh3.jpg new file mode 100644 index 0000000..eb2218c Binary files /dev/null and b/upload/g3RQjjBoWaJXqsIcsjGEslwHVh3.jpg differ diff --git a/upload/g3hni0i9iAQ13jDGOFWavJFlojc.jpg b/upload/g3hni0i9iAQ13jDGOFWavJFlojc.jpg new file mode 100644 index 0000000..0529e14 Binary files /dev/null and b/upload/g3hni0i9iAQ13jDGOFWavJFlojc.jpg differ diff --git a/upload/g627BDnwF0MrIvnLzuMflzeTqAp.jpg b/upload/g627BDnwF0MrIvnLzuMflzeTqAp.jpg new file mode 100644 index 0000000..bc1d7d9 Binary files /dev/null and b/upload/g627BDnwF0MrIvnLzuMflzeTqAp.jpg differ diff --git a/upload/g9ucHd1TgS2k3x0n9EVIaivzueN.jpg b/upload/g9ucHd1TgS2k3x0n9EVIaivzueN.jpg new file mode 100644 index 0000000..174b254 Binary files /dev/null and b/upload/g9ucHd1TgS2k3x0n9EVIaivzueN.jpg differ diff --git a/upload/g9wLEhkk4NhQOkqorxsgNUGyMsU.jpg b/upload/g9wLEhkk4NhQOkqorxsgNUGyMsU.jpg new file mode 100644 index 0000000..f50a535 Binary files /dev/null and b/upload/g9wLEhkk4NhQOkqorxsgNUGyMsU.jpg differ diff --git a/upload/gAqqujVvyDLwwFNAUjotmrhlxkj.jpg b/upload/gAqqujVvyDLwwFNAUjotmrhlxkj.jpg new file mode 100644 index 0000000..4dff1b2 Binary files /dev/null and b/upload/gAqqujVvyDLwwFNAUjotmrhlxkj.jpg differ diff --git a/upload/gBYgRl9ErXYPxsLSBmxTzC0D2wm.jpg b/upload/gBYgRl9ErXYPxsLSBmxTzC0D2wm.jpg new file mode 100644 index 0000000..5df9b28 Binary files /dev/null and b/upload/gBYgRl9ErXYPxsLSBmxTzC0D2wm.jpg differ diff --git a/upload/gDS9G3GWjEhsOACo9WMV3wNKdr7.jpg b/upload/gDS9G3GWjEhsOACo9WMV3wNKdr7.jpg new file mode 100644 index 0000000..b9f5aaf Binary files /dev/null and b/upload/gDS9G3GWjEhsOACo9WMV3wNKdr7.jpg differ diff --git a/upload/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg b/upload/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg new file mode 100644 index 0000000..e18cb40 Binary files /dev/null and b/upload/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg differ diff --git a/upload/gGOyjbKGpPGeuJ8nGfmgdsI47E0.jpg b/upload/gGOyjbKGpPGeuJ8nGfmgdsI47E0.jpg new file mode 100644 index 0000000..e8acaa2 Binary files /dev/null and b/upload/gGOyjbKGpPGeuJ8nGfmgdsI47E0.jpg differ diff --git a/upload/gGUGm8ksmR1nq1mSczuxZpeHOyx.jpg b/upload/gGUGm8ksmR1nq1mSczuxZpeHOyx.jpg new file mode 100644 index 0000000..19a6363 Binary files /dev/null and b/upload/gGUGm8ksmR1nq1mSczuxZpeHOyx.jpg differ diff --git a/upload/gHhEL207XUDeDsHyqLr4h37LKka.jpg b/upload/gHhEL207XUDeDsHyqLr4h37LKka.jpg new file mode 100644 index 0000000..b58e908 Binary files /dev/null and b/upload/gHhEL207XUDeDsHyqLr4h37LKka.jpg differ diff --git a/upload/gKYSsUPNJsikBH8LM2Lf82k5acD.jpg b/upload/gKYSsUPNJsikBH8LM2Lf82k5acD.jpg new file mode 100644 index 0000000..f061918 Binary files /dev/null and b/upload/gKYSsUPNJsikBH8LM2Lf82k5acD.jpg differ diff --git a/upload/gKhdyWTHCv4hLQRjdL2e9m3fJBU.jpg b/upload/gKhdyWTHCv4hLQRjdL2e9m3fJBU.jpg new file mode 100644 index 0000000..ebdd60f Binary files /dev/null and b/upload/gKhdyWTHCv4hLQRjdL2e9m3fJBU.jpg differ diff --git a/upload/gL14DFloutU01WUj5SY9LwRQAeV.jpg b/upload/gL14DFloutU01WUj5SY9LwRQAeV.jpg new file mode 100644 index 0000000..c129c9a Binary files /dev/null and b/upload/gL14DFloutU01WUj5SY9LwRQAeV.jpg differ diff --git a/upload/gXJ91Mn0ASnihQBCm2k8gOTRUWN.jpg b/upload/gXJ91Mn0ASnihQBCm2k8gOTRUWN.jpg new file mode 100644 index 0000000..d749aae Binary files /dev/null and b/upload/gXJ91Mn0ASnihQBCm2k8gOTRUWN.jpg differ diff --git a/upload/gYdbseZSAi2TTJOLReczUWJ9mqQ.jpg b/upload/gYdbseZSAi2TTJOLReczUWJ9mqQ.jpg new file mode 100644 index 0000000..bd9ebba Binary files /dev/null and b/upload/gYdbseZSAi2TTJOLReczUWJ9mqQ.jpg differ diff --git a/upload/ga5nGlX8HHM5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg b/upload/ga5nGlX8HHM5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg new file mode 100644 index 0000000..fed4ec7 Binary files /dev/null and b/upload/ga5nGlX8HHM5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg differ diff --git a/upload/gaObzSfuj8cLw2xpfphDVEs9aof.jpg b/upload/gaObzSfuj8cLw2xpfphDVEs9aof.jpg new file mode 100644 index 0000000..d923641 Binary files /dev/null and b/upload/gaObzSfuj8cLw2xpfphDVEs9aof.jpg differ diff --git a/upload/gcFMqIqB4Sl3XEj1MuhGqWaL9Jp.jpg b/upload/gcFMqIqB4Sl3XEj1MuhGqWaL9Jp.jpg new file mode 100644 index 0000000..9bd4870 Binary files /dev/null and b/upload/gcFMqIqB4Sl3XEj1MuhGqWaL9Jp.jpg differ diff --git a/upload/gcFurQDuh97m6VjPBTiBNQAKSnG.jpg b/upload/gcFurQDuh97m6VjPBTiBNQAKSnG.jpg new file mode 100644 index 0000000..85a035e Binary files /dev/null and b/upload/gcFurQDuh97m6VjPBTiBNQAKSnG.jpg differ diff --git a/upload/ge5e5555.jpg b/upload/ge5e5555.jpg new file mode 100644 index 0000000..1adb91e Binary files /dev/null and b/upload/ge5e5555.jpg differ diff --git a/upload/giBJ0ezYNEobFBfB8H4JNTjmll.jpg b/upload/giBJ0ezYNEobFBfB8H4JNTjmll.jpg new file mode 100644 index 0000000..877d94b Binary files /dev/null and b/upload/giBJ0ezYNEobFBfB8H4JNTjmll.jpg differ diff --git a/upload/giaGTP7mL4rLzTwijsxHPLv1WSn.jpg b/upload/giaGTP7mL4rLzTwijsxHPLv1WSn.jpg new file mode 100644 index 0000000..b6ec74f Binary files /dev/null and b/upload/giaGTP7mL4rLzTwijsxHPLv1WSn.jpg differ diff --git a/upload/gioXMobK8vbD6bcTsjKYKfgacNt.jpg b/upload/gioXMobK8vbD6bcTsjKYKfgacNt.jpg new file mode 100644 index 0000000..4f057cb Binary files /dev/null and b/upload/gioXMobK8vbD6bcTsjKYKfgacNt.jpg differ diff --git a/upload/gj0fKa4jjwxZLmVq7I8tv13V45.jpg b/upload/gj0fKa4jjwxZLmVq7I8tv13V45.jpg new file mode 100644 index 0000000..1ac2786 Binary files /dev/null and b/upload/gj0fKa4jjwxZLmVq7I8tv13V45.jpg differ diff --git a/upload/gkYu744gqKYvCVTm6B69eAHZJdS.jpg b/upload/gkYu744gqKYvCVTm6B69eAHZJdS.jpg new file mode 100644 index 0000000..e8123c3 Binary files /dev/null and b/upload/gkYu744gqKYvCVTm6B69eAHZJdS.jpg differ diff --git a/upload/gli-incredibili-2-villain-dettagli.jpg b/upload/gli-incredibili-2-villain-dettagli.jpg new file mode 100644 index 0000000..31ae06f Binary files /dev/null and b/upload/gli-incredibili-2-villain-dettagli.jpg differ diff --git a/upload/gmb1HHHJunFdGyJq7MTsYr8h0j0.jpg b/upload/gmb1HHHJunFdGyJq7MTsYr8h0j0.jpg new file mode 100644 index 0000000..f6dca32 Binary files /dev/null and b/upload/gmb1HHHJunFdGyJq7MTsYr8h0j0.jpg differ diff --git a/upload/gqoVrudQi56VDhz4TzsrNj7GibH.jpg b/upload/gqoVrudQi56VDhz4TzsrNj7GibH.jpg new file mode 100644 index 0000000..5b7c08a Binary files /dev/null and b/upload/gqoVrudQi56VDhz4TzsrNj7GibH.jpg differ diff --git a/upload/greatescapehd_pub.jpg b/upload/greatescapehd_pub.jpg new file mode 100644 index 0000000..f4105b4 Binary files /dev/null and b/upload/greatescapehd_pub.jpg differ diff --git a/upload/guQaXtD3hyCqAkX9AdjPALlaR1A.jpg b/upload/guQaXtD3hyCqAkX9AdjPALlaR1A.jpg new file mode 100644 index 0000000..07eff55 Binary files /dev/null and b/upload/guQaXtD3hyCqAkX9AdjPALlaR1A.jpg differ diff --git a/upload/guardians-ronan-jpg-c9969f-1280w_repw.jpg b/upload/guardians-ronan-jpg-c9969f-1280w_repw.jpg new file mode 100644 index 0000000..1b14231 Binary files /dev/null and b/upload/guardians-ronan-jpg-c9969f-1280w_repw.jpg differ diff --git a/upload/gun-fu-header-1000x600.jpg b/upload/gun-fu-header-1000x600.jpg new file mode 100644 index 0000000..b7dfa7f Binary files /dev/null and b/upload/gun-fu-header-1000x600.jpg differ diff --git a/upload/h0fMFKoUxjbL8jT2yK6QYmUbw5r.jpg b/upload/h0fMFKoUxjbL8jT2yK6QYmUbw5r.jpg new file mode 100644 index 0000000..67c4bcc Binary files /dev/null and b/upload/h0fMFKoUxjbL8jT2yK6QYmUbw5r.jpg differ diff --git a/upload/h37N1O8LUyGW1o2dIWufm9jzpk7.jpg b/upload/h37N1O8LUyGW1o2dIWufm9jzpk7.jpg new file mode 100644 index 0000000..d6f21a4 Binary files /dev/null and b/upload/h37N1O8LUyGW1o2dIWufm9jzpk7.jpg differ diff --git a/upload/h3Q7OdSTmYjVRE9WhuFF4OTmlDm.jpg b/upload/h3Q7OdSTmYjVRE9WhuFF4OTmlDm.jpg new file mode 100644 index 0000000..59f5acd Binary files /dev/null and b/upload/h3Q7OdSTmYjVRE9WhuFF4OTmlDm.jpg differ diff --git a/upload/h3s1JoGiiigQ0wsPsLO4aK7Ovq2.jpg b/upload/h3s1JoGiiigQ0wsPsLO4aK7Ovq2.jpg new file mode 100644 index 0000000..735b0da Binary files /dev/null and b/upload/h3s1JoGiiigQ0wsPsLO4aK7Ovq2.jpg differ diff --git a/upload/h5TIyCjDcpT2jeh3ltcyW3XDeHl.jpg b/upload/h5TIyCjDcpT2jeh3ltcyW3XDeHl.jpg new file mode 100644 index 0000000..36e43f6 Binary files /dev/null and b/upload/h5TIyCjDcpT2jeh3ltcyW3XDeHl.jpg differ diff --git a/upload/h642c1N7GPxxvsCSuhFbdUmHUf4.jpg b/upload/h642c1N7GPxxvsCSuhFbdUmHUf4.jpg new file mode 100644 index 0000000..6269f87 Binary files /dev/null and b/upload/h642c1N7GPxxvsCSuhFbdUmHUf4.jpg differ diff --git a/upload/h9GJiKuuJ650dte0gyzLD3ILcIh.jpg b/upload/h9GJiKuuJ650dte0gyzLD3ILcIh.jpg new file mode 100644 index 0000000..1833645 Binary files /dev/null and b/upload/h9GJiKuuJ650dte0gyzLD3ILcIh.jpg differ diff --git a/upload/hChnCH1Ryw7CjVswDI4UtobFL1l.jpg b/upload/hChnCH1Ryw7CjVswDI4UtobFL1l.jpg new file mode 100644 index 0000000..e908f05 Binary files /dev/null and b/upload/hChnCH1Ryw7CjVswDI4UtobFL1l.jpg differ diff --git a/upload/hEioY3LlqBwvIpZeZuR1BMaAgv1.jpg b/upload/hEioY3LlqBwvIpZeZuR1BMaAgv1.jpg new file mode 100644 index 0000000..ffada8d Binary files /dev/null and b/upload/hEioY3LlqBwvIpZeZuR1BMaAgv1.jpg differ diff --git a/upload/hGGzI2XJ1q0JkLDo4iWprfjxaGi.jpg b/upload/hGGzI2XJ1q0JkLDo4iWprfjxaGi.jpg new file mode 100644 index 0000000..dadfb74 Binary files /dev/null and b/upload/hGGzI2XJ1q0JkLDo4iWprfjxaGi.jpg differ diff --git a/upload/hL3NqRE2ccR4Y2sYSJTrmalRjrz.jpg b/upload/hL3NqRE2ccR4Y2sYSJTrmalRjrz.jpg new file mode 100644 index 0000000..3ebc0a0 Binary files /dev/null and b/upload/hL3NqRE2ccR4Y2sYSJTrmalRjrz.jpg differ diff --git a/upload/hL5bSZV4RnVwqySojf069cra0jb.jpg b/upload/hL5bSZV4RnVwqySojf069cra0jb.jpg new file mode 100644 index 0000000..c285cfd Binary files /dev/null and b/upload/hL5bSZV4RnVwqySojf069cra0jb.jpg differ diff --git a/upload/hLBYD9qEYy8ZpScHJ2FgFpcqkP1.jpg b/upload/hLBYD9qEYy8ZpScHJ2FgFpcqkP1.jpg new file mode 100644 index 0000000..471c47b Binary files /dev/null and b/upload/hLBYD9qEYy8ZpScHJ2FgFpcqkP1.jpg differ diff --git a/upload/hM4aYTG6BRNmvVjidcMXOR9e4wU.jpg b/upload/hM4aYTG6BRNmvVjidcMXOR9e4wU.jpg new file mode 100644 index 0000000..b6eb883 Binary files /dev/null and b/upload/hM4aYTG6BRNmvVjidcMXOR9e4wU.jpg differ diff --git a/upload/hNCqkXbWd40eftqSdjq8TmV7Mqr.jpg b/upload/hNCqkXbWd40eftqSdjq8TmV7Mqr.jpg new file mode 100644 index 0000000..221ac02 Binary files /dev/null and b/upload/hNCqkXbWd40eftqSdjq8TmV7Mqr.jpg differ diff --git a/upload/hND7xAaxxBgaIspp9iMsaEXOSTz.jpg b/upload/hND7xAaxxBgaIspp9iMsaEXOSTz.jpg new file mode 100644 index 0000000..02c2d6a Binary files /dev/null and b/upload/hND7xAaxxBgaIspp9iMsaEXOSTz.jpg differ diff --git a/upload/hOlLbGXHein0BHBZHZ2ujeuw1jI.jpg b/upload/hOlLbGXHein0BHBZHZ2ujeuw1jI.jpg new file mode 100644 index 0000000..9ba639e Binary files /dev/null and b/upload/hOlLbGXHein0BHBZHZ2ujeuw1jI.jpg differ diff --git a/upload/hPCPoofVZvaxDNbTneF5214vMfq.jpg b/upload/hPCPoofVZvaxDNbTneF5214vMfq.jpg new file mode 100644 index 0000000..544313b Binary files /dev/null and b/upload/hPCPoofVZvaxDNbTneF5214vMfq.jpg differ diff --git a/upload/hPO0A0BGg5M7Q8I7qayaDyC5tb5.jpg b/upload/hPO0A0BGg5M7Q8I7qayaDyC5tb5.jpg new file mode 100644 index 0000000..76bb6c8 Binary files /dev/null and b/upload/hPO0A0BGg5M7Q8I7qayaDyC5tb5.jpg differ diff --git a/upload/hQQCDnj3qkfrUqEZoaRtCnM2Gqq.jpg b/upload/hQQCDnj3qkfrUqEZoaRtCnM2Gqq.jpg new file mode 100644 index 0000000..9de6359 Binary files /dev/null and b/upload/hQQCDnj3qkfrUqEZoaRtCnM2Gqq.jpg differ diff --git a/upload/hQZ3XRd.png b/upload/hQZ3XRd.png new file mode 100644 index 0000000..e6aa800 Binary files /dev/null and b/upload/hQZ3XRd.png differ diff --git a/upload/hVBjBiQjm0baCB7jHU6ZvrPl6Cs.jpg b/upload/hVBjBiQjm0baCB7jHU6ZvrPl6Cs.jpg new file mode 100644 index 0000000..cb5a510 Binary files /dev/null and b/upload/hVBjBiQjm0baCB7jHU6ZvrPl6Cs.jpg differ diff --git a/upload/h_starwars_theriseofskywalkerupdatebanner_mobile_19367_eaa26d54.jpg b/upload/h_starwars_theriseofskywalkerupdatebanner_mobile_19367_eaa26d54.jpg new file mode 100644 index 0000000..6b0eedf Binary files /dev/null and b/upload/h_starwars_theriseofskywalkerupdatebanner_mobile_19367_eaa26d54.jpg differ diff --git a/upload/harry-potter-22-1440x1080.jpg b/upload/harry-potter-22-1440x1080.jpg new file mode 100644 index 0000000..163f24d Binary files /dev/null and b/upload/harry-potter-22-1440x1080.jpg differ diff --git a/upload/harry-potter-e-il-calice-di-fuoco-2005-mike-newell-01.jpg b/upload/harry-potter-e-il-calice-di-fuoco-2005-mike-newell-01.jpg new file mode 100644 index 0000000..5c2fe6b Binary files /dev/null and b/upload/harry-potter-e-il-calice-di-fuoco-2005-mike-newell-01.jpg differ diff --git a/upload/harry-potter-il-prigioniero.jpg b/upload/harry-potter-il-prigioniero.jpg new file mode 100644 index 0000000..b7443e5 Binary files /dev/null and b/upload/harry-potter-il-prigioniero.jpg differ diff --git a/upload/harry_potter_prigioniero_azkaban_2018_film.jpg b/upload/harry_potter_prigioniero_azkaban_2018_film.jpg new file mode 100644 index 0000000..be5cf89 Binary files /dev/null and b/upload/harry_potter_prigioniero_azkaban_2018_film.jpg differ diff --git a/upload/hfHEFJA7pK60VYh22SVgevVGI2g.jpg b/upload/hfHEFJA7pK60VYh22SVgevVGI2g.jpg new file mode 100644 index 0000000..9862bbe Binary files /dev/null and b/upload/hfHEFJA7pK60VYh22SVgevVGI2g.jpg differ diff --git a/upload/hgaU7W9bpOjxy1Lkr03y978t2Jq.jpg b/upload/hgaU7W9bpOjxy1Lkr03y978t2Jq.jpg new file mode 100644 index 0000000..28531b1 Binary files /dev/null and b/upload/hgaU7W9bpOjxy1Lkr03y978t2Jq.jpg differ diff --git a/upload/hhhhhhhhhhh.jpg b/upload/hhhhhhhhhhh.jpg new file mode 100644 index 0000000..4c1662e Binary files /dev/null and b/upload/hhhhhhhhhhh.jpg differ diff --git a/upload/hhnKvTQbBZ8ducMMHpTSjmjaVAD.jpg b/upload/hhnKvTQbBZ8ducMMHpTSjmjaVAD.jpg new file mode 100644 index 0000000..f7a9c10 Binary files /dev/null and b/upload/hhnKvTQbBZ8ducMMHpTSjmjaVAD.jpg differ diff --git a/upload/hhucFKyImKCPe7lQSpKPvHtdZl4.jpg b/upload/hhucFKyImKCPe7lQSpKPvHtdZl4.jpg new file mode 100644 index 0000000..5cd37d7 Binary files /dev/null and b/upload/hhucFKyImKCPe7lQSpKPvHtdZl4.jpg differ diff --git a/upload/hjQp148VjWF4KjzhsD90OCMr11h.jpg b/upload/hjQp148VjWF4KjzhsD90OCMr11h.jpg new file mode 100644 index 0000000..de10f3d Binary files /dev/null and b/upload/hjQp148VjWF4KjzhsD90OCMr11h.jpg differ diff --git a/upload/hkAVgWvAMmM8tj9CDEvGqMdNQBE.jpg b/upload/hkAVgWvAMmM8tj9CDEvGqMdNQBE.jpg new file mode 100644 index 0000000..ecaf2a0 Binary files /dev/null and b/upload/hkAVgWvAMmM8tj9CDEvGqMdNQBE.jpg differ diff --git a/upload/hnhhghf.jpg b/upload/hnhhghf.jpg new file mode 100644 index 0000000..9b2799d Binary files /dev/null and b/upload/hnhhghf.jpg differ diff --git a/upload/hor1.jpg b/upload/hor1.jpg new file mode 100644 index 0000000..73061ad Binary files /dev/null and b/upload/hor1.jpg differ diff --git a/upload/hunt_key.jpeg b/upload/hunt_key.jpeg new file mode 100644 index 0000000..6392838 Binary files /dev/null and b/upload/hunt_key.jpeg differ diff --git a/upload/hv1XW3q6qXQ6kzPEYQpIBFuInMx.jpg b/upload/hv1XW3q6qXQ6kzPEYQpIBFuInMx.jpg new file mode 100644 index 0000000..8e8b437 Binary files /dev/null and b/upload/hv1XW3q6qXQ6kzPEYQpIBFuInMx.jpg differ diff --git a/upload/hyhyhkkl.jpg b/upload/hyhyhkkl.jpg new file mode 100644 index 0000000..a899dbe Binary files /dev/null and b/upload/hyhyhkkl.jpg differ diff --git a/upload/hziiv14OpD73u9gAak4XDDfBKa2.jpg b/upload/hziiv14OpD73u9gAak4XDDfBKa2.jpg new file mode 100644 index 0000000..097dbe0 Binary files /dev/null and b/upload/hziiv14OpD73u9gAak4XDDfBKa2.jpg differ diff --git a/upload/i2bNYLCgImq5wWRCQWz03DlFbtt.jpg b/upload/i2bNYLCgImq5wWRCQWz03DlFbtt.jpg new file mode 100644 index 0000000..dbcf6b8 Binary files /dev/null and b/upload/i2bNYLCgImq5wWRCQWz03DlFbtt.jpg differ diff --git a/upload/iBT3NYs.png b/upload/iBT3NYs.png new file mode 100644 index 0000000..d98812f Binary files /dev/null and b/upload/iBT3NYs.png differ diff --git a/upload/iBlfxlw8qwtUS0R8YjIU7JtM6LM.jpg b/upload/iBlfxlw8qwtUS0R8YjIU7JtM6LM.jpg new file mode 100644 index 0000000..d75409e Binary files /dev/null and b/upload/iBlfxlw8qwtUS0R8YjIU7JtM6LM.jpg differ diff --git a/upload/iDETz0hejj5GoLm9Vtd2i8XNPBf.jpg b/upload/iDETz0hejj5GoLm9Vtd2i8XNPBf.jpg new file mode 100644 index 0000000..ac96ed8 Binary files /dev/null and b/upload/iDETz0hejj5GoLm9Vtd2i8XNPBf.jpg differ diff --git a/upload/iI9WL1vcBEHjDgt8zmMXPhmWMnd.jpg b/upload/iI9WL1vcBEHjDgt8zmMXPhmWMnd.jpg new file mode 100644 index 0000000..51882db Binary files /dev/null and b/upload/iI9WL1vcBEHjDgt8zmMXPhmWMnd.jpg differ diff --git a/upload/iJZPdR4IdkY8BcAseLL6gKSpS4O.jpg b/upload/iJZPdR4IdkY8BcAseLL6gKSpS4O.jpg new file mode 100644 index 0000000..38736cd Binary files /dev/null and b/upload/iJZPdR4IdkY8BcAseLL6gKSpS4O.jpg differ diff --git a/upload/iKXqUiLFDgeIGozRR6JYRvFmD5A.jpg b/upload/iKXqUiLFDgeIGozRR6JYRvFmD5A.jpg new file mode 100644 index 0000000..61de1fe Binary files /dev/null and b/upload/iKXqUiLFDgeIGozRR6JYRvFmD5A.jpg differ diff --git a/upload/iO73omOyLwUPW22EpaZkJNC72ec.jpg b/upload/iO73omOyLwUPW22EpaZkJNC72ec.jpg new file mode 100644 index 0000000..d889152 Binary files /dev/null and b/upload/iO73omOyLwUPW22EpaZkJNC72ec.jpg differ diff --git a/upload/iP2tEA2A77qhbhRfcFkiD6WFOqH.jpg b/upload/iP2tEA2A77qhbhRfcFkiD6WFOqH.jpg new file mode 100644 index 0000000..81003ef Binary files /dev/null and b/upload/iP2tEA2A77qhbhRfcFkiD6WFOqH.jpg differ diff --git a/upload/iP2tEA2A77qhbhRfcFkiD6WFOqH_RCXcRXz.jpg b/upload/iP2tEA2A77qhbhRfcFkiD6WFOqH_RCXcRXz.jpg new file mode 100644 index 0000000..81003ef Binary files /dev/null and b/upload/iP2tEA2A77qhbhRfcFkiD6WFOqH_RCXcRXz.jpg differ diff --git a/upload/iPO1o8lN23p1YdKGeurKGF0xIH3.jpg b/upload/iPO1o8lN23p1YdKGeurKGF0xIH3.jpg new file mode 100644 index 0000000..3891918 Binary files /dev/null and b/upload/iPO1o8lN23p1YdKGeurKGF0xIH3.jpg differ diff --git a/upload/iQhHyK0qdEG79525-1.jpg b/upload/iQhHyK0qdEG79525-1.jpg new file mode 100644 index 0000000..af01079 Binary files /dev/null and b/upload/iQhHyK0qdEG79525-1.jpg differ diff --git a/upload/iQs1Sn1MIsiBsFguUY6VV3ovA6W.jpg b/upload/iQs1Sn1MIsiBsFguUY6VV3ovA6W.jpg new file mode 100644 index 0000000..35f2d13 Binary files /dev/null and b/upload/iQs1Sn1MIsiBsFguUY6VV3ovA6W.jpg differ diff --git a/upload/iRvttKKh8ZSWNYXPxDm3IUqLlB3.jpg b/upload/iRvttKKh8ZSWNYXPxDm3IUqLlB3.jpg new file mode 100644 index 0000000..023cb25 Binary files /dev/null and b/upload/iRvttKKh8ZSWNYXPxDm3IUqLlB3.jpg differ diff --git a/upload/iTVYWUfDw5phC4fSGKUybVcQm3w.jpg b/upload/iTVYWUfDw5phC4fSGKUybVcQm3w.jpg new file mode 100644 index 0000000..b8acd92 Binary files /dev/null and b/upload/iTVYWUfDw5phC4fSGKUybVcQm3w.jpg differ diff --git a/upload/iXg8dcylRbYNREcdU1Y2EGxpxxe.jpg b/upload/iXg8dcylRbYNREcdU1Y2EGxpxxe.jpg new file mode 100644 index 0000000..17f89e4 Binary files /dev/null and b/upload/iXg8dcylRbYNREcdU1Y2EGxpxxe.jpg differ diff --git a/upload/iY1ei3k.png b/upload/iY1ei3k.png new file mode 100644 index 0000000..34359bd Binary files /dev/null and b/upload/iY1ei3k.png differ diff --git a/upload/icyy6A2vvGKymk4mqfCezyC4B0v.jpg b/upload/icyy6A2vvGKymk4mqfCezyC4B0v.jpg new file mode 100644 index 0000000..3fa8900 Binary files /dev/null and b/upload/icyy6A2vvGKymk4mqfCezyC4B0v.jpg differ diff --git a/upload/ig7qUy7drkEFZNCK7gi0hMn1WMN.jpg b/upload/ig7qUy7drkEFZNCK7gi0hMn1WMN.jpg new file mode 100644 index 0000000..fcf9866 Binary files /dev/null and b/upload/ig7qUy7drkEFZNCK7gi0hMn1WMN.jpg differ diff --git a/upload/ihaBIFiZax4TcIiktsSkH2xU3wR.jpg b/upload/ihaBIFiZax4TcIiktsSkH2xU3wR.jpg new file mode 100644 index 0000000..fe8e672 Binary files /dev/null and b/upload/ihaBIFiZax4TcIiktsSkH2xU3wR.jpg differ diff --git a/upload/ijnaE8IU7XC5kA8uZbTxq6SmSnH.jpg b/upload/ijnaE8IU7XC5kA8uZbTxq6SmSnH.jpg new file mode 100644 index 0000000..06a2f22 Binary files /dev/null and b/upload/ijnaE8IU7XC5kA8uZbTxq6SmSnH.jpg differ diff --git a/upload/ik8PugpL41s137RAWEGTAWu0dPo.jpg b/upload/ik8PugpL41s137RAWEGTAWu0dPo.jpg new file mode 100644 index 0000000..d1ef228 Binary files /dev/null and b/upload/ik8PugpL41s137RAWEGTAWu0dPo.jpg differ diff --git a/upload/il-capolavoro-spielberg-salvate-soldato-ryan-stasera-iris-v3-437776.jpg b/upload/il-capolavoro-spielberg-salvate-soldato-ryan-stasera-iris-v3-437776.jpg new file mode 100644 index 0000000..e8dbb18 Binary files /dev/null and b/upload/il-capolavoro-spielberg-salvate-soldato-ryan-stasera-iris-v3-437776.jpg differ diff --git a/upload/il-gigante-di-ferro-1hl57d.jpg b/upload/il-gigante-di-ferro-1hl57d.jpg new file mode 100644 index 0000000..9fa7e08 Binary files /dev/null and b/upload/il-gigante-di-ferro-1hl57d.jpg differ diff --git a/upload/il-gigante-di-ferro-1hl57drrr.jpg b/upload/il-gigante-di-ferro-1hl57drrr.jpg new file mode 100644 index 0000000..c9938d9 Binary files /dev/null and b/upload/il-gigante-di-ferro-1hl57drrr.jpg differ diff --git a/upload/il-gigante-di-ferro-1hl57drrr_qR9aaeX.jpg b/upload/il-gigante-di-ferro-1hl57drrr_qR9aaeX.jpg new file mode 100644 index 0000000..2f13982 Binary files /dev/null and b/upload/il-gigante-di-ferro-1hl57drrr_qR9aaeX.jpg differ diff --git a/upload/il-gigante-di-ferro-1hl57drrr_wSS6l5P.jpg b/upload/il-gigante-di-ferro-1hl57drrr_wSS6l5P.jpg new file mode 100644 index 0000000..fd25de2 Binary files /dev/null and b/upload/il-gigante-di-ferro-1hl57drrr_wSS6l5P.jpg differ diff --git a/upload/il-signore-degli-anelli-le-due-torri.jpeg b/upload/il-signore-degli-anelli-le-due-torri.jpeg new file mode 100644 index 0000000..a53ffd8 Binary files /dev/null and b/upload/il-signore-degli-anelli-le-due-torri.jpeg differ diff --git a/upload/ilgigantediferro.png b/upload/ilgigantediferro.png new file mode 100644 index 0000000..9b68123 Binary files /dev/null and b/upload/ilgigantediferro.png differ diff --git a/upload/image-w1280.jpg b/upload/image-w1280.jpg new file mode 100644 index 0000000..7ee168d Binary files /dev/null and b/upload/image-w1280.jpg differ diff --git a/upload/image.jpg b/upload/image.jpg new file mode 100644 index 0000000..9389f95 Binary files /dev/null and b/upload/image.jpg differ diff --git a/upload/image_1kVxpcs.jpg b/upload/image_1kVxpcs.jpg new file mode 100644 index 0000000..196a019 Binary files /dev/null and b/upload/image_1kVxpcs.jpg differ diff --git a/upload/image_bZryMt2.jpg b/upload/image_bZryMt2.jpg new file mode 100644 index 0000000..0fbbce7 Binary files /dev/null and b/upload/image_bZryMt2.jpg differ diff --git a/upload/image_vYyqOP2.jpg b/upload/image_vYyqOP2.jpg new file mode 100644 index 0000000..c9bd9ec Binary files /dev/null and b/upload/image_vYyqOP2.jpg differ diff --git a/upload/img.jpg b/upload/img.jpg new file mode 100644 index 0000000..02085d4 Binary files /dev/null and b/upload/img.jpg differ diff --git a/upload/img03_4.jpg b/upload/img03_4.jpg new file mode 100644 index 0000000..c0a8410 Binary files /dev/null and b/upload/img03_4.jpg differ diff --git a/upload/in-angolo-mondo-recensione-dell-anime-sunao-katabuchi-recensione-v4-35059-1280x16.jpg b/upload/in-angolo-mondo-recensione-dell-anime-sunao-katabuchi-recensione-v4-35059-1280x16.jpg new file mode 100644 index 0000000..e460949 Binary files /dev/null and b/upload/in-angolo-mondo-recensione-dell-anime-sunao-katabuchi-recensione-v4-35059-1280x16.jpg differ diff --git a/upload/inVq3FRqcYIRl2la8iZikYYxFNR.jpg b/upload/inVq3FRqcYIRl2la8iZikYYxFNR.jpg new file mode 100644 index 0000000..2b95f13 Binary files /dev/null and b/upload/inVq3FRqcYIRl2la8iZikYYxFNR.jpg differ diff --git a/upload/incredibile-storia-rose-2.jpg b/upload/incredibile-storia-rose-2.jpg new file mode 100644 index 0000000..50727e8 Binary files /dev/null and b/upload/incredibile-storia-rose-2.jpg differ diff --git a/upload/indiana-jones-e-il-tempio-maledetto-1984-steven-spielberg-04.jpg b/upload/indiana-jones-e-il-tempio-maledetto-1984-steven-spielberg-04.jpg new file mode 100644 index 0000000..6ce95d8 Binary files /dev/null and b/upload/indiana-jones-e-il-tempio-maledetto-1984-steven-spielberg-04.jpg differ diff --git a/upload/indy-3.jpg b/upload/indy-3.jpg new file mode 100644 index 0000000..fa08bd9 Binary files /dev/null and b/upload/indy-3.jpg differ diff --git a/upload/indy02d-e1461766978524.jpg b/upload/indy02d-e1461766978524.jpg new file mode 100644 index 0000000..d12c158 Binary files /dev/null and b/upload/indy02d-e1461766978524.jpg differ diff --git a/upload/ioi9xzWEasn0rxnEptn1SzVh2wr.jpg b/upload/ioi9xzWEasn0rxnEptn1SzVh2wr.jpg new file mode 100644 index 0000000..c8d49d6 Binary files /dev/null and b/upload/ioi9xzWEasn0rxnEptn1SzVh2wr.jpg differ diff --git a/upload/ip5MgTU8qpsFcmlgjcSlXXAwTRB.jpg b/upload/ip5MgTU8qpsFcmlgjcSlXXAwTRB.jpg new file mode 100644 index 0000000..e198d30 Binary files /dev/null and b/upload/ip5MgTU8qpsFcmlgjcSlXXAwTRB.jpg differ diff --git a/upload/iphone-xs-max-1-981.jpg b/upload/iphone-xs-max-1-981.jpg new file mode 100644 index 0000000..8415d10 Binary files /dev/null and b/upload/iphone-xs-max-1-981.jpg differ diff --git a/upload/iq6hiOyu7ld9wmaVBnwLVR016Rt.jpg b/upload/iq6hiOyu7ld9wmaVBnwLVR016Rt.jpg new file mode 100644 index 0000000..fa97092 Binary files /dev/null and b/upload/iq6hiOyu7ld9wmaVBnwLVR016Rt.jpg differ diff --git a/upload/irpJXGiVr539uuspcQcNdkhS2lq.jpg b/upload/irpJXGiVr539uuspcQcNdkhS2lq.jpg new file mode 100644 index 0000000..fcf2313 Binary files /dev/null and b/upload/irpJXGiVr539uuspcQcNdkhS2lq.jpg differ diff --git a/upload/isola-delle-rose.jpg b/upload/isola-delle-rose.jpg new file mode 100644 index 0000000..3290459 Binary files /dev/null and b/upload/isola-delle-rose.jpg differ diff --git a/upload/itAKHlmPQReXAmwJrENSuLcmuav.jpg b/upload/itAKHlmPQReXAmwJrENSuLcmuav.jpg new file mode 100644 index 0000000..3eaa283 Binary files /dev/null and b/upload/itAKHlmPQReXAmwJrENSuLcmuav.jpg differ diff --git a/upload/iw9ShbeGEpSlUiZJCDiHv5NOKTB.jpg b/upload/iw9ShbeGEpSlUiZJCDiHv5NOKTB.jpg new file mode 100644 index 0000000..8aa6e9d Binary files /dev/null and b/upload/iw9ShbeGEpSlUiZJCDiHv5NOKTB.jpg differ diff --git a/upload/iwvyZBRD7qfDQ8ylRmf5NbLC5Oi.jpg b/upload/iwvyZBRD7qfDQ8ylRmf5NbLC5Oi.jpg new file mode 100644 index 0000000..e5a7636 Binary files /dev/null and b/upload/iwvyZBRD7qfDQ8ylRmf5NbLC5Oi.jpg differ diff --git a/upload/iyHHM4IquH5pbXhTGCxnRDV4xU5.jpg b/upload/iyHHM4IquH5pbXhTGCxnRDV4xU5.jpg new file mode 100644 index 0000000..bf48d9b Binary files /dev/null and b/upload/iyHHM4IquH5pbXhTGCxnRDV4xU5.jpg differ diff --git a/upload/ize3ZieqSy0TCWljmVoEiy8fSFS.jpg b/upload/ize3ZieqSy0TCWljmVoEiy8fSFS.jpg new file mode 100644 index 0000000..77b01bc Binary files /dev/null and b/upload/ize3ZieqSy0TCWljmVoEiy8fSFS.jpg differ diff --git a/upload/j03CiUq845wzR22Gjf4Jj2JCTGD.jpg b/upload/j03CiUq845wzR22Gjf4Jj2JCTGD.jpg new file mode 100644 index 0000000..29d0f68 Binary files /dev/null and b/upload/j03CiUq845wzR22Gjf4Jj2JCTGD.jpg differ diff --git a/upload/j0AbBnbunt44lP80HQ5gm3yV9br.jpg b/upload/j0AbBnbunt44lP80HQ5gm3yV9br.jpg new file mode 100644 index 0000000..79f1333 Binary files /dev/null and b/upload/j0AbBnbunt44lP80HQ5gm3yV9br.jpg differ diff --git a/upload/j1FAMcYIJ2wNVNjEQEJEL3Z2WYm.jpg b/upload/j1FAMcYIJ2wNVNjEQEJEL3Z2WYm.jpg new file mode 100644 index 0000000..7e4ef23 Binary files /dev/null and b/upload/j1FAMcYIJ2wNVNjEQEJEL3Z2WYm.jpg differ diff --git a/upload/j29ekbcLpBvxnGk6LjdTc2EI5SA.jpg b/upload/j29ekbcLpBvxnGk6LjdTc2EI5SA.jpg new file mode 100644 index 0000000..69f78e4 Binary files /dev/null and b/upload/j29ekbcLpBvxnGk6LjdTc2EI5SA.jpg differ diff --git a/upload/j2ZvLJyz163MlmBFsoaDYOwxgws.jpg b/upload/j2ZvLJyz163MlmBFsoaDYOwxgws.jpg new file mode 100644 index 0000000..36fa034 Binary files /dev/null and b/upload/j2ZvLJyz163MlmBFsoaDYOwxgws.jpg differ diff --git a/upload/j6jWz01lmDoRzEw1oRJEmAfjgvI.jpg b/upload/j6jWz01lmDoRzEw1oRJEmAfjgvI.jpg new file mode 100644 index 0000000..45f3048 Binary files /dev/null and b/upload/j6jWz01lmDoRzEw1oRJEmAfjgvI.jpg differ diff --git a/upload/jB4QjcilHeKnlhA5xRuHPEDGGTN.jpg b/upload/jB4QjcilHeKnlhA5xRuHPEDGGTN.jpg new file mode 100644 index 0000000..1bb8b5a Binary files /dev/null and b/upload/jB4QjcilHeKnlhA5xRuHPEDGGTN.jpg differ diff --git a/upload/jL7sqTNzL8hghWcFcNLFEWAPd54.jpg b/upload/jL7sqTNzL8hghWcFcNLFEWAPd54.jpg new file mode 100644 index 0000000..0727d55 Binary files /dev/null and b/upload/jL7sqTNzL8hghWcFcNLFEWAPd54.jpg differ diff --git a/upload/jNUpYq2jRSwQM89vST9yQZelMSu.jpg b/upload/jNUpYq2jRSwQM89vST9yQZelMSu.jpg new file mode 100644 index 0000000..4a14d24 Binary files /dev/null and b/upload/jNUpYq2jRSwQM89vST9yQZelMSu.jpg differ diff --git a/upload/jNUpYq2jRSwQM89vST9yQZelMSu_iQhL6Qg.jpg b/upload/jNUpYq2jRSwQM89vST9yQZelMSu_iQhL6Qg.jpg new file mode 100644 index 0000000..3a75e7d Binary files /dev/null and b/upload/jNUpYq2jRSwQM89vST9yQZelMSu_iQhL6Qg.jpg differ diff --git a/upload/jNq1i0UgTPyOPptDaDuYz1ofyJr.jpg b/upload/jNq1i0UgTPyOPptDaDuYz1ofyJr.jpg new file mode 100644 index 0000000..7c99b62 Binary files /dev/null and b/upload/jNq1i0UgTPyOPptDaDuYz1ofyJr.jpg differ diff --git a/upload/jOh79POQu4hyVIseUxdQxTW7vOf.jpg b/upload/jOh79POQu4hyVIseUxdQxTW7vOf.jpg new file mode 100644 index 0000000..37b6328 Binary files /dev/null and b/upload/jOh79POQu4hyVIseUxdQxTW7vOf.jpg differ diff --git a/upload/jQ9pdjjgKJzht65LtE3V6MqOvQG.jpg b/upload/jQ9pdjjgKJzht65LtE3V6MqOvQG.jpg new file mode 100644 index 0000000..3f148ad Binary files /dev/null and b/upload/jQ9pdjjgKJzht65LtE3V6MqOvQG.jpg differ diff --git a/upload/jSWZ2JmLqQeXRlC88kX4B1voUxr.jpg b/upload/jSWZ2JmLqQeXRlC88kX4B1voUxr.jpg new file mode 100644 index 0000000..3e725a1 Binary files /dev/null and b/upload/jSWZ2JmLqQeXRlC88kX4B1voUxr.jpg differ diff --git a/upload/jX9mbarsU4XG0f7C51FSWy7GBUE.jpg b/upload/jX9mbarsU4XG0f7C51FSWy7GBUE.jpg new file mode 100644 index 0000000..b3718b4 Binary files /dev/null and b/upload/jX9mbarsU4XG0f7C51FSWy7GBUE.jpg differ diff --git a/upload/jYfwFrFzzbO7F4pR2v781946b6b.jpg b/upload/jYfwFrFzzbO7F4pR2v781946b6b.jpg new file mode 100644 index 0000000..b9b21c0 Binary files /dev/null and b/upload/jYfwFrFzzbO7F4pR2v781946b6b.jpg differ diff --git a/upload/jZWGMehUzE3JdEBt9aWMP5GXh7A.jpg b/upload/jZWGMehUzE3JdEBt9aWMP5GXh7A.jpg new file mode 100644 index 0000000..c310c04 Binary files /dev/null and b/upload/jZWGMehUzE3JdEBt9aWMP5GXh7A.jpg differ diff --git a/upload/jcVHl3PNxeKRg3SGK2sZrKxh94a.jpg b/upload/jcVHl3PNxeKRg3SGK2sZrKxh94a.jpg new file mode 100644 index 0000000..56782b6 Binary files /dev/null and b/upload/jcVHl3PNxeKRg3SGK2sZrKxh94a.jpg differ diff --git a/upload/je2QsgBLEy4lzsvWprwfoZKmIX1.jpg b/upload/je2QsgBLEy4lzsvWprwfoZKmIX1.jpg new file mode 100644 index 0000000..9f20c87 Binary files /dev/null and b/upload/je2QsgBLEy4lzsvWprwfoZKmIX1.jpg differ diff --git a/upload/je2QsgBLEy4lzsvWprwfoZKmIX1_hS1YOMR.jpg b/upload/je2QsgBLEy4lzsvWprwfoZKmIX1_hS1YOMR.jpg new file mode 100644 index 0000000..3de1ae1 Binary files /dev/null and b/upload/je2QsgBLEy4lzsvWprwfoZKmIX1_hS1YOMR.jpg differ diff --git a/upload/jjkfj.png b/upload/jjkfj.png new file mode 100644 index 0000000..b47caba Binary files /dev/null and b/upload/jjkfj.png differ diff --git a/upload/jn52me8AagfNt7r84SgQbV0R9ZG.jpg b/upload/jn52me8AagfNt7r84SgQbV0R9ZG.jpg new file mode 100644 index 0000000..acf47b1 Binary files /dev/null and b/upload/jn52me8AagfNt7r84SgQbV0R9ZG.jpg differ diff --git a/upload/joTwoUOL2kD2tZoD8vZGUHvoutp.jpg b/upload/joTwoUOL2kD2tZoD8vZGUHvoutp.jpg new file mode 100644 index 0000000..d42b5d3 Binary files /dev/null and b/upload/joTwoUOL2kD2tZoD8vZGUHvoutp.jpg differ diff --git a/upload/joe-mi-chell-8blvxsmxhj4.jpg b/upload/joe-mi-chell-8blvxsmxhj4.jpg new file mode 100644 index 0000000..6512e1c Binary files /dev/null and b/upload/joe-mi-chell-8blvxsmxhj4.jpg differ diff --git a/upload/jp5uznsrpLD0KPYhShC6QAwruy4.jpg b/upload/jp5uznsrpLD0KPYhShC6QAwruy4.jpg new file mode 100644 index 0000000..74fac5d Binary files /dev/null and b/upload/jp5uznsrpLD0KPYhShC6QAwruy4.jpg differ diff --git a/upload/jpKqGJ8A7G1b30S9rt2IRf9Sy2c.jpg b/upload/jpKqGJ8A7G1b30S9rt2IRf9Sy2c.jpg new file mode 100644 index 0000000..ab7e796 Binary files /dev/null and b/upload/jpKqGJ8A7G1b30S9rt2IRf9Sy2c.jpg differ diff --git a/upload/jpKqGJ8A7G1b30S9rt2IRf9Sy2c_y7Xln7A.jpg b/upload/jpKqGJ8A7G1b30S9rt2IRf9Sy2c_y7Xln7A.jpg new file mode 100644 index 0000000..9acbf96 Binary files /dev/null and b/upload/jpKqGJ8A7G1b30S9rt2IRf9Sy2c_y7Xln7A.jpg differ diff --git a/upload/jtpA0HAem3yBEBfgJr8Z54nOfif.jpg b/upload/jtpA0HAem3yBEBfgJr8Z54nOfif.jpg new file mode 100644 index 0000000..b5cfd08 Binary files /dev/null and b/upload/jtpA0HAem3yBEBfgJr8Z54nOfif.jpg differ diff --git a/upload/jutjkkk.jpg b/upload/jutjkkk.jpg new file mode 100644 index 0000000..58ecd2c Binary files /dev/null and b/upload/jutjkkk.jpg differ diff --git a/upload/jvGnULSUg8C779y8CBQxVikUHxI.jpg b/upload/jvGnULSUg8C779y8CBQxVikUHxI.jpg new file mode 100644 index 0000000..6acef7d Binary files /dev/null and b/upload/jvGnULSUg8C779y8CBQxVikUHxI.jpg differ diff --git a/upload/jw2-d26-12908-r.jpg b/upload/jw2-d26-12908-r.jpg new file mode 100644 index 0000000..e8ab7b7 Binary files /dev/null and b/upload/jw2-d26-12908-r.jpg differ diff --git a/upload/jzSLYFMGU6VKjAfmGUJQ54YcfrQ.jpg b/upload/jzSLYFMGU6VKjAfmGUJQ54YcfrQ.jpg new file mode 100644 index 0000000..d24debc Binary files /dev/null and b/upload/jzSLYFMGU6VKjAfmGUJQ54YcfrQ.jpg differ diff --git a/upload/k1jWHgAICsNGM5roYcIwaDpryYS.jpg b/upload/k1jWHgAICsNGM5roYcIwaDpryYS.jpg new file mode 100644 index 0000000..6f6f7e4 Binary files /dev/null and b/upload/k1jWHgAICsNGM5roYcIwaDpryYS.jpg differ diff --git a/upload/k20HsauQWvhkWyUFZCqQctl3qJs.jpg b/upload/k20HsauQWvhkWyUFZCqQctl3qJs.jpg new file mode 100644 index 0000000..82be006 Binary files /dev/null and b/upload/k20HsauQWvhkWyUFZCqQctl3qJs.jpg differ diff --git a/upload/k3sgjdUHiR3orDzT4qliXS3SMup.jpg b/upload/k3sgjdUHiR3orDzT4qliXS3SMup.jpg new file mode 100644 index 0000000..b65b715 Binary files /dev/null and b/upload/k3sgjdUHiR3orDzT4qliXS3SMup.jpg differ diff --git a/upload/k40PQsaXYDXY2czuLXzCvL5BVpo.jpg b/upload/k40PQsaXYDXY2czuLXzCvL5BVpo.jpg new file mode 100644 index 0000000..9923d39 Binary files /dev/null and b/upload/k40PQsaXYDXY2czuLXzCvL5BVpo.jpg differ diff --git a/upload/k4MHkC13lxkwX8rHuhtgQ2qKtbn.jpg b/upload/k4MHkC13lxkwX8rHuhtgQ2qKtbn.jpg new file mode 100644 index 0000000..4d0dd45 Binary files /dev/null and b/upload/k4MHkC13lxkwX8rHuhtgQ2qKtbn.jpg differ diff --git a/upload/k61oZC6IPUhgACGFwxNqdkbrf2M.jpg b/upload/k61oZC6IPUhgACGFwxNqdkbrf2M.jpg new file mode 100644 index 0000000..7a36bbd Binary files /dev/null and b/upload/k61oZC6IPUhgACGFwxNqdkbrf2M.jpg differ diff --git a/upload/k68nPLbIST6NP96JmTxmZijEvCA.jpg b/upload/k68nPLbIST6NP96JmTxmZijEvCA.jpg new file mode 100644 index 0000000..aa43364 Binary files /dev/null and b/upload/k68nPLbIST6NP96JmTxmZijEvCA.jpg differ diff --git a/upload/k6EOrckWFuz7I4z4wiRwz8zsj4H.jpg b/upload/k6EOrckWFuz7I4z4wiRwz8zsj4H.jpg new file mode 100644 index 0000000..a1d28a7 Binary files /dev/null and b/upload/k6EOrckWFuz7I4z4wiRwz8zsj4H.jpg differ diff --git a/upload/k6EOrckWFuz7I4z4wiRwz8zsj4H_JnGKa96.jpg b/upload/k6EOrckWFuz7I4z4wiRwz8zsj4H_JnGKa96.jpg new file mode 100644 index 0000000..776a396 Binary files /dev/null and b/upload/k6EOrckWFuz7I4z4wiRwz8zsj4H_JnGKa96.jpg differ diff --git a/upload/kCiMExsYuNhYluHxPP2OTmWw7hp.jpg b/upload/kCiMExsYuNhYluHxPP2OTmWw7hp.jpg new file mode 100644 index 0000000..db4d314 Binary files /dev/null and b/upload/kCiMExsYuNhYluHxPP2OTmWw7hp.jpg differ diff --git a/upload/kGbNpiqibXORgUOxpAm7gsHKikR.jpg b/upload/kGbNpiqibXORgUOxpAm7gsHKikR.jpg new file mode 100644 index 0000000..39aebbd Binary files /dev/null and b/upload/kGbNpiqibXORgUOxpAm7gsHKikR.jpg differ diff --git a/upload/kHE8uZ2l3NEU1gFfPMRJiasYWCd.jpg b/upload/kHE8uZ2l3NEU1gFfPMRJiasYWCd.jpg new file mode 100644 index 0000000..27ca45e Binary files /dev/null and b/upload/kHE8uZ2l3NEU1gFfPMRJiasYWCd.jpg differ diff --git a/upload/kL99FVq572hNPfMyfQCT7tGFNeQ.jpg b/upload/kL99FVq572hNPfMyfQCT7tGFNeQ.jpg new file mode 100644 index 0000000..1e0ba6a Binary files /dev/null and b/upload/kL99FVq572hNPfMyfQCT7tGFNeQ.jpg differ diff --git a/upload/kNhZkR3UNbXfvESQo7mJpOi4tGd.jpg b/upload/kNhZkR3UNbXfvESQo7mJpOi4tGd.jpg new file mode 100644 index 0000000..92b48b5 Binary files /dev/null and b/upload/kNhZkR3UNbXfvESQo7mJpOi4tGd.jpg differ diff --git a/upload/kOyW5nVFdn9wgBpASz13RrBResV.jpg b/upload/kOyW5nVFdn9wgBpASz13RrBResV.jpg new file mode 100644 index 0000000..2a76bcc Binary files /dev/null and b/upload/kOyW5nVFdn9wgBpASz13RrBResV.jpg differ diff --git a/upload/kSlisKPqHtaFHysIbR6bd76d4Hc.jpg b/upload/kSlisKPqHtaFHysIbR6bd76d4Hc.jpg new file mode 100644 index 0000000..2e57a40 Binary files /dev/null and b/upload/kSlisKPqHtaFHysIbR6bd76d4Hc.jpg differ diff --git a/upload/kSlisKPqHtaFHysIbR6bd76d4Hc_jv2tYES.jpg b/upload/kSlisKPqHtaFHysIbR6bd76d4Hc_jv2tYES.jpg new file mode 100644 index 0000000..1606e1c Binary files /dev/null and b/upload/kSlisKPqHtaFHysIbR6bd76d4Hc_jv2tYES.jpg differ diff --git a/upload/kT8bDEAgEYBKhRJtqM97qTw6uRW.jpg b/upload/kT8bDEAgEYBKhRJtqM97qTw6uRW.jpg new file mode 100644 index 0000000..21707fd Binary files /dev/null and b/upload/kT8bDEAgEYBKhRJtqM97qTw6uRW.jpg differ diff --git a/upload/kVAJSzpMu0st9tdlHXn8pYIhM9I.jpg b/upload/kVAJSzpMu0st9tdlHXn8pYIhM9I.jpg new file mode 100644 index 0000000..abab8d2 Binary files /dev/null and b/upload/kVAJSzpMu0st9tdlHXn8pYIhM9I.jpg differ diff --git a/upload/kWsuNQ3z9aj7Bu8M7X90b30NjAw.jpg b/upload/kWsuNQ3z9aj7Bu8M7X90b30NjAw.jpg new file mode 100644 index 0000000..bc219ca Binary files /dev/null and b/upload/kWsuNQ3z9aj7Bu8M7X90b30NjAw.jpg differ diff --git a/upload/kZKj6x6Wa8xyfj2VWoLDq0Or6OC.jpg b/upload/kZKj6x6Wa8xyfj2VWoLDq0Or6OC.jpg new file mode 100644 index 0000000..1f0bf5e Binary files /dev/null and b/upload/kZKj6x6Wa8xyfj2VWoLDq0Or6OC.jpg differ diff --git a/upload/kcUb0KO84inRLZCEQUxevEz4sCn.jpg b/upload/kcUb0KO84inRLZCEQUxevEz4sCn.jpg new file mode 100644 index 0000000..602703c Binary files /dev/null and b/upload/kcUb0KO84inRLZCEQUxevEz4sCn.jpg differ diff --git a/upload/kcUb0KO84inRLZCEQUxevEz4sCn_TKcehOz.jpg b/upload/kcUb0KO84inRLZCEQUxevEz4sCn_TKcehOz.jpg new file mode 100644 index 0000000..5682b44 Binary files /dev/null and b/upload/kcUb0KO84inRLZCEQUxevEz4sCn_TKcehOz.jpg differ diff --git a/upload/kebTSlQRdLCh8sLqkh0B0KaR8i.jpg b/upload/kebTSlQRdLCh8sLqkh0B0KaR8i.jpg new file mode 100644 index 0000000..1cb149f Binary files /dev/null and b/upload/kebTSlQRdLCh8sLqkh0B0KaR8i.jpg differ diff --git a/upload/kf456ZqeC45XTvo6W9pW5clYKfQ.jpg b/upload/kf456ZqeC45XTvo6W9pW5clYKfQ.jpg new file mode 100644 index 0000000..8fd6dfb Binary files /dev/null and b/upload/kf456ZqeC45XTvo6W9pW5clYKfQ.jpg differ diff --git a/upload/kfuV1s3r6HoCFlWiv14HB041GWA.jpg b/upload/kfuV1s3r6HoCFlWiv14HB041GWA.jpg new file mode 100644 index 0000000..6d03bb8 Binary files /dev/null and b/upload/kfuV1s3r6HoCFlWiv14HB041GWA.jpg differ diff --git a/upload/kfvtx9E67xYziapfxAryHwZnQis.jpg b/upload/kfvtx9E67xYziapfxAryHwZnQis.jpg new file mode 100644 index 0000000..8a33974 Binary files /dev/null and b/upload/kfvtx9E67xYziapfxAryHwZnQis.jpg differ diff --git a/upload/kgNvwUgbOYFNZCPyol8rHUyBWM6.jpg b/upload/kgNvwUgbOYFNZCPyol8rHUyBWM6.jpg new file mode 100644 index 0000000..0b6dcd5 Binary files /dev/null and b/upload/kgNvwUgbOYFNZCPyol8rHUyBWM6.jpg differ diff --git a/upload/kgxhPphD75JOUN4kJsJOtLL4Z7l.jpg b/upload/kgxhPphD75JOUN4kJsJOtLL4Z7l.jpg new file mode 100644 index 0000000..1783b93 Binary files /dev/null and b/upload/kgxhPphD75JOUN4kJsJOtLL4Z7l.jpg differ diff --git a/upload/kiBKhBhovrXz16b6Vv6Z58a4lvl.jpg b/upload/kiBKhBhovrXz16b6Vv6Z58a4lvl.jpg new file mode 100644 index 0000000..5b8f522 Binary files /dev/null and b/upload/kiBKhBhovrXz16b6Vv6Z58a4lvl.jpg differ diff --git a/upload/king-kong-2005-king-kong-2731831-2048-1157.jpg b/upload/king-kong-2005-king-kong-2731831-2048-1157.jpg new file mode 100644 index 0000000..45782f3 Binary files /dev/null and b/upload/king-kong-2005-king-kong-2731831-2048-1157.jpg differ diff --git a/upload/kli5uMXOCY8gCd1r6kcXc4OqDIq.jpg b/upload/kli5uMXOCY8gCd1r6kcXc4OqDIq.jpg new file mode 100644 index 0000000..7950ec6 Binary files /dev/null and b/upload/kli5uMXOCY8gCd1r6kcXc4OqDIq.jpg differ diff --git a/upload/kmrVdnwW0fVVuqv9q6XOvAK5aVw.jpg b/upload/kmrVdnwW0fVVuqv9q6XOvAK5aVw.jpg new file mode 100644 index 0000000..4f1c998 Binary files /dev/null and b/upload/kmrVdnwW0fVVuqv9q6XOvAK5aVw.jpg differ diff --git a/upload/knZfOwfCpbuqlbm9HUasORnbocg.jpg b/upload/knZfOwfCpbuqlbm9HUasORnbocg.jpg new file mode 100644 index 0000000..d75d0ca Binary files /dev/null and b/upload/knZfOwfCpbuqlbm9HUasORnbocg.jpg differ diff --git a/upload/kobscH4qOsYQNTZnkrF5zkPCsvX.jpg b/upload/kobscH4qOsYQNTZnkrF5zkPCsvX.jpg new file mode 100644 index 0000000..c8d9b97 Binary files /dev/null and b/upload/kobscH4qOsYQNTZnkrF5zkPCsvX.jpg differ diff --git a/upload/kqKuu4vXVPnwthHJhN2SOI0kYG1.jpg b/upload/kqKuu4vXVPnwthHJhN2SOI0kYG1.jpg new file mode 100644 index 0000000..2905204 Binary files /dev/null and b/upload/kqKuu4vXVPnwthHJhN2SOI0kYG1.jpg differ diff --git a/upload/ksSwtT40b918WFeEK7QPp67pAMP.jpg b/upload/ksSwtT40b918WFeEK7QPp67pAMP.jpg new file mode 100644 index 0000000..bbad444 Binary files /dev/null and b/upload/ksSwtT40b918WFeEK7QPp67pAMP.jpg differ diff --git a/upload/kungfury_1.jpg b/upload/kungfury_1.jpg new file mode 100644 index 0000000..81796ab Binary files /dev/null and b/upload/kungfury_1.jpg differ diff --git a/upload/kxtZpFfR0RMModlRHTFIuEPEH2O.jpg b/upload/kxtZpFfR0RMModlRHTFIuEPEH2O.jpg new file mode 100644 index 0000000..34ce761 Binary files /dev/null and b/upload/kxtZpFfR0RMModlRHTFIuEPEH2O.jpg differ diff --git a/upload/l-impero-dei-cadaveri-recensione-03.jpg b/upload/l-impero-dei-cadaveri-recensione-03.jpg new file mode 100644 index 0000000..f8083d4 Binary files /dev/null and b/upload/l-impero-dei-cadaveri-recensione-03.jpg differ diff --git a/upload/l-impero-dei-cadaveri-recensione-07-e1595755182182.jpg b/upload/l-impero-dei-cadaveri-recensione-07-e1595755182182.jpg new file mode 100644 index 0000000..d0b0d42 Binary files /dev/null and b/upload/l-impero-dei-cadaveri-recensione-07-e1595755182182.jpg differ diff --git a/upload/l-impero-dei-cadaveri-recensione-10-e1595755627654.jpg b/upload/l-impero-dei-cadaveri-recensione-10-e1595755627654.jpg new file mode 100644 index 0000000..62a96bc Binary files /dev/null and b/upload/l-impero-dei-cadaveri-recensione-10-e1595755627654.jpg differ diff --git a/upload/l-impero-dei-cadaveri-recensione-13.jpg b/upload/l-impero-dei-cadaveri-recensione-13.jpg new file mode 100644 index 0000000..8d208f4 Binary files /dev/null and b/upload/l-impero-dei-cadaveri-recensione-13.jpg differ diff --git a/upload/l4AEBdHU93pody6s9ZPleyRM8Ho.jpg b/upload/l4AEBdHU93pody6s9ZPleyRM8Ho.jpg new file mode 100644 index 0000000..2a84d4a Binary files /dev/null and b/upload/l4AEBdHU93pody6s9ZPleyRM8Ho.jpg differ diff --git a/upload/l4B2QI2lRKzHMJHke9FAsXLHP35.jpg b/upload/l4B2QI2lRKzHMJHke9FAsXLHP35.jpg new file mode 100644 index 0000000..597f1a8 Binary files /dev/null and b/upload/l4B2QI2lRKzHMJHke9FAsXLHP35.jpg differ diff --git a/upload/l9FlPNxq4MpYIJbD2YiAyaSbURz.jpg b/upload/l9FlPNxq4MpYIJbD2YiAyaSbURz.jpg new file mode 100644 index 0000000..53a3e02 Binary files /dev/null and b/upload/l9FlPNxq4MpYIJbD2YiAyaSbURz.jpg differ diff --git a/upload/lABobzXUUn4SxnZTQpuDq0MXloO.jpg b/upload/lABobzXUUn4SxnZTQpuDq0MXloO.jpg new file mode 100644 index 0000000..3561289 Binary files /dev/null and b/upload/lABobzXUUn4SxnZTQpuDq0MXloO.jpg differ diff --git a/upload/lABobzXUUn4SxnZTQpuDq0MXloO.png b/upload/lABobzXUUn4SxnZTQpuDq0MXloO.png new file mode 100644 index 0000000..2ec0f1f Binary files /dev/null and b/upload/lABobzXUUn4SxnZTQpuDq0MXloO.png differ diff --git a/upload/lABobzXUUn4SxnZTQpuDq0MXloO33.jpg b/upload/lABobzXUUn4SxnZTQpuDq0MXloO33.jpg new file mode 100644 index 0000000..13e7d4c Binary files /dev/null and b/upload/lABobzXUUn4SxnZTQpuDq0MXloO33.jpg differ diff --git a/upload/lABobzXUUn4SxnZTQpuDq0MXloO66.jpg b/upload/lABobzXUUn4SxnZTQpuDq0MXloO66.jpg new file mode 100644 index 0000000..2a07901 Binary files /dev/null and b/upload/lABobzXUUn4SxnZTQpuDq0MXloO66.jpg differ diff --git a/upload/lABobzXUUn4SxnZTQpuDq0MXloO99.jpg b/upload/lABobzXUUn4SxnZTQpuDq0MXloO99.jpg new file mode 100644 index 0000000..5fa150d Binary files /dev/null and b/upload/lABobzXUUn4SxnZTQpuDq0MXloO99.jpg differ diff --git a/upload/lB0QmvDN7GDpNzDYDS3hVbuDtSl.jpg b/upload/lB0QmvDN7GDpNzDYDS3hVbuDtSl.jpg new file mode 100644 index 0000000..9747d57 Binary files /dev/null and b/upload/lB0QmvDN7GDpNzDYDS3hVbuDtSl.jpg differ diff --git a/upload/lCcdhKvfVkRXYh60n9Pp5f4kKG1.jpg b/upload/lCcdhKvfVkRXYh60n9Pp5f4kKG1.jpg new file mode 100644 index 0000000..8a9d2dc Binary files /dev/null and b/upload/lCcdhKvfVkRXYh60n9Pp5f4kKG1.jpg differ diff --git a/upload/lGDwFdAdZbCCEw8FLrjfwa1f6CK.jpg b/upload/lGDwFdAdZbCCEw8FLrjfwa1f6CK.jpg new file mode 100644 index 0000000..87a18e7 Binary files /dev/null and b/upload/lGDwFdAdZbCCEw8FLrjfwa1f6CK.jpg differ diff --git a/upload/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg b/upload/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg new file mode 100644 index 0000000..1e0f03e Binary files /dev/null and b/upload/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg differ diff --git a/upload/lHxtnzXleY6WI8PD1bDhlhhpon2.jpg b/upload/lHxtnzXleY6WI8PD1bDhlhhpon2.jpg new file mode 100644 index 0000000..5ba3c3f Binary files /dev/null and b/upload/lHxtnzXleY6WI8PD1bDhlhhpon2.jpg differ diff --git a/upload/lLieiMb0bQ0Ys2Vwkc2vHrXTY5d.jpg b/upload/lLieiMb0bQ0Ys2Vwkc2vHrXTY5d.jpg new file mode 100644 index 0000000..44faae0 Binary files /dev/null and b/upload/lLieiMb0bQ0Ys2Vwkc2vHrXTY5d.jpg differ diff --git a/upload/lMVhcn8.png b/upload/lMVhcn8.png new file mode 100644 index 0000000..44e2614 Binary files /dev/null and b/upload/lMVhcn8.png differ diff --git a/upload/lRxf5TfmlxKoclcEhw5tVf82nrC.jpg b/upload/lRxf5TfmlxKoclcEhw5tVf82nrC.jpg new file mode 100644 index 0000000..1833b0d Binary files /dev/null and b/upload/lRxf5TfmlxKoclcEhw5tVf82nrC.jpg differ diff --git a/upload/lTUk8cXvSlPghnZ1yi54jUXLLrm.jpg b/upload/lTUk8cXvSlPghnZ1yi54jUXLLrm.jpg new file mode 100644 index 0000000..b807153 Binary files /dev/null and b/upload/lTUk8cXvSlPghnZ1yi54jUXLLrm.jpg differ diff --git a/upload/lWNASscWXn32Asr9vkB1wq6cKvD.jpg b/upload/lWNASscWXn32Asr9vkB1wq6cKvD.jpg new file mode 100644 index 0000000..cf8e5a7 Binary files /dev/null and b/upload/lWNASscWXn32Asr9vkB1wq6cKvD.jpg differ diff --git a/upload/lWpvB6j7fjM39gYSo7cRGk51bmo.jpg b/upload/lWpvB6j7fjM39gYSo7cRGk51bmo.jpg new file mode 100644 index 0000000..0efddd2 Binary files /dev/null and b/upload/lWpvB6j7fjM39gYSo7cRGk51bmo.jpg differ diff --git a/upload/la-disney-prepara-remake-live-action-lilo-stitch-v3-346007-1280x720.jpg b/upload/la-disney-prepara-remake-live-action-lilo-stitch-v3-346007-1280x720.jpg new file mode 100644 index 0000000..f681808 Binary files /dev/null and b/upload/la-disney-prepara-remake-live-action-lilo-stitch-v3-346007-1280x720.jpg differ diff --git a/upload/la-famiglia-addams-trailer-italiano-HP.jpg b/upload/la-famiglia-addams-trailer-italiano-HP.jpg new file mode 100644 index 0000000..8688df8 Binary files /dev/null and b/upload/la-famiglia-addams-trailer-italiano-HP.jpg differ diff --git a/upload/la-maledizione-luna-recensione-avventura-jack-sparrow-recensione-22641-1280x16.jpg b/upload/la-maledizione-luna-recensione-avventura-jack-sparrow-recensione-22641-1280x16.jpg new file mode 100644 index 0000000..65adc65 Binary files /dev/null and b/upload/la-maledizione-luna-recensione-avventura-jack-sparrow-recensione-22641-1280x16.jpg differ diff --git a/upload/la-mummia-3-1920x1080.jpg b/upload/la-mummia-3-1920x1080.jpg new file mode 100644 index 0000000..00d0c20 Binary files /dev/null and b/upload/la-mummia-3-1920x1080.jpg differ diff --git a/upload/la2xlHuHqdOn10g6Prux4d5278B.jpg b/upload/la2xlHuHqdOn10g6Prux4d5278B.jpg new file mode 100644 index 0000000..e036799 Binary files /dev/null and b/upload/la2xlHuHqdOn10g6Prux4d5278B.jpg differ diff --git a/upload/lahpO62LPhfNRcOOiTUt5b30zXb.jpg b/upload/lahpO62LPhfNRcOOiTUt5b30zXb.jpg new file mode 100644 index 0000000..5c8d296 Binary files /dev/null and b/upload/lahpO62LPhfNRcOOiTUt5b30zXb.jpg differ diff --git a/upload/lbctonEnewCYZ4FYoTZhs8cidAl.jpg b/upload/lbctonEnewCYZ4FYoTZhs8cidAl.jpg new file mode 100644 index 0000000..9499ae5 Binary files /dev/null and b/upload/lbctonEnewCYZ4FYoTZhs8cidAl.jpg differ diff --git a/upload/lcLyZzhB1ctfdH0hGBsTFrbflqP.jpg b/upload/lcLyZzhB1ctfdH0hGBsTFrbflqP.jpg new file mode 100644 index 0000000..dab6014 Binary files /dev/null and b/upload/lcLyZzhB1ctfdH0hGBsTFrbflqP.jpg differ diff --git a/upload/lcnWcmMudyhtUAvhN4pWTNPIL2h.jpg b/upload/lcnWcmMudyhtUAvhN4pWTNPIL2h.jpg new file mode 100644 index 0000000..9fdcd99 Binary files /dev/null and b/upload/lcnWcmMudyhtUAvhN4pWTNPIL2h.jpg differ diff --git a/upload/lgBZlJ1LHQel5nneNQMoesmvc7l.jpg b/upload/lgBZlJ1LHQel5nneNQMoesmvc7l.jpg new file mode 100644 index 0000000..7330905 Binary files /dev/null and b/upload/lgBZlJ1LHQel5nneNQMoesmvc7l.jpg differ diff --git a/upload/lgBZlJ1LHQel5nneNQMoesmvc7l_zkuDk9l.jpg b/upload/lgBZlJ1LHQel5nneNQMoesmvc7l_zkuDk9l.jpg new file mode 100644 index 0000000..3549b51 Binary files /dev/null and b/upload/lgBZlJ1LHQel5nneNQMoesmvc7l_zkuDk9l.jpg differ diff --git a/upload/lhZWGvqykqK5xmQpAMJdAgbF6n0.jpg b/upload/lhZWGvqykqK5xmQpAMJdAgbF6n0.jpg new file mode 100644 index 0000000..24a9101 Binary files /dev/null and b/upload/lhZWGvqykqK5xmQpAMJdAgbF6n0.jpg differ diff --git a/upload/lilo-stitch-disney-modifica-scena-film-manda-furie-fan-v3-439701-1280x720.jpg b/upload/lilo-stitch-disney-modifica-scena-film-manda-furie-fan-v3-439701-1280x720.jpg new file mode 100644 index 0000000..e78ec45 Binary files /dev/null and b/upload/lilo-stitch-disney-modifica-scena-film-manda-furie-fan-v3-439701-1280x720.jpg differ diff --git a/upload/lincredibile-storia-dellisola-delle-rose-1-1280x720.jpg b/upload/lincredibile-storia-dellisola-delle-rose-1-1280x720.jpg new file mode 100644 index 0000000..30eb48c Binary files /dev/null and b/upload/lincredibile-storia-dellisola-delle-rose-1-1280x720.jpg differ diff --git a/upload/lkokokokv2.jpg b/upload/lkokokokv2.jpg new file mode 100644 index 0000000..3cca6b3 Binary files /dev/null and b/upload/lkokokokv2.jpg differ diff --git a/upload/lmYmoXVzVrTadfXHZ3v1ySqA1fn.jpg b/upload/lmYmoXVzVrTadfXHZ3v1ySqA1fn.jpg new file mode 100644 index 0000000..f6f59e1 Binary files /dev/null and b/upload/lmYmoXVzVrTadfXHZ3v1ySqA1fn.jpg differ diff --git a/upload/lolopopo.jpg b/upload/lolopopo.jpg new file mode 100644 index 0000000..81e2fa7 Binary files /dev/null and b/upload/lolopopo.jpg differ diff --git a/upload/lpq1qZ48vjEZew6zJvYRgeKSpZu.jpg b/upload/lpq1qZ48vjEZew6zJvYRgeKSpZu.jpg new file mode 100644 index 0000000..8dd3ff9 Binary files /dev/null and b/upload/lpq1qZ48vjEZew6zJvYRgeKSpZu.jpg differ diff --git a/upload/lrAz6ayKlVBpClucdgXBmVUP6HG.jpg b/upload/lrAz6ayKlVBpClucdgXBmVUP6HG.jpg new file mode 100644 index 0000000..94de434 Binary files /dev/null and b/upload/lrAz6ayKlVBpClucdgXBmVUP6HG.jpg differ diff --git a/upload/ltoieqmMIb1v90HWkXZguAYnkbR.jpg b/upload/ltoieqmMIb1v90HWkXZguAYnkbR.jpg new file mode 100644 index 0000000..a8a909f Binary files /dev/null and b/upload/ltoieqmMIb1v90HWkXZguAYnkbR.jpg differ diff --git a/upload/lupo-mannaro-prigioniero-azkaban.jpg b/upload/lupo-mannaro-prigioniero-azkaban.jpg new file mode 100644 index 0000000..8824a74 Binary files /dev/null and b/upload/lupo-mannaro-prigioniero-azkaban.jpg differ diff --git a/upload/lvOLivVeX3DVVcwfVkxKf0R22D8.jpg b/upload/lvOLivVeX3DVVcwfVkxKf0R22D8.jpg new file mode 100644 index 0000000..0c8a2b4 Binary files /dev/null and b/upload/lvOLivVeX3DVVcwfVkxKf0R22D8.jpg differ diff --git a/upload/lx20clr9VyptONoOoPo2aeJaw41.jpg b/upload/lx20clr9VyptONoOoPo2aeJaw41.jpg new file mode 100644 index 0000000..558da86 Binary files /dev/null and b/upload/lx20clr9VyptONoOoPo2aeJaw41.jpg differ diff --git a/upload/lxwzY9vNwjDgxWKt3zZ6zcU6rEJ.jpg b/upload/lxwzY9vNwjDgxWKt3zZ6zcU6rEJ.jpg new file mode 100644 index 0000000..99694fe Binary files /dev/null and b/upload/lxwzY9vNwjDgxWKt3zZ6zcU6rEJ.jpg differ diff --git a/upload/m1ZFSOOiDnQQhZVKfzy7jZ0Llo.jpg b/upload/m1ZFSOOiDnQQhZVKfzy7jZ0Llo.jpg new file mode 100644 index 0000000..0b2e1f2 Binary files /dev/null and b/upload/m1ZFSOOiDnQQhZVKfzy7jZ0Llo.jpg differ diff --git a/upload/m3k3IZQz2qtqXqTzF4gDeFgPdXb.jpg b/upload/m3k3IZQz2qtqXqTzF4gDeFgPdXb.jpg new file mode 100644 index 0000000..1031623 Binary files /dev/null and b/upload/m3k3IZQz2qtqXqTzF4gDeFgPdXb.jpg differ diff --git a/upload/m8jVrOxO0ZpGXRgauzfqSGoJGc0.jpg b/upload/m8jVrOxO0ZpGXRgauzfqSGoJGc0.jpg new file mode 100644 index 0000000..27e558f Binary files /dev/null and b/upload/m8jVrOxO0ZpGXRgauzfqSGoJGc0.jpg differ diff --git a/upload/mAZP18MFhll93EmcyFuFGGypF4S.jpg b/upload/mAZP18MFhll93EmcyFuFGGypF4S.jpg new file mode 100644 index 0000000..fab2964 Binary files /dev/null and b/upload/mAZP18MFhll93EmcyFuFGGypF4S.jpg differ diff --git a/upload/mAkPFEWkwKz9nmKyCiuETfTdpgX.jpg b/upload/mAkPFEWkwKz9nmKyCiuETfTdpgX.jpg new file mode 100644 index 0000000..5498928 Binary files /dev/null and b/upload/mAkPFEWkwKz9nmKyCiuETfTdpgX.jpg differ diff --git a/upload/mBd56RoS8HiiLT1u0ZZAWFWSU3g.jpg b/upload/mBd56RoS8HiiLT1u0ZZAWFWSU3g.jpg new file mode 100644 index 0000000..9137ed4 Binary files /dev/null and b/upload/mBd56RoS8HiiLT1u0ZZAWFWSU3g.jpg differ diff --git a/upload/mBl7B4r5k0PFTBPd0uTacm2ml4O.jpg b/upload/mBl7B4r5k0PFTBPd0uTacm2ml4O.jpg new file mode 100644 index 0000000..f311473 Binary files /dev/null and b/upload/mBl7B4r5k0PFTBPd0uTacm2ml4O.jpg differ diff --git a/upload/mGnOtBmpkQ5CndwxeIKDUqkUkre.jpg b/upload/mGnOtBmpkQ5CndwxeIKDUqkUkre.jpg new file mode 100644 index 0000000..d576adf Binary files /dev/null and b/upload/mGnOtBmpkQ5CndwxeIKDUqkUkre.jpg differ diff --git a/upload/mGnOtBmpkQ5CndwxeIKDUqkUkre_EDhiKUF.jpg b/upload/mGnOtBmpkQ5CndwxeIKDUqkUkre_EDhiKUF.jpg new file mode 100644 index 0000000..d576adf Binary files /dev/null and b/upload/mGnOtBmpkQ5CndwxeIKDUqkUkre_EDhiKUF.jpg differ diff --git a/upload/mIpCxBWNz6SHCQBe2K2PFr5MB7f.jpg b/upload/mIpCxBWNz6SHCQBe2K2PFr5MB7f.jpg new file mode 100644 index 0000000..44ee295 Binary files /dev/null and b/upload/mIpCxBWNz6SHCQBe2K2PFr5MB7f.jpg differ diff --git a/upload/mIpCxBWNz6SHCQBe2K2PFr5MB7f_J0bMPcI.jpg b/upload/mIpCxBWNz6SHCQBe2K2PFr5MB7f_J0bMPcI.jpg new file mode 100644 index 0000000..4703d78 Binary files /dev/null and b/upload/mIpCxBWNz6SHCQBe2K2PFr5MB7f_J0bMPcI.jpg differ diff --git a/upload/mM1AJqa528BEdAG3yGuE1HY3R2o.jpg b/upload/mM1AJqa528BEdAG3yGuE1HY3R2o.jpg new file mode 100644 index 0000000..8a2dea3 Binary files /dev/null and b/upload/mM1AJqa528BEdAG3yGuE1HY3R2o.jpg differ diff --git a/upload/mMtUybQ6hL24FXo0F3Z4j2KG7kZ.jpg b/upload/mMtUybQ6hL24FXo0F3Z4j2KG7kZ.jpg new file mode 100644 index 0000000..5b77186 Binary files /dev/null and b/upload/mMtUybQ6hL24FXo0F3Z4j2KG7kZ.jpg differ diff --git a/upload/mNOB5JoW1imvdGrZ52RGZgJCop0.jpg b/upload/mNOB5JoW1imvdGrZ52RGZgJCop0.jpg new file mode 100644 index 0000000..84edeb9 Binary files /dev/null and b/upload/mNOB5JoW1imvdGrZ52RGZgJCop0.jpg differ diff --git a/upload/mO4QCd8dB6vHAX4F9nXyli58G4c.jpg b/upload/mO4QCd8dB6vHAX4F9nXyli58G4c.jpg new file mode 100644 index 0000000..71b693d Binary files /dev/null and b/upload/mO4QCd8dB6vHAX4F9nXyli58G4c.jpg differ diff --git a/upload/mPWqtFxc1r1aiArhTHAWrk9MmwB.jpg b/upload/mPWqtFxc1r1aiArhTHAWrk9MmwB.jpg new file mode 100644 index 0000000..dfe3429 Binary files /dev/null and b/upload/mPWqtFxc1r1aiArhTHAWrk9MmwB.jpg differ diff --git a/upload/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc.jpg b/upload/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc.jpg new file mode 100644 index 0000000..e821013 Binary files /dev/null and b/upload/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc.jpg differ diff --git a/upload/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc_bcPs6Bc.jpg b/upload/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc_bcPs6Bc.jpg new file mode 100644 index 0000000..bc49a04 Binary files /dev/null and b/upload/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc_bcPs6Bc.jpg differ diff --git a/upload/mYSuhIRUrs0KSOkG15StWhEEsiS.jpg b/upload/mYSuhIRUrs0KSOkG15StWhEEsiS.jpg new file mode 100644 index 0000000..ae312b3 Binary files /dev/null and b/upload/mYSuhIRUrs0KSOkG15StWhEEsiS.jpg differ diff --git a/upload/mZSAu5acXueGC4Z3S5iLSWx8AEp.jpg b/upload/mZSAu5acXueGC4Z3S5iLSWx8AEp.jpg new file mode 100644 index 0000000..5093bef Binary files /dev/null and b/upload/mZSAu5acXueGC4Z3S5iLSWx8AEp.jpg differ diff --git a/upload/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg b/upload/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg new file mode 100644 index 0000000..01bf84e Binary files /dev/null and b/upload/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg differ diff --git a/upload/maxresdefault.jpg b/upload/maxresdefault.jpg new file mode 100644 index 0000000..7221ea9 Binary files /dev/null and b/upload/maxresdefault.jpg differ diff --git a/upload/maxresdefault_0KujXmV.jpg b/upload/maxresdefault_0KujXmV.jpg new file mode 100644 index 0000000..e00c20b Binary files /dev/null and b/upload/maxresdefault_0KujXmV.jpg differ diff --git a/upload/maxresdefault_1.jpg b/upload/maxresdefault_1.jpg new file mode 100644 index 0000000..fd6fe81 Binary files /dev/null and b/upload/maxresdefault_1.jpg differ diff --git a/upload/maxresdefault_1_CWMBK3y.jpg b/upload/maxresdefault_1_CWMBK3y.jpg new file mode 100644 index 0000000..cdcacec Binary files /dev/null and b/upload/maxresdefault_1_CWMBK3y.jpg differ diff --git a/upload/maxresdefault_1_DDaXA4M.jpg b/upload/maxresdefault_1_DDaXA4M.jpg new file mode 100644 index 0000000..c15b19f Binary files /dev/null and b/upload/maxresdefault_1_DDaXA4M.jpg differ diff --git a/upload/maxresdefault_1_WkugQIY.jpg b/upload/maxresdefault_1_WkugQIY.jpg new file mode 100644 index 0000000..d48247a Binary files /dev/null and b/upload/maxresdefault_1_WkugQIY.jpg differ diff --git a/upload/maxresdefault_1_kRUMYik.jpg b/upload/maxresdefault_1_kRUMYik.jpg new file mode 100644 index 0000000..efc4728 Binary files /dev/null and b/upload/maxresdefault_1_kRUMYik.jpg differ diff --git a/upload/maxresdefault_1_zY8Nuna.jpg b/upload/maxresdefault_1_zY8Nuna.jpg new file mode 100644 index 0000000..db1eb19 Binary files /dev/null and b/upload/maxresdefault_1_zY8Nuna.jpg differ diff --git a/upload/maxresdefault_2.jpg b/upload/maxresdefault_2.jpg new file mode 100644 index 0000000..9672fc1 Binary files /dev/null and b/upload/maxresdefault_2.jpg differ diff --git a/upload/maxresdefault_2WC4ghu.jpg b/upload/maxresdefault_2WC4ghu.jpg new file mode 100644 index 0000000..fc04bca Binary files /dev/null and b/upload/maxresdefault_2WC4ghu.jpg differ diff --git a/upload/maxresdefault_2_ONZs9dG.jpg b/upload/maxresdefault_2_ONZs9dG.jpg new file mode 100644 index 0000000..c3c9991 Binary files /dev/null and b/upload/maxresdefault_2_ONZs9dG.jpg differ diff --git a/upload/maxresdefault_2_ogU8wZm.jpg b/upload/maxresdefault_2_ogU8wZm.jpg new file mode 100644 index 0000000..78c63e4 Binary files /dev/null and b/upload/maxresdefault_2_ogU8wZm.jpg differ diff --git a/upload/maxresdefault_2_okqf1rA.jpg b/upload/maxresdefault_2_okqf1rA.jpg new file mode 100644 index 0000000..ae66fe4 Binary files /dev/null and b/upload/maxresdefault_2_okqf1rA.jpg differ diff --git a/upload/maxresdefault_3.jpg b/upload/maxresdefault_3.jpg new file mode 100644 index 0000000..fb41f8f Binary files /dev/null and b/upload/maxresdefault_3.jpg differ diff --git a/upload/maxresdefault_3_wqRoKoo.jpg b/upload/maxresdefault_3_wqRoKoo.jpg new file mode 100644 index 0000000..5da3b99 Binary files /dev/null and b/upload/maxresdefault_3_wqRoKoo.jpg differ diff --git a/upload/maxresdefault_8aZKrzs.jpg b/upload/maxresdefault_8aZKrzs.jpg new file mode 100644 index 0000000..4eccf32 Binary files /dev/null and b/upload/maxresdefault_8aZKrzs.jpg differ diff --git a/upload/maxresdefault_8kroB0F.jpg b/upload/maxresdefault_8kroB0F.jpg new file mode 100644 index 0000000..e4595cc Binary files /dev/null and b/upload/maxresdefault_8kroB0F.jpg differ diff --git a/upload/maxresdefault_ECQifXW.jpg b/upload/maxresdefault_ECQifXW.jpg new file mode 100644 index 0000000..9b81d46 Binary files /dev/null and b/upload/maxresdefault_ECQifXW.jpg differ diff --git a/upload/maxresdefault_I9tTpMy.jpg b/upload/maxresdefault_I9tTpMy.jpg new file mode 100644 index 0000000..1a80605 Binary files /dev/null and b/upload/maxresdefault_I9tTpMy.jpg differ diff --git a/upload/maxresdefault_LA15DLV.jpg b/upload/maxresdefault_LA15DLV.jpg new file mode 100644 index 0000000..6bedf0b Binary files /dev/null and b/upload/maxresdefault_LA15DLV.jpg differ diff --git a/upload/maxresdefault_MMj7g4w.jpg b/upload/maxresdefault_MMj7g4w.jpg new file mode 100644 index 0000000..ea3ac1a Binary files /dev/null and b/upload/maxresdefault_MMj7g4w.jpg differ diff --git a/upload/maxresdefault_NdPC9A7.jpg b/upload/maxresdefault_NdPC9A7.jpg new file mode 100644 index 0000000..b535f7f Binary files /dev/null and b/upload/maxresdefault_NdPC9A7.jpg differ diff --git a/upload/maxresdefault_Vqh8iDw.jpg b/upload/maxresdefault_Vqh8iDw.jpg new file mode 100644 index 0000000..d765296 Binary files /dev/null and b/upload/maxresdefault_Vqh8iDw.jpg differ diff --git a/upload/maxresdefault_a8QOQt9.jpg b/upload/maxresdefault_a8QOQt9.jpg new file mode 100644 index 0000000..cb82224 Binary files /dev/null and b/upload/maxresdefault_a8QOQt9.jpg differ diff --git a/upload/maxresdefault_fhcqiCf.jpg b/upload/maxresdefault_fhcqiCf.jpg new file mode 100644 index 0000000..7503549 Binary files /dev/null and b/upload/maxresdefault_fhcqiCf.jpg differ diff --git a/upload/maxresdefault_fkxnC9A.jpg b/upload/maxresdefault_fkxnC9A.jpg new file mode 100644 index 0000000..b91d41e Binary files /dev/null and b/upload/maxresdefault_fkxnC9A.jpg differ diff --git a/upload/maxresdefault_hAmsuBJ.jpg b/upload/maxresdefault_hAmsuBJ.jpg new file mode 100644 index 0000000..8658f93 Binary files /dev/null and b/upload/maxresdefault_hAmsuBJ.jpg differ diff --git a/upload/maxresdefault_mYs6cTZ.jpg b/upload/maxresdefault_mYs6cTZ.jpg new file mode 100644 index 0000000..451c5cd Binary files /dev/null and b/upload/maxresdefault_mYs6cTZ.jpg differ diff --git a/upload/maxresdefault_maNxf7K.jpg b/upload/maxresdefault_maNxf7K.jpg new file mode 100644 index 0000000..dcfe267 Binary files /dev/null and b/upload/maxresdefault_maNxf7K.jpg differ diff --git a/upload/maxresdefault_p3xOBjy.jpg b/upload/maxresdefault_p3xOBjy.jpg new file mode 100644 index 0000000..4e2400f Binary files /dev/null and b/upload/maxresdefault_p3xOBjy.jpg differ diff --git a/upload/maxresdefault_xYZgZJ2.jpg b/upload/maxresdefault_xYZgZJ2.jpg new file mode 100644 index 0000000..7abd1ba Binary files /dev/null and b/upload/maxresdefault_xYZgZJ2.jpg differ diff --git a/upload/maxresdefault_zNGrdwI.jpg b/upload/maxresdefault_zNGrdwI.jpg new file mode 100644 index 0000000..07145f5 Binary files /dev/null and b/upload/maxresdefault_zNGrdwI.jpg differ diff --git a/upload/mbPrrbt8bSLcHSBCHnRclPlMZPl.jpg b/upload/mbPrrbt8bSLcHSBCHnRclPlMZPl.jpg new file mode 100644 index 0000000..4f16956 Binary files /dev/null and b/upload/mbPrrbt8bSLcHSBCHnRclPlMZPl.jpg differ diff --git a/upload/mgm-AZ_ADDAMS18-Full-Image_GalleryBackground-en-US-1578462908540._RI_.jpg b/upload/mgm-AZ_ADDAMS18-Full-Image_GalleryBackground-en-US-1578462908540._RI_.jpg new file mode 100644 index 0000000..ea5819e Binary files /dev/null and b/upload/mgm-AZ_ADDAMS18-Full-Image_GalleryBackground-en-US-1578462908540._RI_.jpg differ diff --git a/upload/millionwayswest.jpg b/upload/millionwayswest.jpg new file mode 100644 index 0000000..912e980 Binary files /dev/null and b/upload/millionwayswest.jpg differ diff --git a/upload/mmaej0zIZ1zbc544SDFK8n8UdmK.jpg b/upload/mmaej0zIZ1zbc544SDFK8n8UdmK.jpg new file mode 100644 index 0000000..db777ce Binary files /dev/null and b/upload/mmaej0zIZ1zbc544SDFK8n8UdmK.jpg differ diff --git a/upload/mmznhaQDwlHWpUwKuNxtQiubbmM.jpg b/upload/mmznhaQDwlHWpUwKuNxtQiubbmM.jpg new file mode 100644 index 0000000..51a86bf Binary files /dev/null and b/upload/mmznhaQDwlHWpUwKuNxtQiubbmM.jpg differ diff --git a/upload/moH836IaFb47qYdB6ojFtNzPkRC.jpg b/upload/moH836IaFb47qYdB6ojFtNzPkRC.jpg new file mode 100644 index 0000000..a6c8d63 Binary files /dev/null and b/upload/moH836IaFb47qYdB6ojFtNzPkRC.jpg differ diff --git a/upload/monsters-co-3D-grande-OK.jpg b/upload/monsters-co-3D-grande-OK.jpg new file mode 100644 index 0000000..fd86535 Binary files /dev/null and b/upload/monsters-co-3D-grande-OK.jpg differ diff --git a/upload/monsters_inc_blu-ray2x.jpg b/upload/monsters_inc_blu-ray2x.jpg new file mode 100644 index 0000000..74d470b Binary files /dev/null and b/upload/monsters_inc_blu-ray2x.jpg differ diff --git a/upload/most-accurate-space-movies-apollo-13.jpg b/upload/most-accurate-space-movies-apollo-13.jpg new file mode 100644 index 0000000..0b59803 Binary files /dev/null and b/upload/most-accurate-space-movies-apollo-13.jpg differ diff --git a/upload/mune-guardiano-luna-trailer-foto-nuovo-film-francese-d-animazione-215925-1280x720.jpg b/upload/mune-guardiano-luna-trailer-foto-nuovo-film-francese-d-animazione-215925-1280x720.jpg new file mode 100644 index 0000000..75a9dba Binary files /dev/null and b/upload/mune-guardiano-luna-trailer-foto-nuovo-film-francese-d-animazione-215925-1280x720.jpg differ diff --git a/upload/mune03.jpg b/upload/mune03.jpg new file mode 100644 index 0000000..6434a51 Binary files /dev/null and b/upload/mune03.jpg differ diff --git a/upload/mune2.jpg b/upload/mune2.jpg new file mode 100644 index 0000000..d99e104 Binary files /dev/null and b/upload/mune2.jpg differ diff --git a/upload/mvXgk0pavKoKuRZRgIjvyw5I5up.jpg b/upload/mvXgk0pavKoKuRZRgIjvyw5I5up.jpg new file mode 100644 index 0000000..713e2fd Binary files /dev/null and b/upload/mvXgk0pavKoKuRZRgIjvyw5I5up.jpg differ diff --git a/upload/n0wfydLBCGZifQBn8aLxYjhgTWA.jpg b/upload/n0wfydLBCGZifQBn8aLxYjhgTWA.jpg new file mode 100644 index 0000000..49b786d Binary files /dev/null and b/upload/n0wfydLBCGZifQBn8aLxYjhgTWA.jpg differ diff --git a/upload/n28I7FNYIT934OoHhKZn4IIDsrQ.jpg b/upload/n28I7FNYIT934OoHhKZn4IIDsrQ.jpg new file mode 100644 index 0000000..7405080 Binary files /dev/null and b/upload/n28I7FNYIT934OoHhKZn4IIDsrQ.jpg differ diff --git a/upload/n5A7brJCjejceZmHyujwUTVgQNC.jpg b/upload/n5A7brJCjejceZmHyujwUTVgQNC.jpg new file mode 100644 index 0000000..e2c6bdf Binary files /dev/null and b/upload/n5A7brJCjejceZmHyujwUTVgQNC.jpg differ diff --git a/upload/n6bUvigpRFqSwmPp1m2YADdbRBc.jpg b/upload/n6bUvigpRFqSwmPp1m2YADdbRBc.jpg new file mode 100644 index 0000000..5b41980 Binary files /dev/null and b/upload/n6bUvigpRFqSwmPp1m2YADdbRBc.jpg differ diff --git a/upload/n88p2RDLHfaa3qfOAiWVR5ANeY8.jpg b/upload/n88p2RDLHfaa3qfOAiWVR5ANeY8.jpg new file mode 100644 index 0000000..110e9c2 Binary files /dev/null and b/upload/n88p2RDLHfaa3qfOAiWVR5ANeY8.jpg differ diff --git a/upload/nB2CMpvC1zhevZykb4bMeSgVmFP.jpg b/upload/nB2CMpvC1zhevZykb4bMeSgVmFP.jpg new file mode 100644 index 0000000..c458a82 Binary files /dev/null and b/upload/nB2CMpvC1zhevZykb4bMeSgVmFP.jpg differ diff --git a/upload/nC58INEHlHobuWobisfwEJzODb3.jpg b/upload/nC58INEHlHobuWobisfwEJzODb3.jpg new file mode 100644 index 0000000..98c12af Binary files /dev/null and b/upload/nC58INEHlHobuWobisfwEJzODb3.jpg differ diff --git a/upload/nCAbiZC7a3qfcKJbAT9KIUydzQD.jpg b/upload/nCAbiZC7a3qfcKJbAT9KIUydzQD.jpg new file mode 100644 index 0000000..cc22139 Binary files /dev/null and b/upload/nCAbiZC7a3qfcKJbAT9KIUydzQD.jpg differ diff --git a/upload/nGxt84utj9Ya6VWlrGVExXM4LqS.jpg b/upload/nGxt84utj9Ya6VWlrGVExXM4LqS.jpg new file mode 100644 index 0000000..b9cacc7 Binary files /dev/null and b/upload/nGxt84utj9Ya6VWlrGVExXM4LqS.jpg differ diff --git a/upload/nIiW6IR2zGBZm3vUhQTWUsXbEyC.jpg b/upload/nIiW6IR2zGBZm3vUhQTWUsXbEyC.jpg new file mode 100644 index 0000000..8f6b0f1 Binary files /dev/null and b/upload/nIiW6IR2zGBZm3vUhQTWUsXbEyC.jpg differ diff --git a/upload/nIiW6IR2zGBZm3vUhQTWUsXbEyC_nFPoTWR.jpg b/upload/nIiW6IR2zGBZm3vUhQTWUsXbEyC_nFPoTWR.jpg new file mode 100644 index 0000000..8f6b0f1 Binary files /dev/null and b/upload/nIiW6IR2zGBZm3vUhQTWUsXbEyC_nFPoTWR.jpg differ diff --git a/upload/nJrL26HPH5rgyipB19Okl9UqkfG.jpg b/upload/nJrL26HPH5rgyipB19Okl9UqkfG.jpg new file mode 100644 index 0000000..b8f6e17 Binary files /dev/null and b/upload/nJrL26HPH5rgyipB19Okl9UqkfG.jpg differ diff --git a/upload/nM3TA1xY7cRhvdI70cKOjc9hc4u.jpg b/upload/nM3TA1xY7cRhvdI70cKOjc9hc4u.jpg new file mode 100644 index 0000000..04d92da Binary files /dev/null and b/upload/nM3TA1xY7cRhvdI70cKOjc9hc4u.jpg differ diff --git a/upload/nOFLk8Pbd1FWxJI4QqNKYhFFvkN.jpg b/upload/nOFLk8Pbd1FWxJI4QqNKYhFFvkN.jpg new file mode 100644 index 0000000..ec2dbcf Binary files /dev/null and b/upload/nOFLk8Pbd1FWxJI4QqNKYhFFvkN.jpg differ diff --git a/upload/nRBVXhXlgsjxZzob4zwIKj7QOu6.jpg b/upload/nRBVXhXlgsjxZzob4zwIKj7QOu6.jpg new file mode 100644 index 0000000..26948a1 Binary files /dev/null and b/upload/nRBVXhXlgsjxZzob4zwIKj7QOu6.jpg differ diff --git a/upload/nREtNrdFv55airtQUDXxWWbeHPN.jpg b/upload/nREtNrdFv55airtQUDXxWWbeHPN.jpg new file mode 100644 index 0000000..8a6a716 Binary files /dev/null and b/upload/nREtNrdFv55airtQUDXxWWbeHPN.jpg differ diff --git a/upload/nS4picOwj15APKzJeBCk6EBcMG5.jpg b/upload/nS4picOwj15APKzJeBCk6EBcMG5.jpg new file mode 100644 index 0000000..26a5f0f Binary files /dev/null and b/upload/nS4picOwj15APKzJeBCk6EBcMG5.jpg differ diff --git a/upload/nV5EoV7lZXiJrXviURpBwW7c2F.jpg b/upload/nV5EoV7lZXiJrXviURpBwW7c2F.jpg new file mode 100644 index 0000000..dc686cd Binary files /dev/null and b/upload/nV5EoV7lZXiJrXviURpBwW7c2F.jpg differ diff --git a/upload/nYO6Ga76hHVoDEdwbLWjseWVjZF.jpg b/upload/nYO6Ga76hHVoDEdwbLWjseWVjZF.jpg new file mode 100644 index 0000000..82b2d73 Binary files /dev/null and b/upload/nYO6Ga76hHVoDEdwbLWjseWVjZF.jpg differ diff --git a/upload/nYlIeYdPjpkgmJBaZW8yDLnG89M.jpg b/upload/nYlIeYdPjpkgmJBaZW8yDLnG89M.jpg new file mode 100644 index 0000000..66c4a4f Binary files /dev/null and b/upload/nYlIeYdPjpkgmJBaZW8yDLnG89M.jpg differ diff --git a/upload/nZmTkrY1fbiKWiFP6PiaIpLz9Rw.jpg b/upload/nZmTkrY1fbiKWiFP6PiaIpLz9Rw.jpg new file mode 100644 index 0000000..8b6398e Binary files /dev/null and b/upload/nZmTkrY1fbiKWiFP6PiaIpLz9Rw.jpg differ diff --git a/upload/naXUDz0VGK7aaPlEpsuYW8kNVsr.jpg b/upload/naXUDz0VGK7aaPlEpsuYW8kNVsr.jpg new file mode 100644 index 0000000..d66bde7 Binary files /dev/null and b/upload/naXUDz0VGK7aaPlEpsuYW8kNVsr.jpg differ diff --git a/upload/naXUDz0VGK7aaPlEpsuYW8kNVsr_2THRF4t.jpg b/upload/naXUDz0VGK7aaPlEpsuYW8kNVsr_2THRF4t.jpg new file mode 100644 index 0000000..35484b9 Binary files /dev/null and b/upload/naXUDz0VGK7aaPlEpsuYW8kNVsr_2THRF4t.jpg differ diff --git a/upload/nbWY6797LUxXRSYwamHp8V0X4dA.jpg b/upload/nbWY6797LUxXRSYwamHp8V0X4dA.jpg new file mode 100644 index 0000000..e6d5ab0 Binary files /dev/null and b/upload/nbWY6797LUxXRSYwamHp8V0X4dA.jpg differ diff --git a/upload/nc9AhrU4CAcBuFNTOjRhaGwucTw.jpg b/upload/nc9AhrU4CAcBuFNTOjRhaGwucTw.jpg new file mode 100644 index 0000000..100a583 Binary files /dev/null and b/upload/nc9AhrU4CAcBuFNTOjRhaGwucTw.jpg differ diff --git a/upload/ncTlQsLHZJgOir1kbBSTvSoEZZZ.jpg b/upload/ncTlQsLHZJgOir1kbBSTvSoEZZZ.jpg new file mode 100644 index 0000000..a2bd877 Binary files /dev/null and b/upload/ncTlQsLHZJgOir1kbBSTvSoEZZZ.jpg differ diff --git a/upload/ndXsushIwLMxBlxFgOsLnUxC96F.jpg b/upload/ndXsushIwLMxBlxFgOsLnUxC96F.jpg new file mode 100644 index 0000000..e5bd130 Binary files /dev/null and b/upload/ndXsushIwLMxBlxFgOsLnUxC96F.jpg differ diff --git a/upload/neH7GNmzMs1BDLqHXOnTuB04dNh.jpg b/upload/neH7GNmzMs1BDLqHXOnTuB04dNh.jpg new file mode 100644 index 0000000..e4248db Binary files /dev/null and b/upload/neH7GNmzMs1BDLqHXOnTuB04dNh.jpg differ diff --git a/upload/neH7GNmzMs1BDLqHXOnTuB04dNh_QTwgSyE.jpg b/upload/neH7GNmzMs1BDLqHXOnTuB04dNh_QTwgSyE.jpg new file mode 100644 index 0000000..e102216 Binary files /dev/null and b/upload/neH7GNmzMs1BDLqHXOnTuB04dNh_QTwgSyE.jpg differ diff --git a/upload/ngBFDOsx13sFXiMweDoL54XYknR.jpg b/upload/ngBFDOsx13sFXiMweDoL54XYknR.jpg new file mode 100644 index 0000000..e17b7cf Binary files /dev/null and b/upload/ngBFDOsx13sFXiMweDoL54XYknR.jpg differ diff --git a/upload/nk2K3jSK5PNEIMql4W5F9XKmXEb.jpg b/upload/nk2K3jSK5PNEIMql4W5F9XKmXEb.jpg new file mode 100644 index 0000000..a496539 Binary files /dev/null and b/upload/nk2K3jSK5PNEIMql4W5F9XKmXEb.jpg differ diff --git a/upload/nnnmmuuu.jpg b/upload/nnnmmuuu.jpg new file mode 100644 index 0000000..f45877c Binary files /dev/null and b/upload/nnnmmuuu.jpg differ diff --git a/upload/npCPnwDyWfQltGfIZKN6WqeUXGI.jpg b/upload/npCPnwDyWfQltGfIZKN6WqeUXGI.jpg new file mode 100644 index 0000000..d987372 Binary files /dev/null and b/upload/npCPnwDyWfQltGfIZKN6WqeUXGI.jpg differ diff --git a/upload/nqI0uV4vEmznt16Q2TNsnuep4yt.jpg b/upload/nqI0uV4vEmznt16Q2TNsnuep4yt.jpg new file mode 100644 index 0000000..6809749 Binary files /dev/null and b/upload/nqI0uV4vEmznt16Q2TNsnuep4yt.jpg differ diff --git a/upload/nrAS0A39AW0fezW3gFmsKEDzGiU.jpg b/upload/nrAS0A39AW0fezW3gFmsKEDzGiU.jpg new file mode 100644 index 0000000..cc2e6aa Binary files /dev/null and b/upload/nrAS0A39AW0fezW3gFmsKEDzGiU.jpg differ diff --git a/upload/nw2QIIEL.jpg b/upload/nw2QIIEL.jpg new file mode 100644 index 0000000..e709ba2 Binary files /dev/null and b/upload/nw2QIIEL.jpg differ diff --git a/upload/o1VwIPYNBq84060v5sEwRT0XMMh.jpg b/upload/o1VwIPYNBq84060v5sEwRT0XMMh.jpg new file mode 100644 index 0000000..ad4506f Binary files /dev/null and b/upload/o1VwIPYNBq84060v5sEwRT0XMMh.jpg differ diff --git a/upload/o2FXy0rUxgHwEy4POsV3HM4hJOQ.jpg b/upload/o2FXy0rUxgHwEy4POsV3HM4hJOQ.jpg new file mode 100644 index 0000000..e36691e Binary files /dev/null and b/upload/o2FXy0rUxgHwEy4POsV3HM4hJOQ.jpg differ diff --git a/upload/o3i6AfTcWAuNvzAUV3q5lOmi6Gx.jpg b/upload/o3i6AfTcWAuNvzAUV3q5lOmi6Gx.jpg new file mode 100644 index 0000000..97186c2 Binary files /dev/null and b/upload/o3i6AfTcWAuNvzAUV3q5lOmi6Gx.jpg differ diff --git a/upload/o3i6AfTcWAuNvzAUV3q5lOmi6Gx_leQ8nQ4.jpg b/upload/o3i6AfTcWAuNvzAUV3q5lOmi6Gx_leQ8nQ4.jpg new file mode 100644 index 0000000..d672021 Binary files /dev/null and b/upload/o3i6AfTcWAuNvzAUV3q5lOmi6Gx_leQ8nQ4.jpg differ diff --git a/upload/o7ubFocvlyRZZUS26nIO7jKmLIe.jpg b/upload/o7ubFocvlyRZZUS26nIO7jKmLIe.jpg new file mode 100644 index 0000000..0b0dc39 Binary files /dev/null and b/upload/o7ubFocvlyRZZUS26nIO7jKmLIe.jpg differ diff --git a/upload/o8P00ExtwsGYJYRGkBUCIPWJjn5.jpg b/upload/o8P00ExtwsGYJYRGkBUCIPWJjn5.jpg new file mode 100644 index 0000000..32eb1b8 Binary files /dev/null and b/upload/o8P00ExtwsGYJYRGkBUCIPWJjn5.jpg differ diff --git a/upload/o8nKMrvRr8MaK7Y7d68IprD9npf.jpg b/upload/o8nKMrvRr8MaK7Y7d68IprD9npf.jpg new file mode 100644 index 0000000..4bb30ba Binary files /dev/null and b/upload/o8nKMrvRr8MaK7Y7d68IprD9npf.jpg differ diff --git a/upload/o97EsIf67XTdU09EyHFHE51POOm.jpg b/upload/o97EsIf67XTdU09EyHFHE51POOm.jpg new file mode 100644 index 0000000..f113a23 Binary files /dev/null and b/upload/o97EsIf67XTdU09EyHFHE51POOm.jpg differ diff --git a/upload/oAr5bgf49vxga9etWoQpAeRMvhp.jpg b/upload/oAr5bgf49vxga9etWoQpAeRMvhp.jpg new file mode 100644 index 0000000..73ee85c Binary files /dev/null and b/upload/oAr5bgf49vxga9etWoQpAeRMvhp.jpg differ diff --git a/upload/oCB8tMvo5dd4j1NN2bLlXbgoeRB.jpg b/upload/oCB8tMvo5dd4j1NN2bLlXbgoeRB.jpg new file mode 100644 index 0000000..c140a40 Binary files /dev/null and b/upload/oCB8tMvo5dd4j1NN2bLlXbgoeRB.jpg differ diff --git a/upload/oE7hmEKnmIHYKicbl6lggPdP1Sc.jpg b/upload/oE7hmEKnmIHYKicbl6lggPdP1Sc.jpg new file mode 100644 index 0000000..53f92f4 Binary files /dev/null and b/upload/oE7hmEKnmIHYKicbl6lggPdP1Sc.jpg differ diff --git a/upload/oF0ZM3T5NG3l8uTXpqpjSOuG4DA.jpg b/upload/oF0ZM3T5NG3l8uTXpqpjSOuG4DA.jpg new file mode 100644 index 0000000..0938fae Binary files /dev/null and b/upload/oF0ZM3T5NG3l8uTXpqpjSOuG4DA.jpg differ diff --git a/upload/oFPVC3ival04a9Yijm716QXOsCA.jpg b/upload/oFPVC3ival04a9Yijm716QXOsCA.jpg new file mode 100644 index 0000000..41fd4e3 Binary files /dev/null and b/upload/oFPVC3ival04a9Yijm716QXOsCA.jpg differ diff --git a/upload/oFPVC3ival04a9Yijm716QXOsCA_QnhHSpb.jpg b/upload/oFPVC3ival04a9Yijm716QXOsCA_QnhHSpb.jpg new file mode 100644 index 0000000..8e23313 Binary files /dev/null and b/upload/oFPVC3ival04a9Yijm716QXOsCA_QnhHSpb.jpg differ diff --git a/upload/oKBWimQG5r5eo8VNWlebB1MIbv9.jpg b/upload/oKBWimQG5r5eo8VNWlebB1MIbv9.jpg new file mode 100644 index 0000000..535df71 Binary files /dev/null and b/upload/oKBWimQG5r5eo8VNWlebB1MIbv9.jpg differ diff --git a/upload/oKBWimQG5r5eo8VNWlebB1MIbv9_wUHbCbO.jpg b/upload/oKBWimQG5r5eo8VNWlebB1MIbv9_wUHbCbO.jpg new file mode 100644 index 0000000..d5815c2 Binary files /dev/null and b/upload/oKBWimQG5r5eo8VNWlebB1MIbv9_wUHbCbO.jpg differ diff --git a/upload/oLmifRdaETboot2PXxpZN8NqHhK.jpg b/upload/oLmifRdaETboot2PXxpZN8NqHhK.jpg new file mode 100644 index 0000000..7365474 Binary files /dev/null and b/upload/oLmifRdaETboot2PXxpZN8NqHhK.jpg differ diff --git a/upload/oMH0n8vvCuNVBueN2balBEpm9FY.jpg b/upload/oMH0n8vvCuNVBueN2balBEpm9FY.jpg new file mode 100644 index 0000000..f441be0 Binary files /dev/null and b/upload/oMH0n8vvCuNVBueN2balBEpm9FY.jpg differ diff --git a/upload/oMaj75G2WFw66xI1TREg1hrToSg.jpg b/upload/oMaj75G2WFw66xI1TREg1hrToSg.jpg new file mode 100644 index 0000000..33b526c Binary files /dev/null and b/upload/oMaj75G2WFw66xI1TREg1hrToSg.jpg differ diff --git a/upload/oMsxZEvz9a708d49b6UdZK1KAo5.jpg b/upload/oMsxZEvz9a708d49b6UdZK1KAo5.jpg new file mode 100644 index 0000000..0725859 Binary files /dev/null and b/upload/oMsxZEvz9a708d49b6UdZK1KAo5.jpg differ diff --git a/upload/oS59PLSobkBZglSGXYTEpOm1eBc.jpg b/upload/oS59PLSobkBZglSGXYTEpOm1eBc.jpg new file mode 100644 index 0000000..663954a Binary files /dev/null and b/upload/oS59PLSobkBZglSGXYTEpOm1eBc.jpg differ diff --git a/upload/oUcrupfHti5fywSdl7rswJQKpwJ.jpg b/upload/oUcrupfHti5fywSdl7rswJQKpwJ.jpg new file mode 100644 index 0000000..73fd6af Binary files /dev/null and b/upload/oUcrupfHti5fywSdl7rswJQKpwJ.jpg differ diff --git a/upload/oUjIvWLhoRUtYFOvpXh7Rpg9BKX.jpg b/upload/oUjIvWLhoRUtYFOvpXh7Rpg9BKX.jpg new file mode 100644 index 0000000..9e2f2f6 Binary files /dev/null and b/upload/oUjIvWLhoRUtYFOvpXh7Rpg9BKX.jpg differ diff --git a/upload/oWU6dgu3RgdSZElkhbZuoPtkWAJ.jpg b/upload/oWU6dgu3RgdSZElkhbZuoPtkWAJ.jpg new file mode 100644 index 0000000..6684d52 Binary files /dev/null and b/upload/oWU6dgu3RgdSZElkhbZuoPtkWAJ.jpg differ diff --git a/upload/oXdxWJJbU2qgSVz9EQwZSZlyOcD.jpg b/upload/oXdxWJJbU2qgSVz9EQwZSZlyOcD.jpg new file mode 100644 index 0000000..eebc01f Binary files /dev/null and b/upload/oXdxWJJbU2qgSVz9EQwZSZlyOcD.jpg differ diff --git a/upload/oXs67sAZuZOtTGjLG0TL1KdqqpR.jpg b/upload/oXs67sAZuZOtTGjLG0TL1KdqqpR.jpg new file mode 100644 index 0000000..c00f349 Binary files /dev/null and b/upload/oXs67sAZuZOtTGjLG0TL1KdqqpR.jpg differ diff --git a/upload/ocfWQ2Q0W8NkE2t3EaAm4blXleD.jpg b/upload/ocfWQ2Q0W8NkE2t3EaAm4blXleD.jpg new file mode 100644 index 0000000..646fda4 Binary files /dev/null and b/upload/ocfWQ2Q0W8NkE2t3EaAm4blXleD.jpg differ diff --git a/upload/od9qo0mJeWdYnwBTXaltYc9lruf.jpg b/upload/od9qo0mJeWdYnwBTXaltYc9lruf.jpg new file mode 100644 index 0000000..83661eb Binary files /dev/null and b/upload/od9qo0mJeWdYnwBTXaltYc9lruf.jpg differ diff --git a/upload/odW4WVN5hALNDQlL7A97nU6fiAv.jpg b/upload/odW4WVN5hALNDQlL7A97nU6fiAv.jpg new file mode 100644 index 0000000..bf85ce8 Binary files /dev/null and b/upload/odW4WVN5hALNDQlL7A97nU6fiAv.jpg differ diff --git a/upload/odio-lestate-film-famiglie.jpg b/upload/odio-lestate-film-famiglie.jpg new file mode 100644 index 0000000..3645799 Binary files /dev/null and b/upload/odio-lestate-film-famiglie.jpg differ diff --git a/upload/of0AjaFu6O9JaVLTXglDgAUnibE.jpg b/upload/of0AjaFu6O9JaVLTXglDgAUnibE.jpg new file mode 100644 index 0000000..38c8d04 Binary files /dev/null and b/upload/of0AjaFu6O9JaVLTXglDgAUnibE.jpg differ diff --git a/upload/oir2zB8z3PMJSEfx9zN8FVIns3G.jpg b/upload/oir2zB8z3PMJSEfx9zN8FVIns3G.jpg new file mode 100644 index 0000000..6a3b7e4 Binary files /dev/null and b/upload/oir2zB8z3PMJSEfx9zN8FVIns3G.jpg differ diff --git a/upload/okJXzeIpbdx7q8rQjJwBNr8VTEk.jpg b/upload/okJXzeIpbdx7q8rQjJwBNr8VTEk.jpg new file mode 100644 index 0000000..5256b2d Binary files /dev/null and b/upload/okJXzeIpbdx7q8rQjJwBNr8VTEk.jpg differ diff --git a/upload/onMVIamAqbK79525-1.jpg b/upload/onMVIamAqbK79525-1.jpg new file mode 100644 index 0000000..af01079 Binary files /dev/null and b/upload/onMVIamAqbK79525-1.jpg differ diff --git a/upload/oprrrwVx7pqNzJAMBBCtlJZjTje.jpg b/upload/oprrrwVx7pqNzJAMBBCtlJZjTje.jpg new file mode 100644 index 0000000..0970019 Binary files /dev/null and b/upload/oprrrwVx7pqNzJAMBBCtlJZjTje.jpg differ diff --git a/upload/orKviFWibMzLBfVpABZdhPpkGJu.jpg b/upload/orKviFWibMzLBfVpABZdhPpkGJu.jpg new file mode 100644 index 0000000..457da82 Binary files /dev/null and b/upload/orKviFWibMzLBfVpABZdhPpkGJu.jpg differ diff --git a/upload/order-of-the-phoenix-movie-screencaps.com-1765-1.jpg b/upload/order-of-the-phoenix-movie-screencaps.com-1765-1.jpg new file mode 100644 index 0000000..687a21a Binary files /dev/null and b/upload/order-of-the-phoenix-movie-screencaps.com-1765-1.jpg differ diff --git a/upload/orjiB3oUIsyz60hoEqkiGpy5CeO_1.jpg b/upload/orjiB3oUIsyz60hoEqkiGpy5CeO_1.jpg new file mode 100644 index 0000000..2dd6ade Binary files /dev/null and b/upload/orjiB3oUIsyz60hoEqkiGpy5CeO_1.jpg differ diff --git a/upload/oslaee3VX9kJAjVezbjZKlEJDzn.jpg b/upload/oslaee3VX9kJAjVezbjZKlEJDzn.jpg new file mode 100644 index 0000000..f95253b Binary files /dev/null and b/upload/oslaee3VX9kJAjVezbjZKlEJDzn.jpg differ diff --git a/upload/ovR5amMCOy2oA68CZAK5JEYEA5N.jpg b/upload/ovR5amMCOy2oA68CZAK5JEYEA5N.jpg new file mode 100644 index 0000000..e2c6f5d Binary files /dev/null and b/upload/ovR5amMCOy2oA68CZAK5JEYEA5N.jpg differ diff --git a/upload/oxM6XSfIjWARK8Q17Bp7mjEa6JD.jpg b/upload/oxM6XSfIjWARK8Q17Bp7mjEa6JD.jpg new file mode 100644 index 0000000..25086ff Binary files /dev/null and b/upload/oxM6XSfIjWARK8Q17Bp7mjEa6JD.jpg differ diff --git a/upload/p2J39WwOiHo5p0oquzluzP1IlqQ.jpg b/upload/p2J39WwOiHo5p0oquzluzP1IlqQ.jpg new file mode 100644 index 0000000..00c8304 Binary files /dev/null and b/upload/p2J39WwOiHo5p0oquzluzP1IlqQ.jpg differ diff --git a/upload/p2fRZzxla6NoRbIH2KOZq0gHb5S.jpg b/upload/p2fRZzxla6NoRbIH2KOZq0gHb5S.jpg new file mode 100644 index 0000000..bca3a6b Binary files /dev/null and b/upload/p2fRZzxla6NoRbIH2KOZq0gHb5S.jpg differ diff --git a/upload/p544_109dT_pub.pub16.426_RGB_FINAL.jpg b/upload/p544_109dT_pub.pub16.426_RGB_FINAL.jpg new file mode 100644 index 0000000..8328cfe Binary files /dev/null and b/upload/p544_109dT_pub.pub16.426_RGB_FINAL.jpg differ diff --git a/upload/p7mUd9GpmCYV5qhkKGmiEerFK3i.jpg b/upload/p7mUd9GpmCYV5qhkKGmiEerFK3i.jpg new file mode 100644 index 0000000..19f5f2d Binary files /dev/null and b/upload/p7mUd9GpmCYV5qhkKGmiEerFK3i.jpg differ diff --git a/upload/p96949hcwUG2BwE6MgKmw0uYNCx.jpg b/upload/p96949hcwUG2BwE6MgKmw0uYNCx.jpg new file mode 100644 index 0000000..23ddc9e Binary files /dev/null and b/upload/p96949hcwUG2BwE6MgKmw0uYNCx.jpg differ diff --git a/upload/pCc4vSH1nBQqMrlYVhlnkudwKjF.jpg b/upload/pCc4vSH1nBQqMrlYVhlnkudwKjF.jpg new file mode 100644 index 0000000..da1c421 Binary files /dev/null and b/upload/pCc4vSH1nBQqMrlYVhlnkudwKjF.jpg differ diff --git a/upload/pGK0oaeIVxpIroNHu1wDqXf4vv5.jpg b/upload/pGK0oaeIVxpIroNHu1wDqXf4vv5.jpg new file mode 100644 index 0000000..1e5ce11 Binary files /dev/null and b/upload/pGK0oaeIVxpIroNHu1wDqXf4vv5.jpg differ diff --git a/upload/pNHv41t8Im8wlwgdzMK9I8WpuBZ.jpg b/upload/pNHv41t8Im8wlwgdzMK9I8WpuBZ.jpg new file mode 100644 index 0000000..e1bd8be Binary files /dev/null and b/upload/pNHv41t8Im8wlwgdzMK9I8WpuBZ.jpg differ diff --git a/upload/pT8b53YFrj3g8oJNqbMml6LXAc.jpg b/upload/pT8b53YFrj3g8oJNqbMml6LXAc.jpg new file mode 100644 index 0000000..397177d Binary files /dev/null and b/upload/pT8b53YFrj3g8oJNqbMml6LXAc.jpg differ diff --git a/upload/pT8b53YFrj3g8oJNqbMml6LXAc_bYM0vCO.jpg b/upload/pT8b53YFrj3g8oJNqbMml6LXAc_bYM0vCO.jpg new file mode 100644 index 0000000..2f4f553 Binary files /dev/null and b/upload/pT8b53YFrj3g8oJNqbMml6LXAc_bYM0vCO.jpg differ diff --git a/upload/pTICCu5l73Z9sAVgWbDV3dLFHGT.jpg b/upload/pTICCu5l73Z9sAVgWbDV3dLFHGT.jpg new file mode 100644 index 0000000..d995825 Binary files /dev/null and b/upload/pTICCu5l73Z9sAVgWbDV3dLFHGT.jpg differ diff --git a/upload/pTbCxgp60WztP0WJ6bAjmt8tW0n.jpg b/upload/pTbCxgp60WztP0WJ6bAjmt8tW0n.jpg new file mode 100644 index 0000000..3bcddc3 Binary files /dev/null and b/upload/pTbCxgp60WztP0WJ6bAjmt8tW0n.jpg differ diff --git a/upload/pX5Pc7KMq8LprkKLJNkTwDBoMwJ.jpg b/upload/pX5Pc7KMq8LprkKLJNkTwDBoMwJ.jpg new file mode 100644 index 0000000..d94dc9a Binary files /dev/null and b/upload/pX5Pc7KMq8LprkKLJNkTwDBoMwJ.jpg differ diff --git a/upload/pZ3gHyU5V5pffTgVFB5pgoPJuKC.jpg b/upload/pZ3gHyU5V5pffTgVFB5pgoPJuKC.jpg new file mode 100644 index 0000000..3cc40e5 Binary files /dev/null and b/upload/pZ3gHyU5V5pffTgVFB5pgoPJuKC.jpg differ diff --git a/upload/pZIiPOoNhhzVpBuVEpDK7vbBz4l.jpg b/upload/pZIiPOoNhhzVpBuVEpDK7vbBz4l.jpg new file mode 100644 index 0000000..63dafd2 Binary files /dev/null and b/upload/pZIiPOoNhhzVpBuVEpDK7vbBz4l.jpg differ diff --git a/upload/pajCpGIYuWFc1aQysCFUxivdBpb.jpg b/upload/pajCpGIYuWFc1aQysCFUxivdBpb.jpg new file mode 100644 index 0000000..0ee075b Binary files /dev/null and b/upload/pajCpGIYuWFc1aQysCFUxivdBpb.jpg differ diff --git a/upload/pajKyahlPPggk0k5LiA2v4kwWqn.jpg b/upload/pajKyahlPPggk0k5LiA2v4kwWqn.jpg new file mode 100644 index 0000000..6439a06 Binary files /dev/null and b/upload/pajKyahlPPggk0k5LiA2v4kwWqn.jpg differ diff --git a/upload/pbXgLEYh8rlG2Km5IGZPnhcnuSz.jpg b/upload/pbXgLEYh8rlG2Km5IGZPnhcnuSz.jpg new file mode 100644 index 0000000..6663e01 Binary files /dev/null and b/upload/pbXgLEYh8rlG2Km5IGZPnhcnuSz.jpg differ diff --git a/upload/pbrkL804c8yAv3zBZR4QPEafpAR.jpg b/upload/pbrkL804c8yAv3zBZR4QPEafpAR.jpg new file mode 100644 index 0000000..e934c8b Binary files /dev/null and b/upload/pbrkL804c8yAv3zBZR4QPEafpAR.jpg differ diff --git a/upload/pcRHkfhNzXrDpmaup3Z6qRj4I72_1.jpg b/upload/pcRHkfhNzXrDpmaup3Z6qRj4I72_1.jpg new file mode 100644 index 0000000..a7a2c65 Binary files /dev/null and b/upload/pcRHkfhNzXrDpmaup3Z6qRj4I72_1.jpg differ diff --git a/upload/penguin-highway-recensione-screenshot-03.jpg b/upload/penguin-highway-recensione-screenshot-03.jpg new file mode 100644 index 0000000..b467897 Binary files /dev/null and b/upload/penguin-highway-recensione-screenshot-03.jpg differ diff --git a/upload/penguin-highway-recensione-screenshot-11.jpg b/upload/penguin-highway-recensione-screenshot-11.jpg new file mode 100644 index 0000000..eb1a175 Binary files /dev/null and b/upload/penguin-highway-recensione-screenshot-11.jpg differ diff --git a/upload/pfTlwLkaB8XxDPW4gYLW5owRByq.jpg b/upload/pfTlwLkaB8XxDPW4gYLW5owRByq.jpg new file mode 100644 index 0000000..5beb75b Binary files /dev/null and b/upload/pfTlwLkaB8XxDPW4gYLW5owRByq.jpg differ diff --git a/upload/pfXMUlkUCSnuqRb47N7z9uRSa5W.jpg b/upload/pfXMUlkUCSnuqRb47N7z9uRSa5W.jpg new file mode 100644 index 0000000..a4fe213 Binary files /dev/null and b/upload/pfXMUlkUCSnuqRb47N7z9uRSa5W.jpg differ diff --git a/upload/pgu21q.jpg b/upload/pgu21q.jpg new file mode 100644 index 0000000..a5df241 Binary files /dev/null and b/upload/pgu21q.jpg differ diff --git a/upload/piA05ibo43QDpmpuRkQuA6DhyBD.jpg b/upload/piA05ibo43QDpmpuRkQuA6DhyBD.jpg new file mode 100644 index 0000000..547cd43 Binary files /dev/null and b/upload/piA05ibo43QDpmpuRkQuA6DhyBD.jpg differ diff --git a/upload/pirati-dei-caraibi-la-maledizione-del-forziere-fantasma-06.jpg b/upload/pirati-dei-caraibi-la-maledizione-del-forziere-fantasma-06.jpg new file mode 100644 index 0000000..8442789 Binary files /dev/null and b/upload/pirati-dei-caraibi-la-maledizione-del-forziere-fantasma-06.jpg differ diff --git a/upload/pirati_dei_caraibi.jpg b/upload/pirati_dei_caraibi.jpg new file mode 100644 index 0000000..29cf500 Binary files /dev/null and b/upload/pirati_dei_caraibi.jpg differ diff --git a/upload/pkxPkHOPJjOvzfQOclANEBT8OfK.jpg b/upload/pkxPkHOPJjOvzfQOclANEBT8OfK.jpg new file mode 100644 index 0000000..c7933c1 Binary files /dev/null and b/upload/pkxPkHOPJjOvzfQOclANEBT8OfK.jpg differ diff --git a/upload/pldjr95i25yJBrV1QesQNc9gmij.jpg b/upload/pldjr95i25yJBrV1QesQNc9gmij.jpg new file mode 100644 index 0000000..7be2de1 Binary files /dev/null and b/upload/pldjr95i25yJBrV1QesQNc9gmij.jpg differ diff --git a/upload/pohgiL6OFO7pyi67wH8GeIaPSU3.jpg b/upload/pohgiL6OFO7pyi67wH8GeIaPSU3.jpg new file mode 100644 index 0000000..627cca5 Binary files /dev/null and b/upload/pohgiL6OFO7pyi67wH8GeIaPSU3.jpg differ diff --git a/upload/pohgiL6OFO7pyi67wH8GeIaPSU3_2LzYT2O.jpg b/upload/pohgiL6OFO7pyi67wH8GeIaPSU3_2LzYT2O.jpg new file mode 100644 index 0000000..6ae4b61 Binary files /dev/null and b/upload/pohgiL6OFO7pyi67wH8GeIaPSU3_2LzYT2O.jpg differ diff --git a/upload/poster-film-gianni-e-pinotto-contro-l-uomo-invisibile-min.jpg b/upload/poster-film-gianni-e-pinotto-contro-l-uomo-invisibile-min.jpg new file mode 100644 index 0000000..b557281 Binary files /dev/null and b/upload/poster-film-gianni-e-pinotto-contro-l-uomo-invisibile-min.jpg differ diff --git a/upload/ppj2uRyxxhEASqSW0wCRRLls8I8.jpg b/upload/ppj2uRyxxhEASqSW0wCRRLls8I8.jpg new file mode 100644 index 0000000..fec720b Binary files /dev/null and b/upload/ppj2uRyxxhEASqSW0wCRRLls8I8.jpg differ diff --git a/upload/ppj2uRyxxhEASqSW0wCRRLls8I8_fdKWSHd.jpg b/upload/ppj2uRyxxhEASqSW0wCRRLls8I8_fdKWSHd.jpg new file mode 100644 index 0000000..c8d86ba Binary files /dev/null and b/upload/ppj2uRyxxhEASqSW0wCRRLls8I8_fdKWSHd.jpg differ diff --git a/upload/pqiBD0ZFn7eKk8U8cFKOpg3X3Xr.jpg b/upload/pqiBD0ZFn7eKk8U8cFKOpg3X3Xr.jpg new file mode 100644 index 0000000..f7e184c Binary files /dev/null and b/upload/pqiBD0ZFn7eKk8U8cFKOpg3X3Xr.jpg differ diff --git a/upload/pr6iqihMGBYvV8wFHntLp3RZuNm.jpg b/upload/pr6iqihMGBYvV8wFHntLp3RZuNm.jpg new file mode 100644 index 0000000..fdade7f Binary files /dev/null and b/upload/pr6iqihMGBYvV8wFHntLp3RZuNm.jpg differ diff --git a/upload/pubblicata-una-nuova-featurette-di-ad-astra-missione-classificata.jpg b/upload/pubblicata-una-nuova-featurette-di-ad-astra-missione-classificata.jpg new file mode 100644 index 0000000..b1ab11c Binary files /dev/null and b/upload/pubblicata-una-nuova-featurette-di-ad-astra-missione-classificata.jpg differ diff --git a/upload/pvsJQ4bstJ5k1PbWTHqEHXGMpLP.jpg b/upload/pvsJQ4bstJ5k1PbWTHqEHXGMpLP.jpg new file mode 100644 index 0000000..7e6c1f5 Binary files /dev/null and b/upload/pvsJQ4bstJ5k1PbWTHqEHXGMpLP.jpg differ diff --git a/upload/pwOVw2PEHwqypHbhBJFQe158Ljb.jpg b/upload/pwOVw2PEHwqypHbhBJFQe158Ljb.jpg new file mode 100644 index 0000000..bd4f01f Binary files /dev/null and b/upload/pwOVw2PEHwqypHbhBJFQe158Ljb.jpg differ diff --git a/upload/q1TPQtz2Eme87wfydCn6cCk8wRw.jpg b/upload/q1TPQtz2Eme87wfydCn6cCk8wRw.jpg new file mode 100644 index 0000000..a9d3e32 Binary files /dev/null and b/upload/q1TPQtz2Eme87wfydCn6cCk8wRw.jpg differ diff --git a/upload/q3OFDv9fTulRG3P4QIIzwr7z3zG.jpg b/upload/q3OFDv9fTulRG3P4QIIzwr7z3zG.jpg new file mode 100644 index 0000000..a6cf83c Binary files /dev/null and b/upload/q3OFDv9fTulRG3P4QIIzwr7z3zG.jpg differ diff --git a/upload/q5HZvtyqG8Vz39Ee9uTQbLeEml.jpg b/upload/q5HZvtyqG8Vz39Ee9uTQbLeEml.jpg new file mode 100644 index 0000000..e7035b0 Binary files /dev/null and b/upload/q5HZvtyqG8Vz39Ee9uTQbLeEml.jpg differ diff --git a/upload/q5HZvtyqG8Vz39Ee9uTQbLeEml_n8iMKlk.jpg b/upload/q5HZvtyqG8Vz39Ee9uTQbLeEml_n8iMKlk.jpg new file mode 100644 index 0000000..e83c224 Binary files /dev/null and b/upload/q5HZvtyqG8Vz39Ee9uTQbLeEml_n8iMKlk.jpg differ diff --git a/upload/q62bpQ67qaXY0u6b2wFEnQYIbPd.jpg b/upload/q62bpQ67qaXY0u6b2wFEnQYIbPd.jpg new file mode 100644 index 0000000..2892ab9 Binary files /dev/null and b/upload/q62bpQ67qaXY0u6b2wFEnQYIbPd.jpg differ diff --git a/upload/q719jXXEzOoYaps6babgKnONONX.jpg b/upload/q719jXXEzOoYaps6babgKnONONX.jpg new file mode 100644 index 0000000..f96d3fc Binary files /dev/null and b/upload/q719jXXEzOoYaps6babgKnONONX.jpg differ diff --git a/upload/q7Exwh7nOSBhHRNE4gWKCsjle9E.jpg b/upload/q7Exwh7nOSBhHRNE4gWKCsjle9E.jpg new file mode 100644 index 0000000..cfe6e94 Binary files /dev/null and b/upload/q7Exwh7nOSBhHRNE4gWKCsjle9E.jpg differ diff --git a/upload/q7fXcrDPJcf6t3rzutaNwTzuKP1.jpg b/upload/q7fXcrDPJcf6t3rzutaNwTzuKP1.jpg new file mode 100644 index 0000000..ec9d636 Binary files /dev/null and b/upload/q7fXcrDPJcf6t3rzutaNwTzuKP1.jpg differ diff --git a/upload/q8A6bigh2WqOiQVmwmkbRSadEeR.jpg b/upload/q8A6bigh2WqOiQVmwmkbRSadEeR.jpg new file mode 100644 index 0000000..411af4b Binary files /dev/null and b/upload/q8A6bigh2WqOiQVmwmkbRSadEeR.jpg differ diff --git a/upload/q8A6bigh2WqOiQVmwmkbRSadEeR_8wsvZ1A.jpg b/upload/q8A6bigh2WqOiQVmwmkbRSadEeR_8wsvZ1A.jpg new file mode 100644 index 0000000..fd601af Binary files /dev/null and b/upload/q8A6bigh2WqOiQVmwmkbRSadEeR_8wsvZ1A.jpg differ diff --git a/upload/qAM4B15ZTKom2WyUlvdpZM69wdD.jpg b/upload/qAM4B15ZTKom2WyUlvdpZM69wdD.jpg new file mode 100644 index 0000000..2952d53 Binary files /dev/null and b/upload/qAM4B15ZTKom2WyUlvdpZM69wdD.jpg differ diff --git a/upload/qARiRFzDRzRwMm7j13K5dUczqVh.jpg b/upload/qARiRFzDRzRwMm7j13K5dUczqVh.jpg new file mode 100644 index 0000000..14031dd Binary files /dev/null and b/upload/qARiRFzDRzRwMm7j13K5dUczqVh.jpg differ diff --git a/upload/qF8eaVidzEsXGMU9qp8owby4bzV.jpg b/upload/qF8eaVidzEsXGMU9qp8owby4bzV.jpg new file mode 100644 index 0000000..0f0397b Binary files /dev/null and b/upload/qF8eaVidzEsXGMU9qp8owby4bzV.jpg differ diff --git a/upload/qFjnwiykdph0blbYWmzM3dRjZqU.jpg b/upload/qFjnwiykdph0blbYWmzM3dRjZqU.jpg new file mode 100644 index 0000000..26c94ad Binary files /dev/null and b/upload/qFjnwiykdph0blbYWmzM3dRjZqU.jpg differ diff --git a/upload/qG8DVNviuk9YqYzSg73cb5120lY.jpg b/upload/qG8DVNviuk9YqYzSg73cb5120lY.jpg new file mode 100644 index 0000000..c658be4 Binary files /dev/null and b/upload/qG8DVNviuk9YqYzSg73cb5120lY.jpg differ diff --git a/upload/qGqlWb5izTPtFngBWdbJAEmninR.jpg b/upload/qGqlWb5izTPtFngBWdbJAEmninR.jpg new file mode 100644 index 0000000..b01f189 Binary files /dev/null and b/upload/qGqlWb5izTPtFngBWdbJAEmninR.jpg differ diff --git a/upload/qJjmcMUHWczybsQZOM4Y0wfVD5o.jpg b/upload/qJjmcMUHWczybsQZOM4Y0wfVD5o.jpg new file mode 100644 index 0000000..fd58453 Binary files /dev/null and b/upload/qJjmcMUHWczybsQZOM4Y0wfVD5o.jpg differ diff --git a/upload/qKP5ObQq6M7GJzDYXAxgbxQkmlv.jpg b/upload/qKP5ObQq6M7GJzDYXAxgbxQkmlv.jpg new file mode 100644 index 0000000..67fb1c3 Binary files /dev/null and b/upload/qKP5ObQq6M7GJzDYXAxgbxQkmlv.jpg differ diff --git a/upload/qL6eARmIgT1deUk6DWdagQCnDpX.jpg b/upload/qL6eARmIgT1deUk6DWdagQCnDpX.jpg new file mode 100644 index 0000000..c0bf8ea Binary files /dev/null and b/upload/qL6eARmIgT1deUk6DWdagQCnDpX.jpg differ diff --git a/upload/qLAkbBmKcgLD8Q2q86ZFHE512s.jpg b/upload/qLAkbBmKcgLD8Q2q86ZFHE512s.jpg new file mode 100644 index 0000000..9d51b29 Binary files /dev/null and b/upload/qLAkbBmKcgLD8Q2q86ZFHE512s.jpg differ diff --git a/upload/qQ5Dzbey5EgtE8ANjU2P0GWNdU9.jpg b/upload/qQ5Dzbey5EgtE8ANjU2P0GWNdU9.jpg new file mode 100644 index 0000000..26b56bc Binary files /dev/null and b/upload/qQ5Dzbey5EgtE8ANjU2P0GWNdU9.jpg differ diff --git a/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ.jpg b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ.jpg new file mode 100644 index 0000000..e50e149 Binary files /dev/null and b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ.jpg differ diff --git a/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_0Ae54as.jpg b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_0Ae54as.jpg new file mode 100644 index 0000000..c7b8616 Binary files /dev/null and b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_0Ae54as.jpg differ diff --git a/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1.jpg b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1.jpg new file mode 100644 index 0000000..e50e149 Binary files /dev/null and b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1.jpg differ diff --git a/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1_KdsLFJt.jpg b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1_KdsLFJt.jpg new file mode 100644 index 0000000..3e5b5ee Binary files /dev/null and b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1_KdsLFJt.jpg differ diff --git a/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1gtggg.jpg b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1gtggg.jpg new file mode 100644 index 0000000..a980e34 Binary files /dev/null and b/upload/qRWzRGLnbquPv4aTLUEBY3dq4gZ_1gtggg.jpg differ diff --git a/upload/qSaOo9JCDCFc1cvYiBzEooPe36U.jpg b/upload/qSaOo9JCDCFc1cvYiBzEooPe36U.jpg new file mode 100644 index 0000000..140cdb4 Binary files /dev/null and b/upload/qSaOo9JCDCFc1cvYiBzEooPe36U.jpg differ diff --git a/upload/qSrq6ACzPDv4xerGJ78iS3N827K.jpg b/upload/qSrq6ACzPDv4xerGJ78iS3N827K.jpg new file mode 100644 index 0000000..b355d76 Binary files /dev/null and b/upload/qSrq6ACzPDv4xerGJ78iS3N827K.jpg differ diff --git a/upload/qTMhVYYTYMj278126-1.jpg b/upload/qTMhVYYTYMj278126-1.jpg new file mode 100644 index 0000000..2fdc28f Binary files /dev/null and b/upload/qTMhVYYTYMj278126-1.jpg differ diff --git a/upload/qW5YRimHK1oVbCbQ4Q9CjSmZVKd.jpg b/upload/qW5YRimHK1oVbCbQ4Q9CjSmZVKd.jpg new file mode 100644 index 0000000..4c2894a Binary files /dev/null and b/upload/qW5YRimHK1oVbCbQ4Q9CjSmZVKd.jpg differ diff --git a/upload/qZ4NYuwME0j6QgJmIE6AZMgmCaj.jpg b/upload/qZ4NYuwME0j6QgJmIE6AZMgmCaj.jpg new file mode 100644 index 0000000..61a140f Binary files /dev/null and b/upload/qZ4NYuwME0j6QgJmIE6AZMgmCaj.jpg differ diff --git a/upload/qZaTgZlxa0Ot1k1HUCLle7nfqGR.jpg b/upload/qZaTgZlxa0Ot1k1HUCLle7nfqGR.jpg new file mode 100644 index 0000000..d26c3c1 Binary files /dev/null and b/upload/qZaTgZlxa0Ot1k1HUCLle7nfqGR.jpg differ diff --git a/upload/qcvme455.jpg b/upload/qcvme455.jpg new file mode 100644 index 0000000..cb85c43 Binary files /dev/null and b/upload/qcvme455.jpg differ diff --git a/upload/qcxcVWakIO8r0zxwUEzEavG7Au1.jpg b/upload/qcxcVWakIO8r0zxwUEzEavG7Au1.jpg new file mode 100644 index 0000000..437108b Binary files /dev/null and b/upload/qcxcVWakIO8r0zxwUEzEavG7Au1.jpg differ diff --git a/upload/qcz6ICew7OQEUXgAEsrGpCSj3Oa.jpg b/upload/qcz6ICew7OQEUXgAEsrGpCSj3Oa.jpg new file mode 100644 index 0000000..c58a278 Binary files /dev/null and b/upload/qcz6ICew7OQEUXgAEsrGpCSj3Oa.jpg differ diff --git a/upload/qiP8YjlSBB0ivgj8I0DYB3sABMq.jpg b/upload/qiP8YjlSBB0ivgj8I0DYB3sABMq.jpg new file mode 100644 index 0000000..643a5ba Binary files /dev/null and b/upload/qiP8YjlSBB0ivgj8I0DYB3sABMq.jpg differ diff --git a/upload/qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg b/upload/qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg new file mode 100644 index 0000000..857f4d9 Binary files /dev/null and b/upload/qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg differ diff --git a/upload/qtAKe3.jpg b/upload/qtAKe3.jpg new file mode 100644 index 0000000..30e8866 Binary files /dev/null and b/upload/qtAKe3.jpg differ diff --git a/upload/quWg9dTnqhIwxSwd0HHVXkZ1g8w.jpg b/upload/quWg9dTnqhIwxSwd0HHVXkZ1g8w.jpg new file mode 100644 index 0000000..ef18e45 Binary files /dev/null and b/upload/quWg9dTnqhIwxSwd0HHVXkZ1g8w.jpg differ diff --git a/upload/qvDHSgjm8MDwvP30mH7SOdaxLd7.jpg b/upload/qvDHSgjm8MDwvP30mH7SOdaxLd7.jpg new file mode 100644 index 0000000..a210872 Binary files /dev/null and b/upload/qvDHSgjm8MDwvP30mH7SOdaxLd7.jpg differ diff --git a/upload/qvqfg5rnz1JWmT4CaJIeAA1EKI3.jpg b/upload/qvqfg5rnz1JWmT4CaJIeAA1EKI3.jpg new file mode 100644 index 0000000..ad43bfa Binary files /dev/null and b/upload/qvqfg5rnz1JWmT4CaJIeAA1EKI3.jpg differ diff --git a/upload/qwertyuiop.jpg b/upload/qwertyuiop.jpg new file mode 100644 index 0000000..335f774 Binary files /dev/null and b/upload/qwertyuiop.jpg differ diff --git a/upload/qwertyuioplkj55.png b/upload/qwertyuioplkj55.png new file mode 100644 index 0000000..8d3ceb6 Binary files /dev/null and b/upload/qwertyuioplkj55.png differ diff --git a/upload/qwoGfcg6YUS55nUweKGujHE54Wy.jpg b/upload/qwoGfcg6YUS55nUweKGujHE54Wy.jpg new file mode 100644 index 0000000..c0bac94 Binary files /dev/null and b/upload/qwoGfcg6YUS55nUweKGujHE54Wy.jpg differ diff --git a/upload/qz0C4Dd36TdiO5BVPMhemUNQsL2.jpg b/upload/qz0C4Dd36TdiO5BVPMhemUNQsL2.jpg new file mode 100644 index 0000000..187cb72 Binary files /dev/null and b/upload/qz0C4Dd36TdiO5BVPMhemUNQsL2.jpg differ diff --git a/upload/r0Nd7mrhXLx8gQWfAU63jWCZCvW.jpg b/upload/r0Nd7mrhXLx8gQWfAU63jWCZCvW.jpg new file mode 100644 index 0000000..eaafafa Binary files /dev/null and b/upload/r0Nd7mrhXLx8gQWfAU63jWCZCvW.jpg differ diff --git a/upload/r0bzasSjS4NirLHCVJ99NBqQZPt.jpg b/upload/r0bzasSjS4NirLHCVJ99NBqQZPt.jpg new file mode 100644 index 0000000..2febe13 Binary files /dev/null and b/upload/r0bzasSjS4NirLHCVJ99NBqQZPt.jpg differ diff --git a/upload/r0kZNywAeN6Ar75rxDqLlTP5RiJ.jpg b/upload/r0kZNywAeN6Ar75rxDqLlTP5RiJ.jpg new file mode 100644 index 0000000..921a50f Binary files /dev/null and b/upload/r0kZNywAeN6Ar75rxDqLlTP5RiJ.jpg differ diff --git a/upload/r2Mx4cSPK2c3szNjScSj851w6ZY.jpg b/upload/r2Mx4cSPK2c3szNjScSj851w6ZY.jpg new file mode 100644 index 0000000..c024940 Binary files /dev/null and b/upload/r2Mx4cSPK2c3szNjScSj851w6ZY.jpg differ diff --git a/upload/r48vHoEjYnZtkfcbJBm4JZF4f1Q.jpg b/upload/r48vHoEjYnZtkfcbJBm4JZF4f1Q.jpg new file mode 100644 index 0000000..a8eb338 Binary files /dev/null and b/upload/r48vHoEjYnZtkfcbJBm4JZF4f1Q.jpg differ diff --git a/upload/r6ISuJLJ5U9MACu8lyCGmdZcHq3.jpg b/upload/r6ISuJLJ5U9MACu8lyCGmdZcHq3.jpg new file mode 100644 index 0000000..75b04f5 Binary files /dev/null and b/upload/r6ISuJLJ5U9MACu8lyCGmdZcHq3.jpg differ diff --git a/upload/r7vmZjiyZw9rpJMQJdXpjgiCOk9.jpg b/upload/r7vmZjiyZw9rpJMQJdXpjgiCOk9.jpg new file mode 100644 index 0000000..1aeb1eb Binary files /dev/null and b/upload/r7vmZjiyZw9rpJMQJdXpjgiCOk9.jpg differ diff --git a/upload/r819lbFc6LB88CUWTQ0BvJfluho.jpg b/upload/r819lbFc6LB88CUWTQ0BvJfluho.jpg new file mode 100644 index 0000000..606d061 Binary files /dev/null and b/upload/r819lbFc6LB88CUWTQ0BvJfluho.jpg differ diff --git a/upload/r88lEpA6cCxvMOiLlnEXR0MUwNr.jpg b/upload/r88lEpA6cCxvMOiLlnEXR0MUwNr.jpg new file mode 100644 index 0000000..de8c785 Binary files /dev/null and b/upload/r88lEpA6cCxvMOiLlnEXR0MUwNr.jpg differ diff --git a/upload/r88lEpA6cCxvMOiLlnEXR0MUwNr_jVQH755.jpg b/upload/r88lEpA6cCxvMOiLlnEXR0MUwNr_jVQH755.jpg new file mode 100644 index 0000000..9a24b70 Binary files /dev/null and b/upload/r88lEpA6cCxvMOiLlnEXR0MUwNr_jVQH755.jpg differ diff --git a/upload/rAQcPrEaPzDRVNX7XX5TWyxCGFN.jpg b/upload/rAQcPrEaPzDRVNX7XX5TWyxCGFN.jpg new file mode 100644 index 0000000..d941127 Binary files /dev/null and b/upload/rAQcPrEaPzDRVNX7XX5TWyxCGFN.jpg differ diff --git a/upload/rAiYTfKGqDCRIIqo664sY9XZIvQ.jpg b/upload/rAiYTfKGqDCRIIqo664sY9XZIvQ.jpg new file mode 100644 index 0000000..ed532f7 Binary files /dev/null and b/upload/rAiYTfKGqDCRIIqo664sY9XZIvQ.jpg differ diff --git a/upload/rC0yhzZTEVxeWTvtEmJ5ix8juDu.jpg b/upload/rC0yhzZTEVxeWTvtEmJ5ix8juDu.jpg new file mode 100644 index 0000000..9f867f1 Binary files /dev/null and b/upload/rC0yhzZTEVxeWTvtEmJ5ix8juDu.jpg differ diff --git a/upload/rE63PmQscbkhlvO6elxfPG2qTkk.jpg b/upload/rE63PmQscbkhlvO6elxfPG2qTkk.jpg new file mode 100644 index 0000000..fa6555d Binary files /dev/null and b/upload/rE63PmQscbkhlvO6elxfPG2qTkk.jpg differ diff --git a/upload/rHKnWWeBNMgk8c33IJYSnHuxSRT.jpg b/upload/rHKnWWeBNMgk8c33IJYSnHuxSRT.jpg new file mode 100644 index 0000000..415ede9 Binary files /dev/null and b/upload/rHKnWWeBNMgk8c33IJYSnHuxSRT.jpg differ diff --git a/upload/rIDKxxvqhin5i14Jiiepn11mYFN.jpg b/upload/rIDKxxvqhin5i14Jiiepn11mYFN.jpg new file mode 100644 index 0000000..6619d23 Binary files /dev/null and b/upload/rIDKxxvqhin5i14Jiiepn11mYFN.jpg differ diff --git a/upload/rIfKIYMbwVlnAXOOaQRsm34GW3S.jpg b/upload/rIfKIYMbwVlnAXOOaQRsm34GW3S.jpg new file mode 100644 index 0000000..e863609 Binary files /dev/null and b/upload/rIfKIYMbwVlnAXOOaQRsm34GW3S.jpg differ diff --git a/upload/rL1ITQuX0lmSNPu52pRRHUyim5N.jpg b/upload/rL1ITQuX0lmSNPu52pRRHUyim5N.jpg new file mode 100644 index 0000000..3f3d013 Binary files /dev/null and b/upload/rL1ITQuX0lmSNPu52pRRHUyim5N.jpg differ diff --git a/upload/rNwWgOyZApaZy9IUKJ4C3tSu8yD.jpg b/upload/rNwWgOyZApaZy9IUKJ4C3tSu8yD.jpg new file mode 100644 index 0000000..7fa8337 Binary files /dev/null and b/upload/rNwWgOyZApaZy9IUKJ4C3tSu8yD.jpg differ diff --git a/upload/rOj2fzQAMABoLKxF9Sh77otawjW.jpg b/upload/rOj2fzQAMABoLKxF9Sh77otawjW.jpg new file mode 100644 index 0000000..40c8042 Binary files /dev/null and b/upload/rOj2fzQAMABoLKxF9Sh77otawjW.jpg differ diff --git a/upload/rSgsoC3HVtpWcNYYHhfQYUjYTOh.jpg b/upload/rSgsoC3HVtpWcNYYHhfQYUjYTOh.jpg new file mode 100644 index 0000000..3cb6f3d Binary files /dev/null and b/upload/rSgsoC3HVtpWcNYYHhfQYUjYTOh.jpg differ diff --git a/upload/rTPtXGY7mpt47VMw3G6J3hBkNm.jpg b/upload/rTPtXGY7mpt47VMw3G6J3hBkNm.jpg new file mode 100644 index 0000000..72f56b6 Binary files /dev/null and b/upload/rTPtXGY7mpt47VMw3G6J3hBkNm.jpg differ diff --git a/upload/rUhqas6tCMuDEYlCPXGDLyTO4yH.jpg b/upload/rUhqas6tCMuDEYlCPXGDLyTO4yH.jpg new file mode 100644 index 0000000..e0a08b2 Binary files /dev/null and b/upload/rUhqas6tCMuDEYlCPXGDLyTO4yH.jpg differ diff --git a/upload/rV5AsUB36oaIMBGk18uWrFTP64R.jpg b/upload/rV5AsUB36oaIMBGk18uWrFTP64R.jpg new file mode 100644 index 0000000..a76a94d Binary files /dev/null and b/upload/rV5AsUB36oaIMBGk18uWrFTP64R.jpg differ diff --git a/upload/rY1jvGx3KckUfqOcPtuApuxxRvi.jpg b/upload/rY1jvGx3KckUfqOcPtuApuxxRvi.jpg new file mode 100644 index 0000000..f5ef572 Binary files /dev/null and b/upload/rY1jvGx3KckUfqOcPtuApuxxRvi.jpg differ diff --git a/upload/rZDybxfShqTJHqi8phtQUBefWEC.jpg b/upload/rZDybxfShqTJHqi8phtQUBefWEC.jpg new file mode 100644 index 0000000..49be1ed Binary files /dev/null and b/upload/rZDybxfShqTJHqi8phtQUBefWEC.jpg differ diff --git a/upload/rZkMtwU1Gx2tyXcmsuFLVoDNwea.jpg b/upload/rZkMtwU1Gx2tyXcmsuFLVoDNwea.jpg new file mode 100644 index 0000000..4c22084 Binary files /dev/null and b/upload/rZkMtwU1Gx2tyXcmsuFLVoDNwea.jpg differ diff --git a/upload/rZwX7AP.png b/upload/rZwX7AP.png new file mode 100644 index 0000000..f3d43a7 Binary files /dev/null and b/upload/rZwX7AP.png differ diff --git a/upload/ratchett-e-poirot.jpg b/upload/ratchett-e-poirot.jpg new file mode 100644 index 0000000..c08dfac Binary files /dev/null and b/upload/ratchett-e-poirot.jpg differ diff --git a/upload/rbCkNWIpfi1t9SIiSau5UgHtwHf.jpg b/upload/rbCkNWIpfi1t9SIiSau5UgHtwHf.jpg new file mode 100644 index 0000000..5da82db Binary files /dev/null and b/upload/rbCkNWIpfi1t9SIiSau5UgHtwHf.jpg differ diff --git a/upload/rcMAgeZFdO0MRPxUsMKiBakq4yE.jpg b/upload/rcMAgeZFdO0MRPxUsMKiBakq4yE.jpg new file mode 100644 index 0000000..53bb227 Binary files /dev/null and b/upload/rcMAgeZFdO0MRPxUsMKiBakq4yE.jpg differ diff --git a/upload/rcauELss6KdBVdFeD26K73URH0Q.jpg b/upload/rcauELss6KdBVdFeD26K73URH0Q.jpg new file mode 100644 index 0000000..765d9ea Binary files /dev/null and b/upload/rcauELss6KdBVdFeD26K73URH0Q.jpg differ diff --git a/upload/rev_1_LG2_FP_0097r_High_Res_JPEG.0.jpeg b/upload/rev_1_LG2_FP_0097r_High_Res_JPEG.0.jpeg new file mode 100644 index 0000000..7c8a773 Binary files /dev/null and b/upload/rev_1_LG2_FP_0097r_High_Res_JPEG.0.jpeg differ diff --git a/upload/rf4KVKAjV8z6JtSiwaadvpBzS6H.jpg b/upload/rf4KVKAjV8z6JtSiwaadvpBzS6H.jpg new file mode 100644 index 0000000..0d6db9e Binary files /dev/null and b/upload/rf4KVKAjV8z6JtSiwaadvpBzS6H.jpg differ diff --git a/upload/risultati-sottotono-the-lego-movie-2-box-office-statunitense-v3-363850.jpg b/upload/risultati-sottotono-the-lego-movie-2-box-office-statunitense-v3-363850.jpg new file mode 100644 index 0000000..5c7d2c0 Binary files /dev/null and b/upload/risultati-sottotono-the-lego-movie-2-box-office-statunitense-v3-363850.jpg differ diff --git a/upload/rm2oMykm5nX6SzXFr7TGHkO6r8Z.jpg b/upload/rm2oMykm5nX6SzXFr7TGHkO6r8Z.jpg new file mode 100644 index 0000000..dd875bc Binary files /dev/null and b/upload/rm2oMykm5nX6SzXFr7TGHkO6r8Z.jpg differ diff --git a/upload/rm3MznpUPwU5P4dMhSJxvLh3DGx.jpg b/upload/rm3MznpUPwU5P4dMhSJxvLh3DGx.jpg new file mode 100644 index 0000000..04cd940 Binary files /dev/null and b/upload/rm3MznpUPwU5P4dMhSJxvLh3DGx.jpg differ diff --git a/upload/rmfSNIoNVPJGzFWavmQP0gnv8pH.jpg b/upload/rmfSNIoNVPJGzFWavmQP0gnv8pH.jpg new file mode 100644 index 0000000..7f9fbc7 Binary files /dev/null and b/upload/rmfSNIoNVPJGzFWavmQP0gnv8pH.jpg differ diff --git a/upload/robert-downey.jpg b/upload/robert-downey.jpg new file mode 100644 index 0000000..cd9eedd Binary files /dev/null and b/upload/robert-downey.jpg differ diff --git a/upload/rocketman_2019_-_official_teaser_trailer_-_paramount_pictures-screen_shot-h_2018_0-compressed.jpg b/upload/rocketman_2019_-_official_teaser_trailer_-_paramount_pictures-screen_shot-h_2018_0-compressed.jpg new file mode 100644 index 0000000..0c50fc7 Binary files /dev/null and b/upload/rocketman_2019_-_official_teaser_trailer_-_paramount_pictures-screen_shot-h_2018_0-compressed.jpg differ diff --git a/upload/rocketmanthumb-1558120502154.jpg b/upload/rocketmanthumb-1558120502154.jpg new file mode 100644 index 0000000..2f3f24b Binary files /dev/null and b/upload/rocketmanthumb-1558120502154.jpg differ diff --git a/upload/rri6Dzr7EW7HV50TiwMiFeJYPVc.jpg b/upload/rri6Dzr7EW7HV50TiwMiFeJYPVc.jpg new file mode 100644 index 0000000..de13a71 Binary files /dev/null and b/upload/rri6Dzr7EW7HV50TiwMiFeJYPVc.jpg differ diff --git a/upload/rrrr55.jpg b/upload/rrrr55.jpg new file mode 100644 index 0000000..b2f435a Binary files /dev/null and b/upload/rrrr55.jpg differ diff --git a/upload/rtgwee.jpg b/upload/rtgwee.jpg new file mode 100644 index 0000000..5e0361d Binary files /dev/null and b/upload/rtgwee.jpg differ diff --git a/upload/rxYG6Sj95as9rv9wKIHUx6ATWd3.jpg b/upload/rxYG6Sj95as9rv9wKIHUx6ATWd3.jpg new file mode 100644 index 0000000..9562c07 Binary files /dev/null and b/upload/rxYG6Sj95as9rv9wKIHUx6ATWd3.jpg differ diff --git a/upload/rzarJlud0adWKeyiOEyX9s5FMfu.jpg b/upload/rzarJlud0adWKeyiOEyX9s5FMfu.jpg new file mode 100644 index 0000000..661a0ee Binary files /dev/null and b/upload/rzarJlud0adWKeyiOEyX9s5FMfu.jpg differ diff --git a/upload/s0VvQK33w3OoGjAq1T5q4K7rV4o.jpg b/upload/s0VvQK33w3OoGjAq1T5q4K7rV4o.jpg new file mode 100644 index 0000000..282f301 Binary files /dev/null and b/upload/s0VvQK33w3OoGjAq1T5q4K7rV4o.jpg differ diff --git a/upload/s0eCwifVwbVynLlVifsGdF6E2lV.jpg b/upload/s0eCwifVwbVynLlVifsGdF6E2lV.jpg new file mode 100644 index 0000000..fad7136 Binary files /dev/null and b/upload/s0eCwifVwbVynLlVifsGdF6E2lV.jpg differ diff --git a/upload/s26XlaaJ7fWWjsMweowgyvtN4cW.jpg b/upload/s26XlaaJ7fWWjsMweowgyvtN4cW.jpg new file mode 100644 index 0000000..2cfcdbb Binary files /dev/null and b/upload/s26XlaaJ7fWWjsMweowgyvtN4cW.jpg differ diff --git a/upload/s2i74aEODBPUWO9xY4ZpUAzP6ug.jpg b/upload/s2i74aEODBPUWO9xY4ZpUAzP6ug.jpg new file mode 100644 index 0000000..2a63acd Binary files /dev/null and b/upload/s2i74aEODBPUWO9xY4ZpUAzP6ug.jpg differ diff --git a/upload/s2i74aEODBPUWO9xY4ZpUAzP6ug_xUWdqxk.jpg b/upload/s2i74aEODBPUWO9xY4ZpUAzP6ug_xUWdqxk.jpg new file mode 100644 index 0000000..a5bdda7 Binary files /dev/null and b/upload/s2i74aEODBPUWO9xY4ZpUAzP6ug_xUWdqxk.jpg differ diff --git a/upload/s3TBrRGB1iav7gFOCNx3H31MoES.jpg b/upload/s3TBrRGB1iav7gFOCNx3H31MoES.jpg new file mode 100644 index 0000000..257f503 Binary files /dev/null and b/upload/s3TBrRGB1iav7gFOCNx3H31MoES.jpg differ diff --git a/upload/s4h14lyJst4TnSJLuiuloMZVN6Z.jpg b/upload/s4h14lyJst4TnSJLuiuloMZVN6Z.jpg new file mode 100644 index 0000000..d03f307 Binary files /dev/null and b/upload/s4h14lyJst4TnSJLuiuloMZVN6Z.jpg differ diff --git a/upload/s54oLuWm5lCpMy8efeIytEfGU5v.jpg b/upload/s54oLuWm5lCpMy8efeIytEfGU5v.jpg new file mode 100644 index 0000000..65f8dc0 Binary files /dev/null and b/upload/s54oLuWm5lCpMy8efeIytEfGU5v.jpg differ diff --git a/upload/s8x0aYqS6Q7ENbQlsytkZ5BqdM.jpg b/upload/s8x0aYqS6Q7ENbQlsytkZ5BqdM.jpg new file mode 100644 index 0000000..678fcbb Binary files /dev/null and b/upload/s8x0aYqS6Q7ENbQlsytkZ5BqdM.jpg differ diff --git a/upload/sAoUJAJtPqBLUcNNQHaVOjJ62oD.jpg b/upload/sAoUJAJtPqBLUcNNQHaVOjJ62oD.jpg new file mode 100644 index 0000000..ef6544a Binary files /dev/null and b/upload/sAoUJAJtPqBLUcNNQHaVOjJ62oD.jpg differ diff --git a/upload/sAtoMqDVhNDQBc3QJL3RF6hlhGq.jpg b/upload/sAtoMqDVhNDQBc3QJL3RF6hlhGq.jpg new file mode 100644 index 0000000..2690f9e Binary files /dev/null and b/upload/sAtoMqDVhNDQBc3QJL3RF6hlhGq.jpg differ diff --git a/upload/sBI7BFaKbw81Ca09gjXr6CEAHuS.jpg b/upload/sBI7BFaKbw81Ca09gjXr6CEAHuS.jpg new file mode 100644 index 0000000..14dd3d1 Binary files /dev/null and b/upload/sBI7BFaKbw81Ca09gjXr6CEAHuS.jpg differ diff --git a/upload/sByiRwT8dNNKoGEh4FVyt1Dn1z2.jpg b/upload/sByiRwT8dNNKoGEh4FVyt1Dn1z2.jpg new file mode 100644 index 0000000..e361dd5 Binary files /dev/null and b/upload/sByiRwT8dNNKoGEh4FVyt1Dn1z2.jpg differ diff --git a/upload/sDxCd4nt3eR4qOCW1GoD0RabQtq.jpg b/upload/sDxCd4nt3eR4qOCW1GoD0RabQtq.jpg new file mode 100644 index 0000000..fd305bd Binary files /dev/null and b/upload/sDxCd4nt3eR4qOCW1GoD0RabQtq.jpg differ diff --git a/upload/sEtJdBigDUil02vV9lqwMe3lPVJ.jpg b/upload/sEtJdBigDUil02vV9lqwMe3lPVJ.jpg new file mode 100644 index 0000000..6e6dec5 Binary files /dev/null and b/upload/sEtJdBigDUil02vV9lqwMe3lPVJ.jpg differ diff --git a/upload/sJYZO3JxgPQfVXC5ut3lI29lCiP.jpg b/upload/sJYZO3JxgPQfVXC5ut3lI29lCiP.jpg new file mode 100644 index 0000000..07133d1 Binary files /dev/null and b/upload/sJYZO3JxgPQfVXC5ut3lI29lCiP.jpg differ diff --git a/upload/sJjo7rcwgwtu3gdTAshsgWdAfvq.jpg b/upload/sJjo7rcwgwtu3gdTAshsgWdAfvq.jpg new file mode 100644 index 0000000..196f96c Binary files /dev/null and b/upload/sJjo7rcwgwtu3gdTAshsgWdAfvq.jpg differ diff --git a/upload/sJmWJ4x.png b/upload/sJmWJ4x.png new file mode 100644 index 0000000..b767f4e Binary files /dev/null and b/upload/sJmWJ4x.png differ diff --git a/upload/sL0vdRNTaKcaXDUIacw1ykvehoL.jpg b/upload/sL0vdRNTaKcaXDUIacw1ykvehoL.jpg new file mode 100644 index 0000000..567fa15 Binary files /dev/null and b/upload/sL0vdRNTaKcaXDUIacw1ykvehoL.jpg differ diff --git a/upload/sLS35KSGzy5lVctnDXB356bSgVZ.jpg b/upload/sLS35KSGzy5lVctnDXB356bSgVZ.jpg new file mode 100644 index 0000000..011ad8c Binary files /dev/null and b/upload/sLS35KSGzy5lVctnDXB356bSgVZ.jpg differ diff --git a/upload/sM33SANp9z6rXW8Itn7NnG1GOEs.jpg b/upload/sM33SANp9z6rXW8Itn7NnG1GOEs.jpg new file mode 100644 index 0000000..df6deb4 Binary files /dev/null and b/upload/sM33SANp9z6rXW8Itn7NnG1GOEs.jpg differ diff --git a/upload/sNsoilKGOOpaxHytPaKg6iidcW6.jpg b/upload/sNsoilKGOOpaxHytPaKg6iidcW6.jpg new file mode 100644 index 0000000..c4a2b45 Binary files /dev/null and b/upload/sNsoilKGOOpaxHytPaKg6iidcW6.jpg differ diff --git a/upload/sRITPlHYjHiOLQXr0sFxVz5TPmj.jpg b/upload/sRITPlHYjHiOLQXr0sFxVz5TPmj.jpg new file mode 100644 index 0000000..faeb521 Binary files /dev/null and b/upload/sRITPlHYjHiOLQXr0sFxVz5TPmj.jpg differ diff --git a/upload/sReyRwTp0V3JSrDm69rJevpFPir.jpg b/upload/sReyRwTp0V3JSrDm69rJevpFPir.jpg new file mode 100644 index 0000000..790c56a Binary files /dev/null and b/upload/sReyRwTp0V3JSrDm69rJevpFPir.jpg differ diff --git a/upload/sS2V2AUpNygTV8aP2ux4ZDsx6PU.jpg b/upload/sS2V2AUpNygTV8aP2ux4ZDsx6PU.jpg new file mode 100644 index 0000000..1dca6de Binary files /dev/null and b/upload/sS2V2AUpNygTV8aP2ux4ZDsx6PU.jpg differ diff --git a/upload/sTnMjM12RKFqBXqnQS1DM3KYiK7.jpg b/upload/sTnMjM12RKFqBXqnQS1DM3KYiK7.jpg new file mode 100644 index 0000000..6bfd2c7 Binary files /dev/null and b/upload/sTnMjM12RKFqBXqnQS1DM3KYiK7.jpg differ diff --git a/upload/sUiDBNJk75GyB9pQkqn8vwOyHRs.jpg b/upload/sUiDBNJk75GyB9pQkqn8vwOyHRs.jpg new file mode 100644 index 0000000..0e88d89 Binary files /dev/null and b/upload/sUiDBNJk75GyB9pQkqn8vwOyHRs.jpg differ diff --git a/upload/sZQuTJuu4RiV1zjBNMt5rwGpV6B.jpg b/upload/sZQuTJuu4RiV1zjBNMt5rwGpV6B.jpg new file mode 100644 index 0000000..4118d7d Binary files /dev/null and b/upload/sZQuTJuu4RiV1zjBNMt5rwGpV6B.jpg differ diff --git a/upload/sZeQ97ih4wC2ndNGTl0KhEXJ5um.jpg b/upload/sZeQ97ih4wC2ndNGTl0KhEXJ5um.jpg new file mode 100644 index 0000000..743ec5e Binary files /dev/null and b/upload/sZeQ97ih4wC2ndNGTl0KhEXJ5um.jpg differ diff --git a/upload/sbRXCEsh35hIiHhc2XQRDZ7hLzH.jpg b/upload/sbRXCEsh35hIiHhc2XQRDZ7hLzH.jpg new file mode 100644 index 0000000..4da9d31 Binary files /dev/null and b/upload/sbRXCEsh35hIiHhc2XQRDZ7hLzH.jpg differ diff --git a/upload/sbSEzrkW9ej8VvOtSVCvimt24CE.jpg b/upload/sbSEzrkW9ej8VvOtSVCvimt24CE.jpg new file mode 100644 index 0000000..f6c388e Binary files /dev/null and b/upload/sbSEzrkW9ej8VvOtSVCvimt24CE.jpg differ diff --git a/upload/schermata_2019-02-16_alle_17.08.08.png b/upload/schermata_2019-02-16_alle_17.08.08.png new file mode 100644 index 0000000..0d73d22 Binary files /dev/null and b/upload/schermata_2019-02-16_alle_17.08.08.png differ diff --git a/upload/screen01.jpg b/upload/screen01.jpg new file mode 100644 index 0000000..2e20ea0 Binary files /dev/null and b/upload/screen01.jpg differ diff --git a/upload/screen02.jpg b/upload/screen02.jpg new file mode 100644 index 0000000..9577364 Binary files /dev/null and b/upload/screen02.jpg differ diff --git a/upload/sdhnKcOb195jOm8vYRIe5QuVigc.jpg b/upload/sdhnKcOb195jOm8vYRIe5QuVigc.jpg new file mode 100644 index 0000000..31bfcf3 Binary files /dev/null and b/upload/sdhnKcOb195jOm8vYRIe5QuVigc.jpg differ diff --git a/upload/sg1wyHbC2cyVolB84AgiYpWg8bp.jpg b/upload/sg1wyHbC2cyVolB84AgiYpWg8bp.jpg new file mode 100644 index 0000000..6a55d2a Binary files /dev/null and b/upload/sg1wyHbC2cyVolB84AgiYpWg8bp.jpg differ diff --git a/upload/sglE0cGscUO8qOzSPUWlBGfteuKFWJJTRpiFxI.jpg b/upload/sglE0cGscUO8qOzSPUWlBGfteuKFWJJTRpiFxI.jpg new file mode 100644 index 0000000..17c11b9 Binary files /dev/null and b/upload/sglE0cGscUO8qOzSPUWlBGfteuKFWJJTRpiFxI.jpg differ diff --git a/upload/shGL2I5kHezQI2z6Zuan4PAQn5k.jpg b/upload/shGL2I5kHezQI2z6Zuan4PAQn5k.jpg new file mode 100644 index 0000000..ccbf9fa Binary files /dev/null and b/upload/shGL2I5kHezQI2z6Zuan4PAQn5k.jpg differ diff --git a/upload/shs.jpg b/upload/shs.jpg new file mode 100644 index 0000000..9f17db0 Binary files /dev/null and b/upload/shs.jpg differ diff --git a/upload/si1ZyELNHdPUZw4pXR5KjMIIsBF.jpg b/upload/si1ZyELNHdPUZw4pXR5KjMIIsBF.jpg new file mode 100644 index 0000000..566766d Binary files /dev/null and b/upload/si1ZyELNHdPUZw4pXR5KjMIIsBF.jpg differ diff --git a/upload/sixxrrLOOn7uoSYvkhoVPTv8Ohj.jpg b/upload/sixxrrLOOn7uoSYvkhoVPTv8Ohj.jpg new file mode 100644 index 0000000..a55e0e3 Binary files /dev/null and b/upload/sixxrrLOOn7uoSYvkhoVPTv8Ohj.jpg differ diff --git a/upload/sk035vhA13qPxGyyAlB19w0rcts.jpg b/upload/sk035vhA13qPxGyyAlB19w0rcts.jpg new file mode 100644 index 0000000..f55b539 Binary files /dev/null and b/upload/sk035vhA13qPxGyyAlB19w0rcts.jpg differ diff --git a/upload/snapshot-1590665209.jpeg b/upload/snapshot-1590665209.jpeg new file mode 100644 index 0000000..2bdbca7 Binary files /dev/null and b/upload/snapshot-1590665209.jpeg differ diff --git a/upload/snmfymyvgeWDoV8xUClnKEiymmB.jpg b/upload/snmfymyvgeWDoV8xUClnKEiymmB.jpg new file mode 100644 index 0000000..910c2a2 Binary files /dev/null and b/upload/snmfymyvgeWDoV8xUClnKEiymmB.jpg differ diff --git a/upload/soJdiy91Mcyj29GzEgZ5svFcuZg.jpg b/upload/soJdiy91Mcyj29GzEgZ5svFcuZg.jpg new file mode 100644 index 0000000..a467a7f Binary files /dev/null and b/upload/soJdiy91Mcyj29GzEgZ5svFcuZg.jpg differ diff --git a/upload/soUDbUT8vzfFxhYPd7I9HW2SSox.jpg b/upload/soUDbUT8vzfFxhYPd7I9HW2SSox.jpg new file mode 100644 index 0000000..eb7d390 Binary files /dev/null and b/upload/soUDbUT8vzfFxhYPd7I9HW2SSox.jpg differ diff --git a/upload/spgTaDZLndENfY9s12lC5U6WfCg.jpg b/upload/spgTaDZLndENfY9s12lC5U6WfCg.jpg new file mode 100644 index 0000000..800e279 Binary files /dev/null and b/upload/spgTaDZLndENfY9s12lC5U6WfCg.jpg differ diff --git a/upload/srUFbOIURwXCWejMHasXyhMb3xO.jpg b/upload/srUFbOIURwXCWejMHasXyhMb3xO.jpg new file mode 100644 index 0000000..8331240 Binary files /dev/null and b/upload/srUFbOIURwXCWejMHasXyhMb3xO.jpg differ diff --git a/upload/ssAUVH9RvOX1cvgfhQ9EJyctnNO.jpg b/upload/ssAUVH9RvOX1cvgfhQ9EJyctnNO.jpg new file mode 100644 index 0000000..85cc5eb Binary files /dev/null and b/upload/ssAUVH9RvOX1cvgfhQ9EJyctnNO.jpg differ diff --git a/upload/ssAmTJia73UR2tHeTJDXgCH6FG1.jpg b/upload/ssAmTJia73UR2tHeTJDXgCH6FG1.jpg new file mode 100644 index 0000000..ddbb7d8 Binary files /dev/null and b/upload/ssAmTJia73UR2tHeTJDXgCH6FG1.jpg differ diff --git a/upload/ssKTgmA1S7GLiPe83tVoitk7Nqd.jpg b/upload/ssKTgmA1S7GLiPe83tVoitk7Nqd.jpg new file mode 100644 index 0000000..c40a7f2 Binary files /dev/null and b/upload/ssKTgmA1S7GLiPe83tVoitk7Nqd.jpg differ diff --git a/upload/ssssf.jpg b/upload/ssssf.jpg new file mode 100644 index 0000000..2319cfe Binary files /dev/null and b/upload/ssssf.jpg differ diff --git a/upload/ssssssswww.jpg.png b/upload/ssssssswww.jpg.png new file mode 100644 index 0000000..372698b Binary files /dev/null and b/upload/ssssssswww.jpg.png differ diff --git a/upload/stM3jlD4nSJhlvR2DE7XnB0eN25.jpg b/upload/stM3jlD4nSJhlvR2DE7XnB0eN25.jpg new file mode 100644 index 0000000..9693668 Binary files /dev/null and b/upload/stM3jlD4nSJhlvR2DE7XnB0eN25.jpg differ diff --git a/upload/star-wars-lascesa-di-skywalker.jpg b/upload/star-wars-lascesa-di-skywalker.jpg new file mode 100644 index 0000000..7e90e7b Binary files /dev/null and b/upload/star-wars-lascesa-di-skywalker.jpg differ diff --git a/upload/star-wars-lascesa-di-skywalker_zibi5Z7.jpg b/upload/star-wars-lascesa-di-skywalker_zibi5Z7.jpg new file mode 100644 index 0000000..7e90e7b Binary files /dev/null and b/upload/star-wars-lascesa-di-skywalker_zibi5Z7.jpg differ diff --git a/upload/stasera-in-tv-9.png b/upload/stasera-in-tv-9.png new file mode 100644 index 0000000..641b5fd Binary files /dev/null and b/upload/stasera-in-tv-9.png differ diff --git a/upload/stasera-in-tv_notizia-5-4-3-2.jpg b/upload/stasera-in-tv_notizia-5-4-3-2.jpg new file mode 100644 index 0000000..a03fe94 Binary files /dev/null and b/upload/stasera-in-tv_notizia-5-4-3-2.jpg differ diff --git a/upload/steam-boy.jpg b/upload/steam-boy.jpg new file mode 100644 index 0000000..a044fa2 Binary files /dev/null and b/upload/steam-boy.jpg differ diff --git a/upload/sully-mike-randall-boggs.jpg b/upload/sully-mike-randall-boggs.jpg new file mode 100644 index 0000000..158e3d4 Binary files /dev/null and b/upload/sully-mike-randall-boggs.jpg differ diff --git a/upload/svelata-una-clip-italiana-di-ad-astra-missione-classificata.jpg b/upload/svelata-una-clip-italiana-di-ad-astra-missione-classificata.jpg new file mode 100644 index 0000000..b22bd95 Binary files /dev/null and b/upload/svelata-una-clip-italiana-di-ad-astra-missione-classificata.jpg differ diff --git a/upload/svelata-una-nuova-featurette-italiana-di-ad-astra-missione-classificata.jpg b/upload/svelata-una-nuova-featurette-italiana-di-ad-astra-missione-classificata.jpg new file mode 100644 index 0000000..a94aeb0 Binary files /dev/null and b/upload/svelata-una-nuova-featurette-italiana-di-ad-astra-missione-classificata.jpg differ diff --git a/upload/sw8j80xTZyECTwfIkypVQyXRxWU.jpg b/upload/sw8j80xTZyECTwfIkypVQyXRxWU.jpg new file mode 100644 index 0000000..bc08756 Binary files /dev/null and b/upload/sw8j80xTZyECTwfIkypVQyXRxWU.jpg differ diff --git a/upload/sxzCbkuOmNKBAzpCK4KwmaiLsph.jpg b/upload/sxzCbkuOmNKBAzpCK4KwmaiLsph.jpg new file mode 100644 index 0000000..5455365 Binary files /dev/null and b/upload/sxzCbkuOmNKBAzpCK4KwmaiLsph.jpg differ diff --git a/upload/t5J7blpXCZqw9qw4ZWUHniyvl1w.jpg b/upload/t5J7blpXCZqw9qw4ZWUHniyvl1w.jpg new file mode 100644 index 0000000..f77bcf6 Binary files /dev/null and b/upload/t5J7blpXCZqw9qw4ZWUHniyvl1w.jpg differ diff --git a/upload/t5eZJvzRwBHeBzgaF1K80LQhGb9.jpg b/upload/t5eZJvzRwBHeBzgaF1K80LQhGb9.jpg new file mode 100644 index 0000000..0ba1d21 Binary files /dev/null and b/upload/t5eZJvzRwBHeBzgaF1K80LQhGb9.jpg differ diff --git a/upload/t99yoXMRlGlaFslMYTP2bXlQDqb.jpg b/upload/t99yoXMRlGlaFslMYTP2bXlQDqb.jpg new file mode 100644 index 0000000..8f6f977 Binary files /dev/null and b/upload/t99yoXMRlGlaFslMYTP2bXlQDqb.jpg differ diff --git a/upload/t9Hc1efMoWHUbDTvgwETJbvAFwb.jpg b/upload/t9Hc1efMoWHUbDTvgwETJbvAFwb.jpg new file mode 100644 index 0000000..bd1336b Binary files /dev/null and b/upload/t9Hc1efMoWHUbDTvgwETJbvAFwb.jpg differ diff --git a/upload/t9dumNakkt6yL9wreEp35T4Lwny.jpg b/upload/t9dumNakkt6yL9wreEp35T4Lwny.jpg new file mode 100644 index 0000000..2a14e63 Binary files /dev/null and b/upload/t9dumNakkt6yL9wreEp35T4Lwny.jpg differ diff --git a/upload/tCQ7bAoKeJysRXZCGLdawk5Oosp.jpg b/upload/tCQ7bAoKeJysRXZCGLdawk5Oosp.jpg new file mode 100644 index 0000000..60a9370 Binary files /dev/null and b/upload/tCQ7bAoKeJysRXZCGLdawk5Oosp.jpg differ diff --git a/upload/tCy7Fi5gaSD295759-7.jpg b/upload/tCy7Fi5gaSD295759-7.jpg new file mode 100644 index 0000000..997cc20 Binary files /dev/null and b/upload/tCy7Fi5gaSD295759-7.jpg differ diff --git a/upload/tDoOnGlfCDn6etsWMEzrg40lM4b.jpg b/upload/tDoOnGlfCDn6etsWMEzrg40lM4b.jpg new file mode 100644 index 0000000..1702073 Binary files /dev/null and b/upload/tDoOnGlfCDn6etsWMEzrg40lM4b.jpg differ diff --git a/upload/tEIPATQFiqm92M10jhASG9WqYW7.jpg b/upload/tEIPATQFiqm92M10jhASG9WqYW7.jpg new file mode 100644 index 0000000..943c0b0 Binary files /dev/null and b/upload/tEIPATQFiqm92M10jhASG9WqYW7.jpg differ diff --git a/upload/tIIKbcG7u4YvGyZSBA93T8ufSyT.jpg b/upload/tIIKbcG7u4YvGyZSBA93T8ufSyT.jpg new file mode 100644 index 0000000..8c9834e Binary files /dev/null and b/upload/tIIKbcG7u4YvGyZSBA93T8ufSyT.jpg differ diff --git a/upload/tIKFBxBZhSXpIITiiB5Ws8VGXjt.jpg b/upload/tIKFBxBZhSXpIITiiB5Ws8VGXjt.jpg new file mode 100644 index 0000000..6783e0a Binary files /dev/null and b/upload/tIKFBxBZhSXpIITiiB5Ws8VGXjt.jpg differ diff --git a/upload/tL51IOpfe2iJIn179U0bgSz2gQw.jpg b/upload/tL51IOpfe2iJIn179U0bgSz2gQw.jpg new file mode 100644 index 0000000..b3913ac Binary files /dev/null and b/upload/tL51IOpfe2iJIn179U0bgSz2gQw.jpg differ diff --git a/upload/tQUdoHUxNA6CGFj30NC38PDrEkY.jpg b/upload/tQUdoHUxNA6CGFj30NC38PDrEkY.jpg new file mode 100644 index 0000000..3889d2d Binary files /dev/null and b/upload/tQUdoHUxNA6CGFj30NC38PDrEkY.jpg differ diff --git a/upload/tYPZPlRDW6J4l0K4ws7vFM5lHwl.jpg b/upload/tYPZPlRDW6J4l0K4ws7vFM5lHwl.jpg new file mode 100644 index 0000000..676814f Binary files /dev/null and b/upload/tYPZPlRDW6J4l0K4ws7vFM5lHwl.jpg differ diff --git a/upload/t__kuyxyk.jpg b/upload/t__kuyxyk.jpg new file mode 100644 index 0000000..59a1a03 Binary files /dev/null and b/upload/t__kuyxyk.jpg differ diff --git a/upload/ta7D0xKKfuzpHSipIMbTGmxVzgs.jpg b/upload/ta7D0xKKfuzpHSipIMbTGmxVzgs.jpg new file mode 100644 index 0000000..5aa5797 Binary files /dev/null and b/upload/ta7D0xKKfuzpHSipIMbTGmxVzgs.jpg differ diff --git a/upload/taglioAlta_0011062.jpg b/upload/taglioAlta_0011062.jpg new file mode 100644 index 0000000..ec9ee9c Binary files /dev/null and b/upload/taglioAlta_0011062.jpg differ diff --git a/upload/tbaqzcRM8X1iPjtYlk7S7GpGZwr.jpg b/upload/tbaqzcRM8X1iPjtYlk7S7GpGZwr.jpg new file mode 100644 index 0000000..6b3eeda Binary files /dev/null and b/upload/tbaqzcRM8X1iPjtYlk7S7GpGZwr.jpg differ diff --git a/upload/tcheoA2nPATCm2vvXw2hVQoaEFD.jpg b/upload/tcheoA2nPATCm2vvXw2hVQoaEFD.jpg new file mode 100644 index 0000000..653a3c9 Binary files /dev/null and b/upload/tcheoA2nPATCm2vvXw2hVQoaEFD.jpg differ diff --git a/upload/tdCKtCSGZktsw8j80xTZyECTwfIkypVQyXRxWU.jpg b/upload/tdCKtCSGZktsw8j80xTZyECTwfIkypVQyXRxWU.jpg new file mode 100644 index 0000000..bc08756 Binary files /dev/null and b/upload/tdCKtCSGZktsw8j80xTZyECTwfIkypVQyXRxWU.jpg differ diff --git a/upload/tgPFZxhDuxWd4VXYaz8eAUznGTF.jpg b/upload/tgPFZxhDuxWd4VXYaz8eAUznGTF.jpg new file mode 100644 index 0000000..b787150 Binary files /dev/null and b/upload/tgPFZxhDuxWd4VXYaz8eAUznGTF.jpg differ diff --git a/upload/tgtttloo.jpg b/upload/tgtttloo.jpg new file mode 100644 index 0000000..45fa064 Binary files /dev/null and b/upload/tgtttloo.jpg differ diff --git a/upload/th8aZaQnhCK295759-7.jpg b/upload/th8aZaQnhCK295759-7.jpg new file mode 100644 index 0000000..ab2b619 Binary files /dev/null and b/upload/th8aZaQnhCK295759-7.jpg differ diff --git a/upload/the-abominable-dr-phibes.jpg b/upload/the-abominable-dr-phibes.jpg new file mode 100644 index 0000000..8fc46c6 Binary files /dev/null and b/upload/the-abominable-dr-phibes.jpg differ diff --git a/upload/the-great-wall-4.png b/upload/the-great-wall-4.png new file mode 100644 index 0000000..70c3def Binary files /dev/null and b/upload/the-great-wall-4.png differ diff --git a/upload/the-lego-movie-2-2.jpg b/upload/the-lego-movie-2-2.jpg new file mode 100644 index 0000000..f802c11 Binary files /dev/null and b/upload/the-lego-movie-2-2.jpg differ diff --git a/upload/the-lego-movie-2-5.jpg b/upload/the-lego-movie-2-5.jpg new file mode 100644 index 0000000..2fef3d6 Binary files /dev/null and b/upload/the-lego-movie-2-5.jpg differ diff --git a/upload/the-mortal-engines-shrike-copertina-1280x720.jpg b/upload/the-mortal-engines-shrike-copertina-1280x720.jpg new file mode 100644 index 0000000..6c5b735 Binary files /dev/null and b/upload/the-mortal-engines-shrike-copertina-1280x720.jpg differ diff --git a/upload/the-muses-Hercules-1600x900.jpg b/upload/the-muses-Hercules-1600x900.jpg new file mode 100644 index 0000000..c497877 Binary files /dev/null and b/upload/the-muses-Hercules-1600x900.jpg differ diff --git a/upload/the-story-of-the-incredible-apollo-13-mission.jpg b/upload/the-story-of-the-incredible-apollo-13-mission.jpg new file mode 100644 index 0000000..fae09d7 Binary files /dev/null and b/upload/the-story-of-the-incredible-apollo-13-mission.jpg differ diff --git a/upload/thumb-1920-1071157.jpg b/upload/thumb-1920-1071157.jpg new file mode 100644 index 0000000..1532742 Binary files /dev/null and b/upload/thumb-1920-1071157.jpg differ diff --git a/upload/thumb-1920-238533.jpg b/upload/thumb-1920-238533.jpg new file mode 100644 index 0000000..ed23a32 Binary files /dev/null and b/upload/thumb-1920-238533.jpg differ diff --git a/upload/thumb-1920-420254.jpg b/upload/thumb-1920-420254.jpg new file mode 100644 index 0000000..7e22d9b Binary files /dev/null and b/upload/thumb-1920-420254.jpg differ diff --git a/upload/thumb-1920-476617.jpg b/upload/thumb-1920-476617.jpg new file mode 100644 index 0000000..deda867 Binary files /dev/null and b/upload/thumb-1920-476617.jpg differ diff --git a/upload/thumb-1920-490299.jpg b/upload/thumb-1920-490299.jpg new file mode 100644 index 0000000..2a29198 Binary files /dev/null and b/upload/thumb-1920-490299.jpg differ diff --git a/upload/thumb-1920-510232.jpg b/upload/thumb-1920-510232.jpg new file mode 100644 index 0000000..95431be Binary files /dev/null and b/upload/thumb-1920-510232.jpg differ diff --git a/upload/thumb-1920-565991.jpg b/upload/thumb-1920-565991.jpg new file mode 100644 index 0000000..33284ef Binary files /dev/null and b/upload/thumb-1920-565991.jpg differ diff --git a/upload/thumb-1920-605880.jpg b/upload/thumb-1920-605880.jpg new file mode 100644 index 0000000..90fe3e9 Binary files /dev/null and b/upload/thumb-1920-605880.jpg differ diff --git a/upload/thumb-1920-605881.jpg b/upload/thumb-1920-605881.jpg new file mode 100644 index 0000000..1c1f5b6 Binary files /dev/null and b/upload/thumb-1920-605881.jpg differ diff --git a/upload/thumb-1920-650609.jpg b/upload/thumb-1920-650609.jpg new file mode 100644 index 0000000..070e6b3 Binary files /dev/null and b/upload/thumb-1920-650609.jpg differ diff --git a/upload/thumb-1920-674230.jpg b/upload/thumb-1920-674230.jpg new file mode 100644 index 0000000..fe30a91 Binary files /dev/null and b/upload/thumb-1920-674230.jpg differ diff --git a/upload/thumb-1920-674254.jpg b/upload/thumb-1920-674254.jpg new file mode 100644 index 0000000..b930e61 Binary files /dev/null and b/upload/thumb-1920-674254.jpg differ diff --git a/upload/thumb-1920-708521.jpg b/upload/thumb-1920-708521.jpg new file mode 100644 index 0000000..fb71d0c Binary files /dev/null and b/upload/thumb-1920-708521.jpg differ diff --git a/upload/thumb-1920-748543.png b/upload/thumb-1920-748543.png new file mode 100644 index 0000000..4d98237 Binary files /dev/null and b/upload/thumb-1920-748543.png differ diff --git a/upload/thumb-1920-783651.jpg b/upload/thumb-1920-783651.jpg new file mode 100644 index 0000000..b8a0ebb Binary files /dev/null and b/upload/thumb-1920-783651.jpg differ diff --git a/upload/thumb-1920-797859.jpg b/upload/thumb-1920-797859.jpg new file mode 100644 index 0000000..86bf15e Binary files /dev/null and b/upload/thumb-1920-797859.jpg differ diff --git a/upload/thumb-1920-817110.jpg b/upload/thumb-1920-817110.jpg new file mode 100644 index 0000000..4327810 Binary files /dev/null and b/upload/thumb-1920-817110.jpg differ diff --git a/upload/thumb-1920-833804.jpg b/upload/thumb-1920-833804.jpg new file mode 100644 index 0000000..6f4e719 Binary files /dev/null and b/upload/thumb-1920-833804.jpg differ diff --git a/upload/thumb-1920-867027.jpg b/upload/thumb-1920-867027.jpg new file mode 100644 index 0000000..7415b82 Binary files /dev/null and b/upload/thumb-1920-867027.jpg differ diff --git a/upload/titanic-pronta-a-salpare-sfondo-3554x1999-13995_53.jpg b/upload/titanic-pronta-a-salpare-sfondo-3554x1999-13995_53.jpg new file mode 100644 index 0000000..9255050 Binary files /dev/null and b/upload/titanic-pronta-a-salpare-sfondo-3554x1999-13995_53.jpg differ diff --git a/upload/tj1Db0DQIGgnDuUThKRxhLbOobq.jpg b/upload/tj1Db0DQIGgnDuUThKRxhLbOobq.jpg new file mode 100644 index 0000000..5b411ce Binary files /dev/null and b/upload/tj1Db0DQIGgnDuUThKRxhLbOobq.jpg differ diff --git a/upload/tjezti_ii.jpg b/upload/tjezti_ii.jpg new file mode 100644 index 0000000..cd68597 Binary files /dev/null and b/upload/tjezti_ii.jpg differ diff --git a/upload/tmp_wydcav_5584e3020b4d0d87_mcdintw_ec012.jpg b/upload/tmp_wydcav_5584e3020b4d0d87_mcdintw_ec012.jpg new file mode 100644 index 0000000..fa161ea Binary files /dev/null and b/upload/tmp_wydcav_5584e3020b4d0d87_mcdintw_ec012.jpg differ diff --git a/upload/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg b/upload/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg new file mode 100644 index 0000000..6b9562c Binary files /dev/null and b/upload/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg differ diff --git a/upload/toy-story-2-02.jpg b/upload/toy-story-2-02.jpg new file mode 100644 index 0000000..8b0dd8f Binary files /dev/null and b/upload/toy-story-2-02.jpg differ diff --git a/upload/toy-story-3-1280x720.jpg b/upload/toy-story-3-1280x720.jpg new file mode 100644 index 0000000..0b98dd9 Binary files /dev/null and b/upload/toy-story-3-1280x720.jpg differ diff --git a/upload/toy-story-3-the-great-escape-v1-688717-1280x720.jpg b/upload/toy-story-3-the-great-escape-v1-688717-1280x720.jpg new file mode 100644 index 0000000..7d419da Binary files /dev/null and b/upload/toy-story-3-the-great-escape-v1-688717-1280x720.jpg differ diff --git a/upload/toy-story-4-02-1280x720.jpg b/upload/toy-story-4-02-1280x720.jpg new file mode 100644 index 0000000..083636e Binary files /dev/null and b/upload/toy-story-4-02-1280x720.jpg differ diff --git a/upload/tp2EfJBs6UMA39neOcxJdyL2x1v.jpg b/upload/tp2EfJBs6UMA39neOcxJdyL2x1v.jpg new file mode 100644 index 0000000..95fcd9d Binary files /dev/null and b/upload/tp2EfJBs6UMA39neOcxJdyL2x1v.jpg differ diff --git a/upload/trij64aXsQihxWjiFuoeJnV4x2X.jpg b/upload/trij64aXsQihxWjiFuoeJnV4x2X.jpg new file mode 100644 index 0000000..294125e Binary files /dev/null and b/upload/trij64aXsQihxWjiFuoeJnV4x2X.jpg differ diff --git a/upload/tumblr_miofd93bV81qm2dlyo1_1280.jpg b/upload/tumblr_miofd93bV81qm2dlyo1_1280.jpg new file mode 100644 index 0000000..7fc6480 Binary files /dev/null and b/upload/tumblr_miofd93bV81qm2dlyo1_1280.jpg differ diff --git a/upload/tumblr_ov2g4knGQx1shzkwno2_1280.jpg b/upload/tumblr_ov2g4knGQx1shzkwno2_1280.jpg new file mode 100644 index 0000000..d505824 Binary files /dev/null and b/upload/tumblr_ov2g4knGQx1shzkwno2_1280.jpg differ diff --git a/upload/twu2zdSoHcwHDXtuGU35D2GJGEH.jpg b/upload/twu2zdSoHcwHDXtuGU35D2GJGEH.jpg new file mode 100644 index 0000000..0e79b48 Binary files /dev/null and b/upload/twu2zdSoHcwHDXtuGU35D2GJGEH.jpg differ diff --git a/upload/txS6hIwPuTTIHnyDDrLd0ePC0rb.jpg b/upload/txS6hIwPuTTIHnyDDrLd0ePC0rb.jpg new file mode 100644 index 0000000..5caa08c Binary files /dev/null and b/upload/txS6hIwPuTTIHnyDDrLd0ePC0rb.jpg differ diff --git a/upload/tyyyy444.jpg b/upload/tyyyy444.jpg new file mode 100644 index 0000000..c2a94c1 Binary files /dev/null and b/upload/tyyyy444.jpg differ diff --git a/upload/tzoKq20x36urYDxS2t3bAM7NsBq.jpg b/upload/tzoKq20x36urYDxS2t3bAM7NsBq.jpg new file mode 100644 index 0000000..cbead9f Binary files /dev/null and b/upload/tzoKq20x36urYDxS2t3bAM7NsBq.jpg differ diff --git a/upload/tzoKq20x36urYDxS2t3bAM7NsBq_vpYRyYt.jpg b/upload/tzoKq20x36urYDxS2t3bAM7NsBq_vpYRyYt.jpg new file mode 100644 index 0000000..3a0109f Binary files /dev/null and b/upload/tzoKq20x36urYDxS2t3bAM7NsBq_vpYRyYt.jpg differ diff --git a/upload/u1CC2m4owXbAbQfGzXNMcbnUv6G.jpg b/upload/u1CC2m4owXbAbQfGzXNMcbnUv6G.jpg new file mode 100644 index 0000000..ba9a7c0 Binary files /dev/null and b/upload/u1CC2m4owXbAbQfGzXNMcbnUv6G.jpg differ diff --git a/upload/u24jqgSB8YTRRGNp3nmoLAdFdkj.jpg b/upload/u24jqgSB8YTRRGNp3nmoLAdFdkj.jpg new file mode 100644 index 0000000..c07f193 Binary files /dev/null and b/upload/u24jqgSB8YTRRGNp3nmoLAdFdkj.jpg differ diff --git a/upload/u5QrKhSCGoFsB8aAvZZJ1b53k16.jpg b/upload/u5QrKhSCGoFsB8aAvZZJ1b53k16.jpg new file mode 100644 index 0000000..16083be Binary files /dev/null and b/upload/u5QrKhSCGoFsB8aAvZZJ1b53k16.jpg differ diff --git a/upload/u7z3JkXf3UAmi9npT6O6yhbnoz5.jpg b/upload/u7z3JkXf3UAmi9npT6O6yhbnoz5.jpg new file mode 100644 index 0000000..984c97f Binary files /dev/null and b/upload/u7z3JkXf3UAmi9npT6O6yhbnoz5.jpg differ diff --git a/upload/u8IIXvpP12Njywuays2yP5v5mwP.jpg b/upload/u8IIXvpP12Njywuays2yP5v5mwP.jpg new file mode 100644 index 0000000..87f3799 Binary files /dev/null and b/upload/u8IIXvpP12Njywuays2yP5v5mwP.jpg differ diff --git a/upload/u8KAS5uqWYKWbfyIp9jioFTvfUy.jpg b/upload/u8KAS5uqWYKWbfyIp9jioFTvfUy.jpg new file mode 100644 index 0000000..9ca3dc0 Binary files /dev/null and b/upload/u8KAS5uqWYKWbfyIp9jioFTvfUy.jpg differ diff --git a/upload/u8wBR46y0vp91iXmJX0AYKzctzb.jpg b/upload/u8wBR46y0vp91iXmJX0AYKzctzb.jpg new file mode 100644 index 0000000..8c4196b Binary files /dev/null and b/upload/u8wBR46y0vp91iXmJX0AYKzctzb.jpg differ diff --git a/upload/uAbNCGl0we7IWKzdxAfMg8L0arT.jpg b/upload/uAbNCGl0we7IWKzdxAfMg8L0arT.jpg new file mode 100644 index 0000000..7cc9854 Binary files /dev/null and b/upload/uAbNCGl0we7IWKzdxAfMg8L0arT.jpg differ diff --git a/upload/uAbNCGl0we7IWKzdxAfMg8L0arT_AU1U7yn.jpg b/upload/uAbNCGl0we7IWKzdxAfMg8L0arT_AU1U7yn.jpg new file mode 100644 index 0000000..7cc9854 Binary files /dev/null and b/upload/uAbNCGl0we7IWKzdxAfMg8L0arT_AU1U7yn.jpg differ diff --git a/upload/uDQibffYgssdiqx7izO57wdLc6.jpg b/upload/uDQibffYgssdiqx7izO57wdLc6.jpg new file mode 100644 index 0000000..73d15b1 Binary files /dev/null and b/upload/uDQibffYgssdiqx7izO57wdLc6.jpg differ diff --git a/upload/uGa06CB57s4dufkU9uZWrTyftsJ.jpg b/upload/uGa06CB57s4dufkU9uZWrTyftsJ.jpg new file mode 100644 index 0000000..582cfcd Binary files /dev/null and b/upload/uGa06CB57s4dufkU9uZWrTyftsJ.jpg differ diff --git a/upload/uIxhM7UZq3eY7sKrdLQMmyS6RA2.jpg b/upload/uIxhM7UZq3eY7sKrdLQMmyS6RA2.jpg new file mode 100644 index 0000000..ce47e17 Binary files /dev/null and b/upload/uIxhM7UZq3eY7sKrdLQMmyS6RA2.jpg differ diff --git a/upload/uL1wtp17bAPTzd0MVPNWspWhHjt.jpg b/upload/uL1wtp17bAPTzd0MVPNWspWhHjt.jpg new file mode 100644 index 0000000..78be86d Binary files /dev/null and b/upload/uL1wtp17bAPTzd0MVPNWspWhHjt.jpg differ diff --git a/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg b/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg new file mode 100644 index 0000000..45cffe4 Binary files /dev/null and b/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg differ diff --git a/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X_cnvuvLw.jpg b/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X_cnvuvLw.jpg new file mode 100644 index 0000000..f69d5c7 Binary files /dev/null and b/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X_cnvuvLw.jpg differ diff --git a/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X_xHniIgT.jpg b/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X_xHniIgT.jpg new file mode 100644 index 0000000..c231c9e Binary files /dev/null and b/upload/uLOmOF5IzWoyrgIF5MfUnh5pa1X_xHniIgT.jpg differ diff --git a/upload/uLczFoWGrx6bvcwcGJJipwp8eTq.jpg b/upload/uLczFoWGrx6bvcwcGJJipwp8eTq.jpg new file mode 100644 index 0000000..1e2e283 Binary files /dev/null and b/upload/uLczFoWGrx6bvcwcGJJipwp8eTq.jpg differ diff --git a/upload/uLxXHGR3031QE5ti8UtHjkeMpgr.jpg b/upload/uLxXHGR3031QE5ti8UtHjkeMpgr.jpg new file mode 100644 index 0000000..f14147f Binary files /dev/null and b/upload/uLxXHGR3031QE5ti8UtHjkeMpgr.jpg differ diff --git a/upload/uPYN34YrnKIO1iNkvXdaOuFJQ4Z.jpg b/upload/uPYN34YrnKIO1iNkvXdaOuFJQ4Z.jpg new file mode 100644 index 0000000..0f308b0 Binary files /dev/null and b/upload/uPYN34YrnKIO1iNkvXdaOuFJQ4Z.jpg differ diff --git a/upload/uTe4qRb58dDpNsmwTQ7FPnRWAz4.jpg b/upload/uTe4qRb58dDpNsmwTQ7FPnRWAz4.jpg new file mode 100644 index 0000000..7aa5493 Binary files /dev/null and b/upload/uTe4qRb58dDpNsmwTQ7FPnRWAz4.jpg differ diff --git a/upload/uUHvlkLavotfGsNtosDy8ShsIYF.jpg b/upload/uUHvlkLavotfGsNtosDy8ShsIYF.jpg new file mode 100644 index 0000000..5ef8adc Binary files /dev/null and b/upload/uUHvlkLavotfGsNtosDy8ShsIYF.jpg differ diff --git a/upload/uXsE8WOKB55GxLMfvMxmNVq6yMk.jpg b/upload/uXsE8WOKB55GxLMfvMxmNVq6yMk.jpg new file mode 100644 index 0000000..25d03ba Binary files /dev/null and b/upload/uXsE8WOKB55GxLMfvMxmNVq6yMk.jpg differ diff --git a/upload/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg b/upload/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg new file mode 100644 index 0000000..e347733 Binary files /dev/null and b/upload/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg differ diff --git a/upload/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg b/upload/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg new file mode 100644 index 0000000..fc84c81 Binary files /dev/null and b/upload/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg differ diff --git a/upload/udP0Ij7hdlBvePYPiwSxh4BqG3I.jpg b/upload/udP0Ij7hdlBvePYPiwSxh4BqG3I.jpg new file mode 100644 index 0000000..ce24c50 Binary files /dev/null and b/upload/udP0Ij7hdlBvePYPiwSxh4BqG3I.jpg differ diff --git a/upload/ue36Y5NOejMwYhXdKeMjGmUvTOq.jpg b/upload/ue36Y5NOejMwYhXdKeMjGmUvTOq.jpg new file mode 100644 index 0000000..673d1f0 Binary files /dev/null and b/upload/ue36Y5NOejMwYhXdKeMjGmUvTOq.jpg differ diff --git a/upload/uhEDTDCn7TlX75EPGE0WRDyj1d3.jpg b/upload/uhEDTDCn7TlX75EPGE0WRDyj1d3.jpg new file mode 100644 index 0000000..64dc109 Binary files /dev/null and b/upload/uhEDTDCn7TlX75EPGE0WRDyj1d3.jpg differ diff --git a/upload/uhxpr963RGH8roxG3ShAflmdq1E.jpg b/upload/uhxpr963RGH8roxG3ShAflmdq1E.jpg new file mode 100644 index 0000000..89cdfa1 Binary files /dev/null and b/upload/uhxpr963RGH8roxG3ShAflmdq1E.jpg differ diff --git a/upload/ukhvxpVcBsb1MpRRwiqEIwyKdUX.jpg b/upload/ukhvxpVcBsb1MpRRwiqEIwyKdUX.jpg new file mode 100644 index 0000000..3929c21 Binary files /dev/null and b/upload/ukhvxpVcBsb1MpRRwiqEIwyKdUX.jpg differ diff --git a/upload/un-milione-di-modi-per-morire-nel-west-sfondo-3554x1999-2816_53.jpg b/upload/un-milione-di-modi-per-morire-nel-west-sfondo-3554x1999-2816_53.jpg new file mode 100644 index 0000000..ae60f4d Binary files /dev/null and b/upload/un-milione-di-modi-per-morire-nel-west-sfondo-3554x1999-2816_53.jpg differ diff --git a/upload/unnamed.jpg b/upload/unnamed.jpg new file mode 100644 index 0000000..5d6ebd2 Binary files /dev/null and b/upload/unnamed.jpg differ diff --git a/upload/uoOD6qqz4QFhgvhdsrrQUmkmAMc.jpg b/upload/uoOD6qqz4QFhgvhdsrrQUmkmAMc.jpg new file mode 100644 index 0000000..d96dc46 Binary files /dev/null and b/upload/uoOD6qqz4QFhgvhdsrrQUmkmAMc.jpg differ diff --git a/upload/uosqdJCGaqtwXkrqC0DTbLIhQdg.jpg b/upload/uosqdJCGaqtwXkrqC0DTbLIhQdg.jpg new file mode 100644 index 0000000..1f2179e Binary files /dev/null and b/upload/uosqdJCGaqtwXkrqC0DTbLIhQdg.jpg differ diff --git a/upload/uosqdJCGaqtwXkrqC0DTbLIhQdg_8M2Nphm.jpg b/upload/uosqdJCGaqtwXkrqC0DTbLIhQdg_8M2Nphm.jpg new file mode 100644 index 0000000..1f2179e Binary files /dev/null and b/upload/uosqdJCGaqtwXkrqC0DTbLIhQdg_8M2Nphm.jpg differ diff --git a/upload/ur4NTeFGZmQ6Hz5uEkAMgPI3WRg.jpg b/upload/ur4NTeFGZmQ6Hz5uEkAMgPI3WRg.jpg new file mode 100644 index 0000000..5faeeba Binary files /dev/null and b/upload/ur4NTeFGZmQ6Hz5uEkAMgPI3WRg.jpg differ diff --git a/upload/uuh6uNEGqLCU7wQ2L4xMqYv0DPr.jpg b/upload/uuh6uNEGqLCU7wQ2L4xMqYv0DPr.jpg new file mode 100644 index 0000000..86a0fa9 Binary files /dev/null and b/upload/uuh6uNEGqLCU7wQ2L4xMqYv0DPr.jpg differ diff --git a/upload/uuuyytyttr.jpg b/upload/uuuyytyttr.jpg new file mode 100644 index 0000000..2b6ec52 Binary files /dev/null and b/upload/uuuyytyttr.jpg differ diff --git a/upload/uwNs4tVhSECFJM8ZX7KuNYmovnv.jpg b/upload/uwNs4tVhSECFJM8ZX7KuNYmovnv.jpg new file mode 100644 index 0000000..c4207d6 Binary files /dev/null and b/upload/uwNs4tVhSECFJM8ZX7KuNYmovnv.jpg differ diff --git a/upload/ux9t4fjjch9ovAeUmXq6HXm2NtJ.jpg b/upload/ux9t4fjjch9ovAeUmXq6HXm2NtJ.jpg new file mode 100644 index 0000000..dd5c9ac Binary files /dev/null and b/upload/ux9t4fjjch9ovAeUmXq6HXm2NtJ.jpg differ diff --git a/upload/uyoMSxljkDo0znBXlrcPjRl8Lqc.jpg b/upload/uyoMSxljkDo0znBXlrcPjRl8Lqc.jpg new file mode 100644 index 0000000..0711028 Binary files /dev/null and b/upload/uyoMSxljkDo0znBXlrcPjRl8Lqc.jpg differ diff --git a/upload/v6lKdovA6OKXf3isPJe1R9HLW36.jpg b/upload/v6lKdovA6OKXf3isPJe1R9HLW36.jpg new file mode 100644 index 0000000..8774376 Binary files /dev/null and b/upload/v6lKdovA6OKXf3isPJe1R9HLW36.jpg differ diff --git a/upload/v9sN3XMttmDCQJDvwx4LU7VmRsV.jpg b/upload/v9sN3XMttmDCQJDvwx4LU7VmRsV.jpg new file mode 100644 index 0000000..12d5cc5 Binary files /dev/null and b/upload/v9sN3XMttmDCQJDvwx4LU7VmRsV.jpg differ diff --git a/upload/vE6SZ04TRpNars9Hv1feIHxrXej.jpg b/upload/vE6SZ04TRpNars9Hv1feIHxrXej.jpg new file mode 100644 index 0000000..e5c5c18 Binary files /dev/null and b/upload/vE6SZ04TRpNars9Hv1feIHxrXej.jpg differ diff --git a/upload/vHWoapGhI3thn3TyBu4qtH8W15f.jpg b/upload/vHWoapGhI3thn3TyBu4qtH8W15f.jpg new file mode 100644 index 0000000..ac74f68 Binary files /dev/null and b/upload/vHWoapGhI3thn3TyBu4qtH8W15f.jpg differ diff --git a/upload/vHWoapGhI3thn3TyBu4qtH8W15f_4pVKLog.jpg b/upload/vHWoapGhI3thn3TyBu4qtH8W15f_4pVKLog.jpg new file mode 100644 index 0000000..3850634 Binary files /dev/null and b/upload/vHWoapGhI3thn3TyBu4qtH8W15f_4pVKLog.jpg differ diff --git a/upload/vJK6lt.jpg b/upload/vJK6lt.jpg new file mode 100644 index 0000000..3a0a5c4 Binary files /dev/null and b/upload/vJK6lt.jpg differ diff --git a/upload/vMuK0MY2Iz09sP3NcX5GNOG9gjp.jpg b/upload/vMuK0MY2Iz09sP3NcX5GNOG9gjp.jpg new file mode 100644 index 0000000..dd5d693 Binary files /dev/null and b/upload/vMuK0MY2Iz09sP3NcX5GNOG9gjp.jpg differ diff --git a/upload/vNJFiwtsl7Twww7C0uM4qPnygNw.jpg b/upload/vNJFiwtsl7Twww7C0uM4qPnygNw.jpg new file mode 100644 index 0000000..9a9a385 Binary files /dev/null and b/upload/vNJFiwtsl7Twww7C0uM4qPnygNw.jpg differ diff --git a/upload/vOFiHdzJ0aGTedt4u3Lzgjazain.jpg b/upload/vOFiHdzJ0aGTedt4u3Lzgjazain.jpg new file mode 100644 index 0000000..62a339c Binary files /dev/null and b/upload/vOFiHdzJ0aGTedt4u3Lzgjazain.jpg differ diff --git a/upload/vQvYogoV88EXdMiXGuzpdhwcuMN.jpg b/upload/vQvYogoV88EXdMiXGuzpdhwcuMN.jpg new file mode 100644 index 0000000..e8e63ac Binary files /dev/null and b/upload/vQvYogoV88EXdMiXGuzpdhwcuMN.jpg differ diff --git a/upload/vRQnzOn4HjIMX4LBq9nHhFXbsSu.jpg b/upload/vRQnzOn4HjIMX4LBq9nHhFXbsSu.jpg new file mode 100644 index 0000000..7a8371f Binary files /dev/null and b/upload/vRQnzOn4HjIMX4LBq9nHhFXbsSu.jpg differ diff --git a/upload/vTiaQo1aqXNqoTPGiir03tcBHlh.jpg b/upload/vTiaQo1aqXNqoTPGiir03tcBHlh.jpg new file mode 100644 index 0000000..042ddc6 Binary files /dev/null and b/upload/vTiaQo1aqXNqoTPGiir03tcBHlh.jpg differ diff --git a/upload/vUTVUdfbsY4DePCYzxxDMXKp6v6.jpg b/upload/vUTVUdfbsY4DePCYzxxDMXKp6v6.jpg new file mode 100644 index 0000000..0ed9677 Binary files /dev/null and b/upload/vUTVUdfbsY4DePCYzxxDMXKp6v6.jpg differ diff --git a/upload/vUjgi5jZyWQNajMbk7Is6QVOyzG.jpg b/upload/vUjgi5jZyWQNajMbk7Is6QVOyzG.jpg new file mode 100644 index 0000000..a7993c2 Binary files /dev/null and b/upload/vUjgi5jZyWQNajMbk7Is6QVOyzG.jpg differ diff --git a/upload/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg b/upload/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg new file mode 100644 index 0000000..a86843d Binary files /dev/null and b/upload/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg differ diff --git a/upload/vbk5CfaAHOjQPSAcYm6AoRRz2Af.jpg b/upload/vbk5CfaAHOjQPSAcYm6AoRRz2Af.jpg new file mode 100644 index 0000000..3c4b8bc Binary files /dev/null and b/upload/vbk5CfaAHOjQPSAcYm6AoRRz2Af.jpg differ diff --git a/upload/ve2P64a9kzd7M78kfeaEzBEIEOR.jpg b/upload/ve2P64a9kzd7M78kfeaEzBEIEOR.jpg new file mode 100644 index 0000000..7f5e604 Binary files /dev/null and b/upload/ve2P64a9kzd7M78kfeaEzBEIEOR.jpg differ diff --git a/upload/veXdzn7LL0bFIDGmE7tTkvRg0qV.jpg b/upload/veXdzn7LL0bFIDGmE7tTkvRg0qV.jpg new file mode 100644 index 0000000..59de09b Binary files /dev/null and b/upload/veXdzn7LL0bFIDGmE7tTkvRg0qV.jpg differ diff --git a/upload/vgACS7nnCf2Mw3VtcoVjYS8AIYq.jpg b/upload/vgACS7nnCf2Mw3VtcoVjYS8AIYq.jpg new file mode 100644 index 0000000..7bb94e8 Binary files /dev/null and b/upload/vgACS7nnCf2Mw3VtcoVjYS8AIYq.jpg differ diff --git a/upload/vgvN9E62WB1pZTXMVH2BK53Erj2.jpg b/upload/vgvN9E62WB1pZTXMVH2BK53Erj2.jpg new file mode 100644 index 0000000..4fbbe6d Binary files /dev/null and b/upload/vgvN9E62WB1pZTXMVH2BK53Erj2.jpg differ diff --git a/upload/vhgLdzlHkBuS9dBjI4JZWAEWy6m.jpg b/upload/vhgLdzlHkBuS9dBjI4JZWAEWy6m.jpg new file mode 100644 index 0000000..840f4fb Binary files /dev/null and b/upload/vhgLdzlHkBuS9dBjI4JZWAEWy6m.jpg differ diff --git a/upload/vlDmn6sb8w9igxZ6X7GIQp3xoBU.jpg b/upload/vlDmn6sb8w9igxZ6X7GIQp3xoBU.jpg new file mode 100644 index 0000000..7033f6e Binary files /dev/null and b/upload/vlDmn6sb8w9igxZ6X7GIQp3xoBU.jpg differ diff --git a/upload/vlcsnap-2020-06-04-19h47m00s364.png b/upload/vlcsnap-2020-06-04-19h47m00s364.png new file mode 100644 index 0000000..e3dad79 Binary files /dev/null and b/upload/vlcsnap-2020-06-04-19h47m00s364.png differ diff --git a/upload/vlcsnap-2020-06-04-19h49m35s907.png b/upload/vlcsnap-2020-06-04-19h49m35s907.png new file mode 100644 index 0000000..2471723 Binary files /dev/null and b/upload/vlcsnap-2020-06-04-19h49m35s907.png differ diff --git a/upload/vlreYrCjjgQ278126-1.jpg b/upload/vlreYrCjjgQ278126-1.jpg new file mode 100644 index 0000000..2fdc28f Binary files /dev/null and b/upload/vlreYrCjjgQ278126-1.jpg differ diff --git a/upload/vlz6YYxo2XG2c1kh8OdpyITgjvw.jpg b/upload/vlz6YYxo2XG2c1kh8OdpyITgjvw.jpg new file mode 100644 index 0000000..db87e21 Binary files /dev/null and b/upload/vlz6YYxo2XG2c1kh8OdpyITgjvw.jpg differ diff --git a/upload/vmU4aluI4SYiPIYC5ghqXAu29tK.jpg b/upload/vmU4aluI4SYiPIYC5ghqXAu29tK.jpg new file mode 100644 index 0000000..dc8136b Binary files /dev/null and b/upload/vmU4aluI4SYiPIYC5ghqXAu29tK.jpg differ diff --git a/upload/vooRKLGVvFRFmx9swcMh26uYZSf.jpg b/upload/vooRKLGVvFRFmx9swcMh26uYZSf.jpg new file mode 100644 index 0000000..094fa48 Binary files /dev/null and b/upload/vooRKLGVvFRFmx9swcMh26uYZSf.jpg differ diff --git a/upload/vp8uQ8ENJFvjRRuSjSUaChTytws.jpg b/upload/vp8uQ8ENJFvjRRuSjSUaChTytws.jpg new file mode 100644 index 0000000..1805c63 Binary files /dev/null and b/upload/vp8uQ8ENJFvjRRuSjSUaChTytws.jpg differ diff --git a/upload/vqbmCNKQ08OL92vODhRPL6pMShw.jpg b/upload/vqbmCNKQ08OL92vODhRPL6pMShw.jpg new file mode 100644 index 0000000..7d2877c Binary files /dev/null and b/upload/vqbmCNKQ08OL92vODhRPL6pMShw.jpg differ diff --git a/upload/vv5a8u6e40kyH0Hp6HuamAgzRai.jpg b/upload/vv5a8u6e40kyH0Hp6HuamAgzRai.jpg new file mode 100644 index 0000000..0732deb Binary files /dev/null and b/upload/vv5a8u6e40kyH0Hp6HuamAgzRai.jpg differ diff --git a/upload/vvK9OOOk6Zc6zpmeBdk5xqL29Rd.jpg b/upload/vvK9OOOk6Zc6zpmeBdk5xqL29Rd.jpg new file mode 100644 index 0000000..5a55e98 Binary files /dev/null and b/upload/vvK9OOOk6Zc6zpmeBdk5xqL29Rd.jpg differ diff --git a/upload/w1sdtsxmioqi4k6x9ivo.png b/upload/w1sdtsxmioqi4k6x9ivo.png new file mode 100644 index 0000000..50a8747 Binary files /dev/null and b/upload/w1sdtsxmioqi4k6x9ivo.png differ diff --git a/upload/w620zb5fZW0QBQlM8pZwftzBaJj.jpg b/upload/w620zb5fZW0QBQlM8pZwftzBaJj.jpg new file mode 100644 index 0000000..0601765 Binary files /dev/null and b/upload/w620zb5fZW0QBQlM8pZwftzBaJj.jpg differ diff --git a/upload/w9kR8qbmQ01HwnvK4alvnQ2ca0L.jpg b/upload/w9kR8qbmQ01HwnvK4alvnQ2ca0L.jpg new file mode 100644 index 0000000..20786ab Binary files /dev/null and b/upload/w9kR8qbmQ01HwnvK4alvnQ2ca0L.jpg differ diff --git a/upload/wE5JGzujfvDPMIfFjJyrhXFjZLc.jpg b/upload/wE5JGzujfvDPMIfFjJyrhXFjZLc.jpg new file mode 100644 index 0000000..b36742c Binary files /dev/null and b/upload/wE5JGzujfvDPMIfFjJyrhXFjZLc.jpg differ diff --git a/upload/wE5JGzujfvDPMIfFjJyrhXFjZLc_jasTnaL.jpg b/upload/wE5JGzujfvDPMIfFjJyrhXFjZLc_jasTnaL.jpg new file mode 100644 index 0000000..a3f1a5f Binary files /dev/null and b/upload/wE5JGzujfvDPMIfFjJyrhXFjZLc_jasTnaL.jpg differ diff --git a/upload/wFSpyMsp7H0ttERbxY7Trlv8xry.jpg b/upload/wFSpyMsp7H0ttERbxY7Trlv8xry.jpg new file mode 100644 index 0000000..0d4d6ed Binary files /dev/null and b/upload/wFSpyMsp7H0ttERbxY7Trlv8xry.jpg differ diff --git a/upload/wGv9fox3iIA7jrZxTueQnsKqwoE.jpg b/upload/wGv9fox3iIA7jrZxTueQnsKqwoE.jpg new file mode 100644 index 0000000..ea568a5 Binary files /dev/null and b/upload/wGv9fox3iIA7jrZxTueQnsKqwoE.jpg differ diff --git a/upload/wNUDAq5OUMOtxMlz64YaCp7gZma.jpg b/upload/wNUDAq5OUMOtxMlz64YaCp7gZma.jpg new file mode 100644 index 0000000..9965af3 Binary files /dev/null and b/upload/wNUDAq5OUMOtxMlz64YaCp7gZma.jpg differ diff --git a/upload/wOO5YtBxvdCPNCzJ6MmRXiLEKOZ.jpg b/upload/wOO5YtBxvdCPNCzJ6MmRXiLEKOZ.jpg new file mode 100644 index 0000000..ad6a931 Binary files /dev/null and b/upload/wOO5YtBxvdCPNCzJ6MmRXiLEKOZ.jpg differ diff --git a/upload/wQ0r0JRs7elHSKg1SFtdWdKTYKi.jpg b/upload/wQ0r0JRs7elHSKg1SFtdWdKTYKi.jpg new file mode 100644 index 0000000..a3c163e Binary files /dev/null and b/upload/wQ0r0JRs7elHSKg1SFtdWdKTYKi.jpg differ diff --git a/upload/wQxPlS65wgy6Ik7N80bsMpAkjyf.jpg b/upload/wQxPlS65wgy6Ik7N80bsMpAkjyf.jpg new file mode 100644 index 0000000..9f7c3ff Binary files /dev/null and b/upload/wQxPlS65wgy6Ik7N80bsMpAkjyf.jpg differ diff --git a/upload/wR2Fd3G5wADovzYcioQUPlYZbpu.jpg b/upload/wR2Fd3G5wADovzYcioQUPlYZbpu.jpg new file mode 100644 index 0000000..7fbff21 Binary files /dev/null and b/upload/wR2Fd3G5wADovzYcioQUPlYZbpu.jpg differ diff --git a/upload/wRdUCui6IDuYhYOileW8knk64A2.jpg b/upload/wRdUCui6IDuYhYOileW8knk64A2.jpg new file mode 100644 index 0000000..0d90b1e Binary files /dev/null and b/upload/wRdUCui6IDuYhYOileW8knk64A2.jpg differ diff --git a/upload/wURLf7FW0WYytXl9aeYu5dTbmAT.jpg b/upload/wURLf7FW0WYytXl9aeYu5dTbmAT.jpg new file mode 100644 index 0000000..e24f330 Binary files /dev/null and b/upload/wURLf7FW0WYytXl9aeYu5dTbmAT.jpg differ diff --git a/upload/wVOjEflPlJLhj3j9LHc15kqt5wi.jpg b/upload/wVOjEflPlJLhj3j9LHc15kqt5wi.jpg new file mode 100644 index 0000000..a1cce93 Binary files /dev/null and b/upload/wVOjEflPlJLhj3j9LHc15kqt5wi.jpg differ diff --git a/upload/wW7Wt5bXzPy4VOEE4LTIUDyDgBo.jpg b/upload/wW7Wt5bXzPy4VOEE4LTIUDyDgBo.jpg new file mode 100644 index 0000000..6292e7b Binary files /dev/null and b/upload/wW7Wt5bXzPy4VOEE4LTIUDyDgBo.jpg differ diff --git a/upload/wWIe362GTLoLB62y91NlYP5qZMh.jpg b/upload/wWIe362GTLoLB62y91NlYP5qZMh.jpg new file mode 100644 index 0000000..caacc7f Binary files /dev/null and b/upload/wWIe362GTLoLB62y91NlYP5qZMh.jpg differ diff --git a/upload/wXNmzxxd9cch2gCbgRTxj6r6Pwc.jpg b/upload/wXNmzxxd9cch2gCbgRTxj6r6Pwc.jpg new file mode 100644 index 0000000..21383c4 Binary files /dev/null and b/upload/wXNmzxxd9cch2gCbgRTxj6r6Pwc.jpg differ diff --git a/upload/wa0V0AZrVfMdMfIh3oCLvX3uYbK.jpg b/upload/wa0V0AZrVfMdMfIh3oCLvX3uYbK.jpg new file mode 100644 index 0000000..f3fcbc4 Binary files /dev/null and b/upload/wa0V0AZrVfMdMfIh3oCLvX3uYbK.jpg differ diff --git a/upload/waCRuAW5ocONRehP556vPexVXA9.jpg b/upload/waCRuAW5ocONRehP556vPexVXA9.jpg new file mode 100644 index 0000000..aa78b7e Binary files /dev/null and b/upload/waCRuAW5ocONRehP556vPexVXA9.jpg differ diff --git a/upload/waIZRQ9mw497jmN0mAQOS5b4oR3.jpg b/upload/waIZRQ9mw497jmN0mAQOS5b4oR3.jpg new file mode 100644 index 0000000..9e3dfc1 Binary files /dev/null and b/upload/waIZRQ9mw497jmN0mAQOS5b4oR3.jpg differ diff --git a/upload/wcckSvkbtCTLStPN6aab13mpGKv.jpg b/upload/wcckSvkbtCTLStPN6aab13mpGKv.jpg new file mode 100644 index 0000000..f841fa0 Binary files /dev/null and b/upload/wcckSvkbtCTLStPN6aab13mpGKv.jpg differ diff --git a/upload/wfClZdRb1x4LZ8B73Y9RSn8XAPa.jpg b/upload/wfClZdRb1x4LZ8B73Y9RSn8XAPa.jpg new file mode 100644 index 0000000..f9937f1 Binary files /dev/null and b/upload/wfClZdRb1x4LZ8B73Y9RSn8XAPa.jpg differ diff --git a/upload/wgdRk3Mrr0VWUVo8yU89kh7Ufc7.jpg b/upload/wgdRk3Mrr0VWUVo8yU89kh7Ufc7.jpg new file mode 100644 index 0000000..83c3700 Binary files /dev/null and b/upload/wgdRk3Mrr0VWUVo8yU89kh7Ufc7.jpg differ diff --git a/upload/wizRGnhxbsRVsUsyxG7ogHo4TR0.jpg b/upload/wizRGnhxbsRVsUsyxG7ogHo4TR0.jpg new file mode 100644 index 0000000..cd30a25 Binary files /dev/null and b/upload/wizRGnhxbsRVsUsyxG7ogHo4TR0.jpg differ diff --git a/upload/wlDHcUcA9FKdgWb0Bbok6qpDPSf.jpg b/upload/wlDHcUcA9FKdgWb0Bbok6qpDPSf.jpg new file mode 100644 index 0000000..d2709ff Binary files /dev/null and b/upload/wlDHcUcA9FKdgWb0Bbok6qpDPSf.jpg differ diff --git a/upload/wp1832478.jpg b/upload/wp1832478.jpg new file mode 100644 index 0000000..84a0804 Binary files /dev/null and b/upload/wp1832478.jpg differ diff --git a/upload/wp1832482.png b/upload/wp1832482.png new file mode 100644 index 0000000..a2036d0 Binary files /dev/null and b/upload/wp1832482.png differ diff --git a/upload/wp1859855.jpg b/upload/wp1859855.jpg new file mode 100644 index 0000000..3160856 Binary files /dev/null and b/upload/wp1859855.jpg differ diff --git a/upload/wp2017177.jpg b/upload/wp2017177.jpg new file mode 100644 index 0000000..f07b131 Binary files /dev/null and b/upload/wp2017177.jpg differ diff --git a/upload/wp2410858.jpg b/upload/wp2410858.jpg new file mode 100644 index 0000000..06904a3 Binary files /dev/null and b/upload/wp2410858.jpg differ diff --git a/upload/wrQn30V7at7JibFc5GqeThBfvL4.jpg b/upload/wrQn30V7at7JibFc5GqeThBfvL4.jpg new file mode 100644 index 0000000..08595ea Binary files /dev/null and b/upload/wrQn30V7at7JibFc5GqeThBfvL4.jpg differ diff --git a/upload/wwN03J23uP8w3dgPdv3yR4Z5nwf.jpg b/upload/wwN03J23uP8w3dgPdv3yR4Z5nwf.jpg new file mode 100644 index 0000000..79155de Binary files /dev/null and b/upload/wwN03J23uP8w3dgPdv3yR4Z5nwf.jpg differ diff --git a/upload/wzJRB4MKi3yK138bJyuL9nx47y6.jpg b/upload/wzJRB4MKi3yK138bJyuL9nx47y6.jpg new file mode 100644 index 0000000..75eb173 Binary files /dev/null and b/upload/wzJRB4MKi3yK138bJyuL9nx47y6.jpg differ diff --git a/upload/wzyPPhRsCr4gAKnEHcxH0ncuzaN.jpg b/upload/wzyPPhRsCr4gAKnEHcxH0ncuzaN.jpg new file mode 100644 index 0000000..4b009f3 Binary files /dev/null and b/upload/wzyPPhRsCr4gAKnEHcxH0ncuzaN.jpg differ diff --git a/upload/x-force-deadpool-candidati-1.jpeg b/upload/x-force-deadpool-candidati-1.jpeg new file mode 100644 index 0000000..3dc7a19 Binary files /dev/null and b/upload/x-force-deadpool-candidati-1.jpeg differ diff --git a/upload/x09wMSCS5mepN8lVRhmatyowVUd.jpg b/upload/x09wMSCS5mepN8lVRhmatyowVUd.jpg new file mode 100644 index 0000000..24117f5 Binary files /dev/null and b/upload/x09wMSCS5mepN8lVRhmatyowVUd.jpg differ diff --git a/upload/x67bjXBWxnuUEbNbKBUoBsf2vUN.jpg b/upload/x67bjXBWxnuUEbNbKBUoBsf2vUN.jpg new file mode 100644 index 0000000..4db7d3b Binary files /dev/null and b/upload/x67bjXBWxnuUEbNbKBUoBsf2vUN.jpg differ diff --git a/upload/x67bjXBWxnuUEbNbKBUoBsf2vUN_71nJnVW.jpg b/upload/x67bjXBWxnuUEbNbKBUoBsf2vUN_71nJnVW.jpg new file mode 100644 index 0000000..4db7d3b Binary files /dev/null and b/upload/x67bjXBWxnuUEbNbKBUoBsf2vUN_71nJnVW.jpg differ diff --git a/upload/x7gFWu9CxTxw7VmkdQAtKocZJtI.jpg b/upload/x7gFWu9CxTxw7VmkdQAtKocZJtI.jpg new file mode 100644 index 0000000..d970389 Binary files /dev/null and b/upload/x7gFWu9CxTxw7VmkdQAtKocZJtI.jpg differ diff --git a/upload/x92CMwq9PZ1MG0jarDHtSB1uMMw.jpg b/upload/x92CMwq9PZ1MG0jarDHtSB1uMMw.jpg new file mode 100644 index 0000000..ed007ea Binary files /dev/null and b/upload/x92CMwq9PZ1MG0jarDHtSB1uMMw.jpg differ diff --git a/upload/xAEg9S4RcLknP5deUwOSpciTUbm.jpg b/upload/xAEg9S4RcLknP5deUwOSpciTUbm.jpg new file mode 100644 index 0000000..bc982dc Binary files /dev/null and b/upload/xAEg9S4RcLknP5deUwOSpciTUbm.jpg differ diff --git a/upload/xAEg9S4RcLknP5deUwOSpciTUbm_peKghHF.jpg b/upload/xAEg9S4RcLknP5deUwOSpciTUbm_peKghHF.jpg new file mode 100644 index 0000000..e2cf440 Binary files /dev/null and b/upload/xAEg9S4RcLknP5deUwOSpciTUbm_peKghHF.jpg differ diff --git a/upload/xEWjdAApHf27kecP0OBfV8SfvtE.jpg b/upload/xEWjdAApHf27kecP0OBfV8SfvtE.jpg new file mode 100644 index 0000000..84985ca Binary files /dev/null and b/upload/xEWjdAApHf27kecP0OBfV8SfvtE.jpg differ diff --git a/upload/xGXl8i0XeVLhsHCVi9cVjkv7gcK.jpg b/upload/xGXl8i0XeVLhsHCVi9cVjkv7gcK.jpg new file mode 100644 index 0000000..4c59970 Binary files /dev/null and b/upload/xGXl8i0XeVLhsHCVi9cVjkv7gcK.jpg differ diff --git a/upload/xJHokMbljvjADYdit5fK5VQsXEG.jpg b/upload/xJHokMbljvjADYdit5fK5VQsXEG.jpg new file mode 100644 index 0000000..6c7b50c Binary files /dev/null and b/upload/xJHokMbljvjADYdit5fK5VQsXEG.jpg differ diff --git a/upload/xJUILftRf6TJxloOgrilOTJfeOn.jpg b/upload/xJUILftRf6TJxloOgrilOTJfeOn.jpg new file mode 100644 index 0000000..2087f3d Binary files /dev/null and b/upload/xJUILftRf6TJxloOgrilOTJfeOn.jpg differ diff --git a/upload/xJWPZIYOEFIjZpBL7SVBGnzRYXp.jpg b/upload/xJWPZIYOEFIjZpBL7SVBGnzRYXp.jpg new file mode 100644 index 0000000..44be35d Binary files /dev/null and b/upload/xJWPZIYOEFIjZpBL7SVBGnzRYXp.jpg differ diff --git a/upload/xJWPZIYOEFIjZpBL7SVBGnzRYXp_i7O6ZG8.jpg b/upload/xJWPZIYOEFIjZpBL7SVBGnzRYXp_i7O6ZG8.jpg new file mode 100644 index 0000000..b7a3589 Binary files /dev/null and b/upload/xJWPZIYOEFIjZpBL7SVBGnzRYXp_i7O6ZG8.jpg differ diff --git a/upload/xJp90Ef8hHISTJeCfpOIp7obyyC.jpg b/upload/xJp90Ef8hHISTJeCfpOIp7obyyC.jpg new file mode 100644 index 0000000..90daa7a Binary files /dev/null and b/upload/xJp90Ef8hHISTJeCfpOIp7obyyC.jpg differ diff --git a/upload/xNCCG9bHted49BYFUlTkJq1sxbB.jpg b/upload/xNCCG9bHted49BYFUlTkJq1sxbB.jpg new file mode 100644 index 0000000..3e14f5e Binary files /dev/null and b/upload/xNCCG9bHted49BYFUlTkJq1sxbB.jpg differ diff --git a/upload/xR0xx9pz2w5dWJx10uaPvo47Eiw.jpg b/upload/xR0xx9pz2w5dWJx10uaPvo47Eiw.jpg new file mode 100644 index 0000000..b11a670 Binary files /dev/null and b/upload/xR0xx9pz2w5dWJx10uaPvo47Eiw.jpg differ diff --git a/upload/xT2MN9uyBCmO3STeSl2ddcAwEk2.jpg b/upload/xT2MN9uyBCmO3STeSl2ddcAwEk2.jpg new file mode 100644 index 0000000..fbb8b23 Binary files /dev/null and b/upload/xT2MN9uyBCmO3STeSl2ddcAwEk2.jpg differ diff --git a/upload/xTm1NVePaSKAypcPTJEM0tnGh6A.jpg b/upload/xTm1NVePaSKAypcPTJEM0tnGh6A.jpg new file mode 100644 index 0000000..9a71a02 Binary files /dev/null and b/upload/xTm1NVePaSKAypcPTJEM0tnGh6A.jpg differ diff --git a/upload/xV7Kfz4TW3hN6q4xtZgu5vduBHA.jpg b/upload/xV7Kfz4TW3hN6q4xtZgu5vduBHA.jpg new file mode 100644 index 0000000..86a4315 Binary files /dev/null and b/upload/xV7Kfz4TW3hN6q4xtZgu5vduBHA.jpg differ diff --git a/upload/xWUHCD67fcbEZw5yMrdOnRyd5WR.jpg b/upload/xWUHCD67fcbEZw5yMrdOnRyd5WR.jpg new file mode 100644 index 0000000..f8099d4 Binary files /dev/null and b/upload/xWUHCD67fcbEZw5yMrdOnRyd5WR.jpg differ diff --git a/upload/xYDypUTwz7Buw96tn7tadqUjpPk.jpg b/upload/xYDypUTwz7Buw96tn7tadqUjpPk.jpg new file mode 100644 index 0000000..f64674d Binary files /dev/null and b/upload/xYDypUTwz7Buw96tn7tadqUjpPk.jpg differ diff --git a/upload/xYDypUTwz7Buw96tn7tadqUjpPk_exUHeBu.jpg b/upload/xYDypUTwz7Buw96tn7tadqUjpPk_exUHeBu.jpg new file mode 100644 index 0000000..f64674d Binary files /dev/null and b/upload/xYDypUTwz7Buw96tn7tadqUjpPk_exUHeBu.jpg differ diff --git a/upload/xYZ5NBJb555isOiQ2X9ia6rH9OZ.jpg b/upload/xYZ5NBJb555isOiQ2X9ia6rH9OZ.jpg new file mode 100644 index 0000000..6d2a856 Binary files /dev/null and b/upload/xYZ5NBJb555isOiQ2X9ia6rH9OZ.jpg differ diff --git a/upload/xaA6c3haZ22eSA2ppsQe2YBroMT.jpg b/upload/xaA6c3haZ22eSA2ppsQe2YBroMT.jpg new file mode 100644 index 0000000..0c1e16c Binary files /dev/null and b/upload/xaA6c3haZ22eSA2ppsQe2YBroMT.jpg differ diff --git a/upload/xaBFl8LdcCbJgA70lJUwvyknqmT.jpg b/upload/xaBFl8LdcCbJgA70lJUwvyknqmT.jpg new file mode 100644 index 0000000..cf4917f Binary files /dev/null and b/upload/xaBFl8LdcCbJgA70lJUwvyknqmT.jpg differ diff --git a/upload/xak55UAi2R5yGSxMiF0cYuAiyuve5DA6bnWEOI.jpg b/upload/xak55UAi2R5yGSxMiF0cYuAiyuve5DA6bnWEOI.jpg new file mode 100644 index 0000000..3c2001f Binary files /dev/null and b/upload/xak55UAi2R5yGSxMiF0cYuAiyuve5DA6bnWEOI.jpg differ diff --git a/upload/xcaSYLBhmDzJ6P14bcKe0KTh3QV.jpg b/upload/xcaSYLBhmDzJ6P14bcKe0KTh3QV.jpg new file mode 100644 index 0000000..c82dddc Binary files /dev/null and b/upload/xcaSYLBhmDzJ6P14bcKe0KTh3QV.jpg differ diff --git a/upload/xfGnAWLN2haGiZiUeEqIPQlmpw1.jpg b/upload/xfGnAWLN2haGiZiUeEqIPQlmpw1.jpg new file mode 100644 index 0000000..cc2f8b5 Binary files /dev/null and b/upload/xfGnAWLN2haGiZiUeEqIPQlmpw1.jpg differ diff --git a/upload/xgAEfHByamMdRCA31oERQrsiutF.jpg b/upload/xgAEfHByamMdRCA31oERQrsiutF.jpg new file mode 100644 index 0000000..8546cc5 Binary files /dev/null and b/upload/xgAEfHByamMdRCA31oERQrsiutF.jpg differ diff --git a/upload/xgAEfHByamMdRCA31oERQrsiutF_nySYwTD.jpg b/upload/xgAEfHByamMdRCA31oERQrsiutF_nySYwTD.jpg new file mode 100644 index 0000000..f8e7ff3 Binary files /dev/null and b/upload/xgAEfHByamMdRCA31oERQrsiutF_nySYwTD.jpg differ diff --git a/upload/xin8qyAvjmKyZwdzr9e2vCTVLAp.jpg b/upload/xin8qyAvjmKyZwdzr9e2vCTVLAp.jpg new file mode 100644 index 0000000..f0ea2ca Binary files /dev/null and b/upload/xin8qyAvjmKyZwdzr9e2vCTVLAp.jpg differ diff --git a/upload/xjotE7aFdZ0D8aGriYjFOtDayct.jpg b/upload/xjotE7aFdZ0D8aGriYjFOtDayct.jpg new file mode 100644 index 0000000..99cca43 Binary files /dev/null and b/upload/xjotE7aFdZ0D8aGriYjFOtDayct.jpg differ diff --git a/upload/xmnvajn94QH6RKp7segKhr9ATOf.jpg b/upload/xmnvajn94QH6RKp7segKhr9ATOf.jpg new file mode 100644 index 0000000..abba941 Binary files /dev/null and b/upload/xmnvajn94QH6RKp7segKhr9ATOf.jpg differ diff --git a/upload/xqHWyWL2X7KiBvGLat9fw0SFm2U.jpg b/upload/xqHWyWL2X7KiBvGLat9fw0SFm2U.jpg new file mode 100644 index 0000000..f8d69d7 Binary files /dev/null and b/upload/xqHWyWL2X7KiBvGLat9fw0SFm2U.jpg differ diff --git a/upload/xsptkoJ8h2O8L7n970DKvISHt5K.jpg b/upload/xsptkoJ8h2O8L7n970DKvISHt5K.jpg new file mode 100644 index 0000000..a566827 Binary files /dev/null and b/upload/xsptkoJ8h2O8L7n970DKvISHt5K.jpg differ diff --git a/upload/xtYvVQ9GEP2cEy7qQaZonKRTiw4.jpg b/upload/xtYvVQ9GEP2cEy7qQaZonKRTiw4.jpg new file mode 100644 index 0000000..398432e Binary files /dev/null and b/upload/xtYvVQ9GEP2cEy7qQaZonKRTiw4.jpg differ diff --git a/upload/xvjOBWfm32skiwIAU2iocb6fyC8.jpg b/upload/xvjOBWfm32skiwIAU2iocb6fyC8.jpg new file mode 100644 index 0000000..0aed368 Binary files /dev/null and b/upload/xvjOBWfm32skiwIAU2iocb6fyC8.jpg differ diff --git a/upload/xxx_ted2-mov_12_dcb_74065758.jpg b/upload/xxx_ted2-mov_12_dcb_74065758.jpg new file mode 100644 index 0000000..08658d1 Binary files /dev/null and b/upload/xxx_ted2-mov_12_dcb_74065758.jpg differ diff --git a/upload/y1AthYH1r2j4N4cYn2HdrEGgrnJ.jpg b/upload/y1AthYH1r2j4N4cYn2HdrEGgrnJ.jpg new file mode 100644 index 0000000..115178e Binary files /dev/null and b/upload/y1AthYH1r2j4N4cYn2HdrEGgrnJ.jpg differ diff --git a/upload/y36EJlPGtDnfFwSbggj2fZeyPwi.jpg b/upload/y36EJlPGtDnfFwSbggj2fZeyPwi.jpg new file mode 100644 index 0000000..9c5619d Binary files /dev/null and b/upload/y36EJlPGtDnfFwSbggj2fZeyPwi.jpg differ diff --git a/upload/y5sxkHibv8tfHYMJwWhGKMnRFqK.jpg b/upload/y5sxkHibv8tfHYMJwWhGKMnRFqK.jpg new file mode 100644 index 0000000..382f8f2 Binary files /dev/null and b/upload/y5sxkHibv8tfHYMJwWhGKMnRFqK.jpg differ diff --git a/upload/y6677777.jpg b/upload/y6677777.jpg new file mode 100644 index 0000000..0e43226 Binary files /dev/null and b/upload/y6677777.jpg differ diff --git a/upload/y6Jlhc6D7SCRXLNqXnPO6WbvmIc.jpg b/upload/y6Jlhc6D7SCRXLNqXnPO6WbvmIc.jpg new file mode 100644 index 0000000..234cfc1 Binary files /dev/null and b/upload/y6Jlhc6D7SCRXLNqXnPO6WbvmIc.jpg differ diff --git a/upload/y7KaptiMf8guKSamDe0chv1qvHC.jpg b/upload/y7KaptiMf8guKSamDe0chv1qvHC.jpg new file mode 100644 index 0000000..fb12460 Binary files /dev/null and b/upload/y7KaptiMf8guKSamDe0chv1qvHC.jpg differ diff --git a/upload/yCwTEN623VxFcffcdl4aVrtrAbw.jpg b/upload/yCwTEN623VxFcffcdl4aVrtrAbw.jpg new file mode 100644 index 0000000..0802118 Binary files /dev/null and b/upload/yCwTEN623VxFcffcdl4aVrtrAbw.jpg differ diff --git a/upload/yEHdXXUWHJohOH3UdG6sn09q0bp.jpg b/upload/yEHdXXUWHJohOH3UdG6sn09q0bp.jpg new file mode 100644 index 0000000..00b0eb7 Binary files /dev/null and b/upload/yEHdXXUWHJohOH3UdG6sn09q0bp.jpg differ diff --git a/upload/yGSxMiF0cYuAiyuve5DA6bnWEOI.jpg b/upload/yGSxMiF0cYuAiyuve5DA6bnWEOI.jpg new file mode 100644 index 0000000..ef07abc Binary files /dev/null and b/upload/yGSxMiF0cYuAiyuve5DA6bnWEOI.jpg differ diff --git a/upload/yIztyem16gaks09UQ4jMjR6pyvM.jpg b/upload/yIztyem16gaks09UQ4jMjR6pyvM.jpg new file mode 100644 index 0000000..2efe772 Binary files /dev/null and b/upload/yIztyem16gaks09UQ4jMjR6pyvM.jpg differ diff --git a/upload/yJ8FRmhnVnVNimfRt95UnkVrliB.jpg b/upload/yJ8FRmhnVnVNimfRt95UnkVrliB.jpg new file mode 100644 index 0000000..4be9bde Binary files /dev/null and b/upload/yJ8FRmhnVnVNimfRt95UnkVrliB.jpg differ diff --git a/upload/yN3kFdIExIGlApbCYNTGoyOiSXq.jpg b/upload/yN3kFdIExIGlApbCYNTGoyOiSXq.jpg new file mode 100644 index 0000000..75ed2f7 Binary files /dev/null and b/upload/yN3kFdIExIGlApbCYNTGoyOiSXq.jpg differ diff --git a/upload/yNuvLwemKckYi7EoJLmtkBaJ5QF.jpg b/upload/yNuvLwemKckYi7EoJLmtkBaJ5QF.jpg new file mode 100644 index 0000000..9b4072b Binary files /dev/null and b/upload/yNuvLwemKckYi7EoJLmtkBaJ5QF.jpg differ diff --git a/upload/yNuvLwemKckYi7EoJLmtkBaJ5QF_EK6zfGF.jpg b/upload/yNuvLwemKckYi7EoJLmtkBaJ5QF_EK6zfGF.jpg new file mode 100644 index 0000000..b9d17de Binary files /dev/null and b/upload/yNuvLwemKckYi7EoJLmtkBaJ5QF_EK6zfGF.jpg differ diff --git a/upload/yPzjUnOL1Z8REsWvMzanl2Q6GbH.jpg b/upload/yPzjUnOL1Z8REsWvMzanl2Q6GbH.jpg new file mode 100644 index 0000000..d171c6e Binary files /dev/null and b/upload/yPzjUnOL1Z8REsWvMzanl2Q6GbH.jpg differ diff --git a/upload/yQ4R9WeFlZGPlYS2jeFBuMFhM4K.jpg b/upload/yQ4R9WeFlZGPlYS2jeFBuMFhM4K.jpg new file mode 100644 index 0000000..e0ccbc1 Binary files /dev/null and b/upload/yQ4R9WeFlZGPlYS2jeFBuMFhM4K.jpg differ diff --git a/upload/yRhs945sk4AldGNjgTDshvyBhJj.jpg b/upload/yRhs945sk4AldGNjgTDshvyBhJj.jpg new file mode 100644 index 0000000..c29bee0 Binary files /dev/null and b/upload/yRhs945sk4AldGNjgTDshvyBhJj.jpg differ diff --git a/upload/yUJJzKiAi5akgRYVJVw6nIEYTOi.jpg b/upload/yUJJzKiAi5akgRYVJVw6nIEYTOi.jpg new file mode 100644 index 0000000..28cb26c Binary files /dev/null and b/upload/yUJJzKiAi5akgRYVJVw6nIEYTOi.jpg differ diff --git a/upload/yX19mO9iZuWPxVv1iBd27PKIg43.jpg b/upload/yX19mO9iZuWPxVv1iBd27PKIg43.jpg new file mode 100644 index 0000000..aa2a259 Binary files /dev/null and b/upload/yX19mO9iZuWPxVv1iBd27PKIg43.jpg differ diff --git a/upload/yZym8z8ULH4YcPH0BWalqWhorrA.jpg b/upload/yZym8z8ULH4YcPH0BWalqWhorrA.jpg new file mode 100644 index 0000000..2a4f621 Binary files /dev/null and b/upload/yZym8z8ULH4YcPH0BWalqWhorrA.jpg differ diff --git a/upload/yiW2L1fDiBT7AeWXrykhTNtPrr8.jpg b/upload/yiW2L1fDiBT7AeWXrykhTNtPrr8.jpg new file mode 100644 index 0000000..66f5a46 Binary files /dev/null and b/upload/yiW2L1fDiBT7AeWXrykhTNtPrr8.jpg differ diff --git a/upload/yiW2L1fDiBT7AeWXrykhTNtPrr8_b9I8Kq0.jpg b/upload/yiW2L1fDiBT7AeWXrykhTNtPrr8_b9I8Kq0.jpg new file mode 100644 index 0000000..88b1ab5 Binary files /dev/null and b/upload/yiW2L1fDiBT7AeWXrykhTNtPrr8_b9I8Kq0.jpg differ diff --git a/upload/yjfwNSDljAKsuHwwE34xjlY3tQj.jpg b/upload/yjfwNSDljAKsuHwwE34xjlY3tQj.jpg new file mode 100644 index 0000000..0022052 Binary files /dev/null and b/upload/yjfwNSDljAKsuHwwE34xjlY3tQj.jpg differ diff --git a/upload/yjh_htrt.jpg b/upload/yjh_htrt.jpg new file mode 100644 index 0000000..47751eb Binary files /dev/null and b/upload/yjh_htrt.jpg differ diff --git a/upload/ykUEbfpkf8d0w49pHh0AD2KrT52.jpg b/upload/ykUEbfpkf8d0w49pHh0AD2KrT52.jpg new file mode 100644 index 0000000..b3b9e13 Binary files /dev/null and b/upload/ykUEbfpkf8d0w49pHh0AD2KrT52.jpg differ diff --git a/upload/yka8c9kOHXmJpmFRn01y3lzfB1U.jpg b/upload/yka8c9kOHXmJpmFRn01y3lzfB1U.jpg new file mode 100644 index 0000000..a27a0be Binary files /dev/null and b/upload/yka8c9kOHXmJpmFRn01y3lzfB1U.jpg differ diff --git a/upload/ylP8SS87w0BVLNqbBcaUmKvayKn.jpg b/upload/ylP8SS87w0BVLNqbBcaUmKvayKn.jpg new file mode 100644 index 0000000..c02bf2d Binary files /dev/null and b/upload/ylP8SS87w0BVLNqbBcaUmKvayKn.jpg differ diff --git a/upload/yloR8F4DUYJJiCoouecp1qfAUFK.jpg b/upload/yloR8F4DUYJJiCoouecp1qfAUFK.jpg new file mode 100644 index 0000000..025a248 Binary files /dev/null and b/upload/yloR8F4DUYJJiCoouecp1qfAUFK.jpg differ diff --git a/upload/yly1VJRuGYLZur1IdvRHb8nCwPy.jpg b/upload/yly1VJRuGYLZur1IdvRHb8nCwPy.jpg new file mode 100644 index 0000000..620ace2 Binary files /dev/null and b/upload/yly1VJRuGYLZur1IdvRHb8nCwPy.jpg differ diff --git a/upload/yoAvrbpgVbK4goTdSB57CnhNRE5.jpg b/upload/yoAvrbpgVbK4goTdSB57CnhNRE5.jpg new file mode 100644 index 0000000..40f431c Binary files /dev/null and b/upload/yoAvrbpgVbK4goTdSB57CnhNRE5.jpg differ diff --git a/upload/ysVP9tMW5TiRJ00nNTunl9VCdEd.jpg b/upload/ysVP9tMW5TiRJ00nNTunl9VCdEd.jpg new file mode 100644 index 0000000..23ae73e Binary files /dev/null and b/upload/ysVP9tMW5TiRJ00nNTunl9VCdEd.jpg differ diff --git a/upload/yuzuru-ombrello.jpg b/upload/yuzuru-ombrello.jpg new file mode 100644 index 0000000..05f681d Binary files /dev/null and b/upload/yuzuru-ombrello.jpg differ diff --git a/upload/yvU45lNqKl8rv9GA4EZlrLPszbu.jpg b/upload/yvU45lNqKl8rv9GA4EZlrLPszbu.jpg new file mode 100644 index 0000000..2762f3a Binary files /dev/null and b/upload/yvU45lNqKl8rv9GA4EZlrLPszbu.jpg differ diff --git a/upload/yyjjjjkkkk.jpg b/upload/yyjjjjkkkk.jpg new file mode 100644 index 0000000..8d39e41 Binary files /dev/null and b/upload/yyjjjjkkkk.jpg differ diff --git a/upload/z03tTsM.png b/upload/z03tTsM.png new file mode 100644 index 0000000..16f69d9 Binary files /dev/null and b/upload/z03tTsM.png differ diff --git a/upload/z1btePhD1jIDLbjy5OCnO0KVf5O.jpg b/upload/z1btePhD1jIDLbjy5OCnO0KVf5O.jpg new file mode 100644 index 0000000..dc2c8b8 Binary files /dev/null and b/upload/z1btePhD1jIDLbjy5OCnO0KVf5O.jpg differ diff --git a/upload/z26TZXh7lqrRVCIy1HXTTz3Fu2X.jpg b/upload/z26TZXh7lqrRVCIy1HXTTz3Fu2X.jpg new file mode 100644 index 0000000..3fe23b6 Binary files /dev/null and b/upload/z26TZXh7lqrRVCIy1HXTTz3Fu2X.jpg differ diff --git a/upload/z3K2MQc1v0A5gemTH6BFvusVEBd.jpg b/upload/z3K2MQc1v0A5gemTH6BFvusVEBd.jpg new file mode 100644 index 0000000..85391b3 Binary files /dev/null and b/upload/z3K2MQc1v0A5gemTH6BFvusVEBd.jpg differ diff --git a/upload/z4WFJwY7mZp79525-2.jpg b/upload/z4WFJwY7mZp79525-2.jpg new file mode 100644 index 0000000..08d4f7c Binary files /dev/null and b/upload/z4WFJwY7mZp79525-2.jpg differ diff --git a/upload/z6UoEvtiZC5VRZrX2piM1A82wCj.jpg b/upload/z6UoEvtiZC5VRZrX2piM1A82wCj.jpg new file mode 100644 index 0000000..15c0ef0 Binary files /dev/null and b/upload/z6UoEvtiZC5VRZrX2piM1A82wCj.jpg differ diff --git a/upload/z8CAgpNYibY975QwhbGPFtMLPGi.jpg b/upload/z8CAgpNYibY975QwhbGPFtMLPGi.jpg new file mode 100644 index 0000000..cc48af0 Binary files /dev/null and b/upload/z8CAgpNYibY975QwhbGPFtMLPGi.jpg differ diff --git a/upload/z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg b/upload/z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg new file mode 100644 index 0000000..5ba94c3 Binary files /dev/null and b/upload/z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg differ diff --git a/upload/z9Yp7Tcf4ehKcCiH3aVta4kW5tP.jpg b/upload/z9Yp7Tcf4ehKcCiH3aVta4kW5tP.jpg new file mode 100644 index 0000000..5cc225b Binary files /dev/null and b/upload/z9Yp7Tcf4ehKcCiH3aVta4kW5tP.jpg differ diff --git a/upload/zAQQ21f9xm43W9RM3etrHhbMwW8.jpg b/upload/zAQQ21f9xm43W9RM3etrHhbMwW8.jpg new file mode 100644 index 0000000..eadc8d3 Binary files /dev/null and b/upload/zAQQ21f9xm43W9RM3etrHhbMwW8.jpg differ diff --git a/upload/zHQFqG0e5p9Fwhv5v6XIP9fLtYk.jpg b/upload/zHQFqG0e5p9Fwhv5v6XIP9fLtYk.jpg new file mode 100644 index 0000000..c6d3e32 Binary files /dev/null and b/upload/zHQFqG0e5p9Fwhv5v6XIP9fLtYk.jpg differ diff --git a/upload/zJRVO9G5c7tTfDRvfC13nUDqXdH.jpg b/upload/zJRVO9G5c7tTfDRvfC13nUDqXdH.jpg new file mode 100644 index 0000000..dcfc70c Binary files /dev/null and b/upload/zJRVO9G5c7tTfDRvfC13nUDqXdH.jpg differ diff --git a/upload/zKNYgFoS1pQSKzva02Oks2j3zOC.jpg b/upload/zKNYgFoS1pQSKzva02Oks2j3zOC.jpg new file mode 100644 index 0000000..8d4f9bb Binary files /dev/null and b/upload/zKNYgFoS1pQSKzva02Oks2j3zOC.jpg differ diff --git a/upload/zKNYgFoS1pQSKzva02Oks2j3zOCj.jpg b/upload/zKNYgFoS1pQSKzva02Oks2j3zOCj.jpg new file mode 100644 index 0000000..b77be82 Binary files /dev/null and b/upload/zKNYgFoS1pQSKzva02Oks2j3zOCj.jpg differ diff --git a/upload/zMBZ7K3wb6v278126-1.jpg b/upload/zMBZ7K3wb6v278126-1.jpg new file mode 100644 index 0000000..2fdc28f Binary files /dev/null and b/upload/zMBZ7K3wb6v278126-1.jpg differ diff --git a/upload/zOSpXVcWeuJi2qFbKvifxsGG8lO.jpg b/upload/zOSpXVcWeuJi2qFbKvifxsGG8lO.jpg new file mode 100644 index 0000000..9323703 Binary files /dev/null and b/upload/zOSpXVcWeuJi2qFbKvifxsGG8lO.jpg differ diff --git a/upload/zPDIvk1zJlw9vjOM2C6fv0q3qWN.jpg b/upload/zPDIvk1zJlw9vjOM2C6fv0q3qWN.jpg new file mode 100644 index 0000000..242f908 Binary files /dev/null and b/upload/zPDIvk1zJlw9vjOM2C6fv0q3qWN.jpg differ diff --git a/upload/zQI8yxl61JTpjCB3MrTbcQBOT82.jpg b/upload/zQI8yxl61JTpjCB3MrTbcQBOT82.jpg new file mode 100644 index 0000000..78cff29 Binary files /dev/null and b/upload/zQI8yxl61JTpjCB3MrTbcQBOT82.jpg differ diff --git a/upload/zRtBdIe0UoDEFST3N5bXML6SAcI.jpg b/upload/zRtBdIe0UoDEFST3N5bXML6SAcI.jpg new file mode 100644 index 0000000..3ce5307 Binary files /dev/null and b/upload/zRtBdIe0UoDEFST3N5bXML6SAcI.jpg differ diff --git a/upload/zUdAVlmu0qfSklahBm0VSt9AGzJ.jpg b/upload/zUdAVlmu0qfSklahBm0VSt9AGzJ.jpg new file mode 100644 index 0000000..70a6575 Binary files /dev/null and b/upload/zUdAVlmu0qfSklahBm0VSt9AGzJ.jpg differ diff --git a/upload/zWGCll0p3x34elDzNEyOKKzT3Fq.jpg b/upload/zWGCll0p3x34elDzNEyOKKzT3Fq.jpg new file mode 100644 index 0000000..bc08a02 Binary files /dev/null and b/upload/zWGCll0p3x34elDzNEyOKKzT3Fq.jpg differ diff --git a/upload/zXwFJMwvQcJFitP9GcHZvHAHGe8.jpg b/upload/zXwFJMwvQcJFitP9GcHZvHAHGe8.jpg new file mode 100644 index 0000000..a8657e6 Binary files /dev/null and b/upload/zXwFJMwvQcJFitP9GcHZvHAHGe8.jpg differ diff --git a/upload/zXwFJMwvQcJFitP9GcHZvHAHGe8_wncokLf.jpg b/upload/zXwFJMwvQcJFitP9GcHZvHAHGe8_wncokLf.jpg new file mode 100644 index 0000000..b57499b Binary files /dev/null and b/upload/zXwFJMwvQcJFitP9GcHZvHAHGe8_wncokLf.jpg differ diff --git a/upload/zYHVgmtSHzIVcVYwZQCVxCgnaqb.jpg b/upload/zYHVgmtSHzIVcVYwZQCVxCgnaqb.jpg new file mode 100644 index 0000000..e154dea Binary files /dev/null and b/upload/zYHVgmtSHzIVcVYwZQCVxCgnaqb.jpg differ diff --git a/upload/zZZ1FDl5FPClZ9OnMrlaPA4Iuxv.jpg b/upload/zZZ1FDl5FPClZ9OnMrlaPA4Iuxv.jpg new file mode 100644 index 0000000..f787fcf Binary files /dev/null and b/upload/zZZ1FDl5FPClZ9OnMrlaPA4Iuxv.jpg differ diff --git a/upload/zcHKmM3whl5roHznohdolxny3Js.jpg b/upload/zcHKmM3whl5roHznohdolxny3Js.jpg new file mode 100644 index 0000000..f2e1842 Binary files /dev/null and b/upload/zcHKmM3whl5roHznohdolxny3Js.jpg differ diff --git a/upload/zctgw2KcBiMRHtE9RP0MZo8YXZQ.jpg b/upload/zctgw2KcBiMRHtE9RP0MZo8YXZQ.jpg new file mode 100644 index 0000000..1f56e26 Binary files /dev/null and b/upload/zctgw2KcBiMRHtE9RP0MZo8YXZQ.jpg differ diff --git a/upload/zeaUw2DwrS40wGB3oIZQjsCEbAF.jpg b/upload/zeaUw2DwrS40wGB3oIZQjsCEbAF.jpg new file mode 100644 index 0000000..285ffca Binary files /dev/null and b/upload/zeaUw2DwrS40wGB3oIZQjsCEbAF.jpg differ diff --git a/upload/zgLadRY6f8Ydgf9sKpiq3tPYBUM.jpg b/upload/zgLadRY6f8Ydgf9sKpiq3tPYBUM.jpg new file mode 100644 index 0000000..4ab3801 Binary files /dev/null and b/upload/zgLadRY6f8Ydgf9sKpiq3tPYBUM.jpg differ diff --git a/upload/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg b/upload/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg new file mode 100644 index 0000000..51cb1c1 Binary files /dev/null and b/upload/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg differ diff --git a/upload/zieHVE3MhOXaZyjjZVzQPWFLBUF.jpg b/upload/zieHVE3MhOXaZyjjZVzQPWFLBUF.jpg new file mode 100644 index 0000000..0ccdb86 Binary files /dev/null and b/upload/zieHVE3MhOXaZyjjZVzQPWFLBUF.jpg differ diff --git a/upload/zijogjvXlRW248742-1.jpg b/upload/zijogjvXlRW248742-1.jpg new file mode 100644 index 0000000..154ca8d Binary files /dev/null and b/upload/zijogjvXlRW248742-1.jpg differ diff --git a/upload/zjvsIZLrVrgzXwFJMwvQcJFitP9GcHZvHAHGe8.jpg b/upload/zjvsIZLrVrgzXwFJMwvQcJFitP9GcHZvHAHGe8.jpg new file mode 100644 index 0000000..a8657e6 Binary files /dev/null and b/upload/zjvsIZLrVrgzXwFJMwvQcJFitP9GcHZvHAHGe8.jpg differ diff --git a/upload/zlYJ8ewI8iqXr6pjizbteYRBQtR.jpg b/upload/zlYJ8ewI8iqXr6pjizbteYRBQtR.jpg new file mode 100644 index 0000000..00983b6 Binary files /dev/null and b/upload/zlYJ8ewI8iqXr6pjizbteYRBQtR.jpg differ diff --git a/upload/zm2TdlAESUrkSIV28eWJzuoo8fL.jpg b/upload/zm2TdlAESUrkSIV28eWJzuoo8fL.jpg new file mode 100644 index 0000000..d7adeba Binary files /dev/null and b/upload/zm2TdlAESUrkSIV28eWJzuoo8fL.jpg differ diff --git a/upload/zo1X8fCK0E6EQIH5mzkLqNwgXHz.jpg b/upload/zo1X8fCK0E6EQIH5mzkLqNwgXHz.jpg new file mode 100644 index 0000000..5eb257e Binary files /dev/null and b/upload/zo1X8fCK0E6EQIH5mzkLqNwgXHz.jpg differ diff --git a/upload/zqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg b/upload/zqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg new file mode 100644 index 0000000..722c5bd Binary files /dev/null and b/upload/zqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg differ diff --git a/upload/zra4YfbCzrmoMmJxkYP9rrOAkih.jpg b/upload/zra4YfbCzrmoMmJxkYP9rrOAkih.jpg new file mode 100644 index 0000000..a008c17 Binary files /dev/null and b/upload/zra4YfbCzrmoMmJxkYP9rrOAkih.jpg differ diff --git a/upload/zt5kihG59UaOYyGcXnBz3HwQxXl.jpg b/upload/zt5kihG59UaOYyGcXnBz3HwQxXl.jpg new file mode 100644 index 0000000..ff5b4ee Binary files /dev/null and b/upload/zt5kihG59UaOYyGcXnBz3HwQxXl.jpg differ diff --git a/upload/zuYEvft5fuzBDOeq4ClYpiu9LlO.jpg b/upload/zuYEvft5fuzBDOeq4ClYpiu9LlO.jpg new file mode 100644 index 0000000..39b44f2 Binary files /dev/null and b/upload/zuYEvft5fuzBDOeq4ClYpiu9LlO.jpg differ diff --git a/upload/zzrX89yRutVifa7kekLjWO39jmB.jpg b/upload/zzrX89yRutVifa7kekLjWO39jmB.jpg new file mode 100644 index 0000000..6ab729e Binary files /dev/null and b/upload/zzrX89yRutVifa7kekLjWO39jmB.jpg differ diff --git a/upload/zzy7Ap1PhXtvyfG7me3iqaflo12.jpg b/upload/zzy7Ap1PhXtvyfG7me3iqaflo12.jpg new file mode 100644 index 0000000..0b78664 Binary files /dev/null and b/upload/zzy7Ap1PhXtvyfG7me3iqaflo12.jpg differ diff --git a/utils/__init__.py b/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/utils/__pycache__/__init__.cpython-37.pyc b/utils/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..b7a6447 Binary files /dev/null and b/utils/__pycache__/__init__.cpython-37.pyc differ diff --git a/utils/__pycache__/__init__.cpython-38.pyc b/utils/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000..c2dbc81 Binary files /dev/null and b/utils/__pycache__/__init__.cpython-38.pyc differ diff --git a/utils/__pycache__/download_image.cpython-37.pyc b/utils/__pycache__/download_image.cpython-37.pyc new file mode 100644 index 0000000..77490e1 Binary files /dev/null and b/utils/__pycache__/download_image.cpython-37.pyc differ diff --git a/utils/__pycache__/download_image.cpython-38.pyc b/utils/__pycache__/download_image.cpython-38.pyc new file mode 100644 index 0000000..e107d69 Binary files /dev/null and b/utils/__pycache__/download_image.cpython-38.pyc differ diff --git a/utils/__pycache__/english_genres_to_italian.cpython-37.pyc b/utils/__pycache__/english_genres_to_italian.cpython-37.pyc new file mode 100644 index 0000000..65a6301 Binary files /dev/null and b/utils/__pycache__/english_genres_to_italian.cpython-37.pyc differ diff --git a/utils/__pycache__/english_genres_to_italian.cpython-38.pyc b/utils/__pycache__/english_genres_to_italian.cpython-38.pyc new file mode 100644 index 0000000..3c0086e Binary files /dev/null and b/utils/__pycache__/english_genres_to_italian.cpython-38.pyc differ diff --git a/utils/__pycache__/profanity_filter.cpython-37.pyc b/utils/__pycache__/profanity_filter.cpython-37.pyc new file mode 100644 index 0000000..d1d0fd6 Binary files /dev/null and b/utils/__pycache__/profanity_filter.cpython-37.pyc differ diff --git a/utils/__pycache__/profanity_filter.cpython-38.pyc b/utils/__pycache__/profanity_filter.cpython-38.pyc new file mode 100644 index 0000000..a93af2d Binary files /dev/null and b/utils/__pycache__/profanity_filter.cpython-38.pyc differ diff --git a/utils/__pycache__/random_media.cpython-37.pyc b/utils/__pycache__/random_media.cpython-37.pyc new file mode 100644 index 0000000..a2d7828 Binary files /dev/null and b/utils/__pycache__/random_media.cpython-37.pyc differ diff --git a/utils/__pycache__/random_media.cpython-38.pyc b/utils/__pycache__/random_media.cpython-38.pyc new file mode 100644 index 0000000..af2ab68 Binary files /dev/null and b/utils/__pycache__/random_media.cpython-38.pyc differ diff --git a/utils/__pycache__/thetvdbapi.cpython-37.pyc b/utils/__pycache__/thetvdbapi.cpython-37.pyc new file mode 100644 index 0000000..03944c5 Binary files /dev/null and b/utils/__pycache__/thetvdbapi.cpython-37.pyc differ diff --git a/utils/__pycache__/thetvdbapi.cpython-38.pyc b/utils/__pycache__/thetvdbapi.cpython-38.pyc new file mode 100644 index 0000000..fe08611 Binary files /dev/null and b/utils/__pycache__/thetvdbapi.cpython-38.pyc differ diff --git a/utils/__pycache__/utils.cpython-37.pyc b/utils/__pycache__/utils.cpython-37.pyc new file mode 100644 index 0000000..ab61773 Binary files /dev/null and b/utils/__pycache__/utils.cpython-37.pyc differ diff --git a/utils/__pycache__/utils.cpython-38.pyc b/utils/__pycache__/utils.cpython-38.pyc new file mode 100644 index 0000000..8156dd0 Binary files /dev/null and b/utils/__pycache__/utils.cpython-38.pyc differ diff --git a/utils/download_image.py b/utils/download_image.py new file mode 100644 index 0000000..bf40213 --- /dev/null +++ b/utils/download_image.py @@ -0,0 +1,31 @@ +import requests +from os import path +from pathlib import Path +import string +import random + +def get_image(image_url): + """ + Get image based on url. + :return: Image name if everything OK, False otherwise + """ + random_image_name = string.ascii_lowercase + string.ascii_uppercase + string.digits + base_upload_path = Path(path.dirname(path.realpath(__file__))) + upload_path = base_upload_path.parent / 'upload' + + image_name = path.split(image_url)[1] + try: + image = requests.get(image_url) + except OSError: # Little too wide, but work OK, no additional imports needed. Catch all conection problems + return False + if image.status_code == 200: # we could have retrieved error page + base_dir = path.join(path.dirname(path.realpath(__file__)), upload_path) + print(base_dir) # Use your own path or "" to use current working directory. Folder must exist. + if path.isfile(path.join(base_dir, image_name)): + image_name = "".join(random.choice(random_image_name) for _ in range(11)) + path.split(image_url)[1] + with open(path.join(base_dir, image_name), "wb") as f: + f.write(image.content) + else: + with open(path.join(base_dir, image_name), "wb") as f: + f.write(image.content) + return image_name \ No newline at end of file diff --git a/utils/english_genres_to_italian.py b/utils/english_genres_to_italian.py new file mode 100644 index 0000000..68246fa --- /dev/null +++ b/utils/english_genres_to_italian.py @@ -0,0 +1,48 @@ +""" +Script che permette di convertire in Italiano, la lista dei generi di un Anime o SerieTV ottenuti tramite TVDB +""" + + +def englishgenres(generi): + lista_generi = { + 'Action': 'Azione', + 'Adventure': 'Avventura', + 'Comedy': 'Commedia', + 'Drama': 'Drammatico', + 'Animation': 'Animazione', + 'Anime': 'Anime', + 'Crime': 'Crime', + 'Documentary': 'Documentario', + 'Family': 'Famiglia', + 'Fantasy': 'Fantastico', + 'History': 'Storico', + 'Horror': 'Horror', + 'Indie': 'Indie', + 'War': 'Guerra', + 'Martial Arts': 'Arti Marziali', + 'Mini-Series': 'Mini-Serie', + 'Home and Garden': 'Casa e Giardino', + 'Reality': 'Reality', + 'Romance': 'Romantico', + 'Podcast': 'Podcast', + 'Mystery': 'Mistero', + 'Talk Show': 'Talk Show', + 'Musical': 'Musicale', + 'Western': 'Western', + 'Thriller': 'Thriller', + 'Soap': 'Soap Opera', + 'Suspense': 'Suspense', + 'Food': 'Cibo', + 'Children': 'Bambini', + 'News': 'News', + 'Sport': 'Sport', + 'Travel': 'Viaggi', + 'Game Show': 'Game Show', + 'Special Interest': 'Interesse Speciale', + 'Science Fiction': 'Fantascienza', + } + lista_generi_italiano = [] + for genres_show in lista_generi: + if genres_show in generi: + lista_generi_italiano.append(lista_generi.get(genres_show)) + return lista_generi_italiano \ No newline at end of file diff --git a/utils/profanity-words.txt b/utils/profanity-words.txt new file mode 100644 index 0000000..e4236ce --- /dev/null +++ b/utils/profanity-words.txt @@ -0,0 +1,460 @@ +abcdiet +affanculo +anabootcampdiet +bagasce +bagascia +bagascione +baldracca +baldraccacce +baldraccaccia +baldracche +baldraccona +baldraccone +bariledimerda +bastardacce +bastardacci +bastardaccia +bastardaccio +bastardamadonna +bastarde +bastardi +bastardo +bastardona +bastardone +bastardoni +battona +battone +bbwpit +bocchinara +bocchinare +bocchinari +bocchinaro +budellodidio +bustadipiscio +cacaminchia +cacare +cacasotto +cagacazzo +cagaminchia +cagare +cagasotto +canacciodidio +canagliadidio +caned'allah +caned'eva +canedidio +cazzacci +cazzaccio +cazzata +cazzate +cazzetti +cazzetto +cazzi +cazzissimo +cazzo +cazzona +cazzone +cazzoni +cazzuta +cazzute +cazzuti +cazzutissimo +cazzuto +cesso +checca +checche +chiavare +chiavata +chiavate +chiavatona +chiavatone +ciucciamelo +ciucciapalle +cogliona +coglionaggine +coglionare +coglionata +coglionate +coglionatore +coglionatrice +coglionatura +coglionature +coglionazzi +coglionazzo +coglioncelli +coglioncello +coglioncini +coglioncino +coglione +coglioneria +coglionerie +coglioni +coprofago +coprofilo +cornutoilpapa +credoana +cretinetti +cristod'undio +cristodecapitato +cristoincroce +culattone +culattoni +culi +culo +culona +culone +deficiente +dietaabc +dietaana +dietaanabootcamp +dietabootcamp +dietadell'abc +diobastardo +diobestia +diobestiazza +dioboia +diocan +diocane +diocannaiolo +diocapra +diocoglione +diocomunista +diocrasto +diocristo +dioculattone +diofarabutto +diofascista +diofinocchio +dioflagellato +dioimpestato +dioimpiccato +dioladro +diolebbroso +diolobotomizzato +diolurido +diomaiale +diomaledetto +diomerda +diominchione +dionegro +dioporco +diopoveraccio +diopovero +diorotto +diorottoinculo +diorutto +diosbudellato +dioschifoso +dioseppellito +dioserpente +diostracane +diostramerda +diostronzo +diosventrato +dioverme +facciadaculo +facciadimerda +fanculo +fica +ficata +ficate +fichetta +fichette +fichetti +fichetto +ficona +ficone +figa +figata +figate +fighe +fighetta +fighette +fighetti +fighetto +figliadicane +figliadimignotta +figliadiputtana +figliaditroia +figlidicani +figlidimignotta +figlidiputtana +figliditroia +figliedicani +figliedimignotta +figliediputtana +figlieditroia +figliodicane +figliodimignotta +figliodiputtana +figlioditroia +figona +figone +figoni +fottere +fottiti +fottuta +fottute +fottuti +fottutissima +fottutissime +fottutissimi +fottutissimo +fottuto +fregna +frocetto +froci +frociara +frociaro +frociarola +frociarolo +frocio +frocione +frocioni +frocissimo +gesùcristaccio +gesùesorcizzato +gesùhandicappato +gesùimpasticcato +gesùmalandato +gesùradioattivo +gesùsieropositivo +gesùstordito +gesùzozzo +incazzare +incazzata +incazzate +incazzati +incazzatissima +incazzatissime +incazzatissimi +incazzatissimo +incazzato +inculare +inculata +inculate +infrociato +leccacazzi +leccaculi +leccaculo +leccafica +leccafiga +leccafighe +leccapalle +madonnaassassinata +madonnacane +madonnaimpestata +madonnaisterica +madonnalurida +madonnamaiala +madonnamongoloide +madonnanegra +madonnaputtana +madonnaschiava +madonnastregaccia +madonnasudicia +madonnasuicida +madonnasurgelata +madonnatroia +madonnaviolentata +mannaggiacristo +mannaggiadio +mannaggiailbattesimo +mannaggiailclero +mannaggiaisanti +mannaggial'arcangelo +mannaggialabibbia +mannaggialadiocesi +mannaggialamadonna +mannaggialaputtana +mannaggiapadrepio +mannaggiasangiuseppe +merda +merdacce +merdaccia +merdamalcagata +merdata +merdate +merde +merdina +merdine +merdolina +merdoline +merdona +merdone +merdosa +merdose +merdosi +merdoso +mezzasega +mezzeseghe +mignotta +mignotte +minchia +minchiadura +minchiaduro +minchiata +minchiate +minchie +minchione +minchioni +mona +mongoloide +negra +negraccia +negraccio +negro +negrona +negrone +nerchia +patonza +patonze +pigliacazzi +pisciare +pisciasotto +pisciata +pisciatina +pisciato +pisciatona +piscio +pisciona +piscione +piscioni +pompinara +pompinare +pompini +pompino +porcamadonna +porcaputtana +porcodidio +porcodio +porcoilclero +porcoilsignore +pro-ana +pro-anoressia +pro-bulimia +pro-ed +pro-ednos +pro-mia +proana +proanoressia +probulimia +proed +proednos +promia +pugnetta +pugnette +puppa +puppamela +puppamelo +puppare +puppe +puttana +puttanacce +puttanaccia +puttanaeva +puttanamadonna +puttanata +puttanate +puttane +puttanella +puttanelle +puttaniere +puttanieri +puttano +puttanona +puttanone +raspone +rasponi +ricchione +ricchioni +rincoglionito +rizzacazzi +rompicazzi +rompicazzo +rompicoglioni +rottinculo +sbocchinare +sbocchinato +sbocchiniamolo +sborra +sborrare +sborrata +sborrate +sborrato +sborratona +sburra +sburrare +scassacazzo +scassacoglioni +scassaminchia +scazzare +scazzata +scazzate +scazzati +scazzato +scopare +scopata +scopate +segaiolo +signorebastardo +spompinare +spompinata +spompinato +spompiniamolo +stronzata +stronzate +stronzetta +stronzette +stronzetti +stronzetto +stronzina +stronzine +stronzini +stronzino +stronzo +stronzoli +stronzolo +stronzomalcagato +stronzona +stronzone +stronzoni +succhiacazzi +succhiamelo +succhiaminchia +succhiapalle +tarzanelli +tarzanello +tetta +tette +tettina +tettine +tettona +tettone +thinspiration +thinspo +troia +troiacce +troiaccia +troiamadonna +troie +troietta +troiette +troio +troiona +troioncella +troioncelle +troione +trombare +trombata +trombatona +vaccamadonna +vaffanculo +zinne +zoccola +TROIA +Troia +Porco Dio +Dio Porco +Signore Maledetto +LORDCHANNEL diff --git a/utils/profanity_filter.py b/utils/profanity_filter.py new file mode 100644 index 0000000..c91ce37 --- /dev/null +++ b/utils/profanity_filter.py @@ -0,0 +1,12 @@ +import os + +def profanity_words(): + profanity_list = [] + __location__ = os.path.realpath( + os.path.join(os.getcwd(), os.path.dirname(__file__))) + file = __location__ + '/profanity-words.txt' + with open(file,"r") as profanity: + for riga in profanity: + riga = riga.replace("\r", "").replace("\n", "") + profanity_list.append(riga) + return profanity_list \ No newline at end of file diff --git a/utils/random_media.py b/utils/random_media.py new file mode 100644 index 0000000..455abc9 --- /dev/null +++ b/utils/random_media.py @@ -0,0 +1,19 @@ +from Film.models import Film +from SerieTV.models import SerieTV +from Anime.models import Anime +import random + +def random_media(): + film = Film.objects.all() + serietv = SerieTV.objects.all() + anime = Anime.objects.all() + if film.count() >= 8 and serietv.count() >= 8 and anime.count() >= 8: + random_film = random.sample(list(film),8) + random_serietv = random.sample(list(serietv),8) + random_anime = random.sample(list(anime),8) + else: + random_film = random.sample(list(film),4) + random_serietv = random.sample(list(serietv),4) + random_anime = random.sample(list(anime),4) + random_media_context = {"random_film":random_film,"random_serietv":random_serietv,"random_anime":random_anime} + return random_media_context diff --git a/utils/thetvdbapi.py b/utils/thetvdbapi.py new file mode 100644 index 0000000..ee65407 --- /dev/null +++ b/utils/thetvdbapi.py @@ -0,0 +1,107 @@ +import requests + + +""" + +Dichiarazione della chiave API di TheTVDB e di tutti gli endpoint + +Documentazione : https://api.thetvdb.com/swagger + +""" + +API_KEY = "4ce19cf20c1a9988b9574597c17d00c0" +USER_KEY = "8SWHSW1X4P7TFUPC" +LOGIN_ENDPOINT = "https://api.thetvdb.com/login" +REFRESH_TOKEN = "https://api.thetvdb.com/refresh_token" +SEARCH_ENDPOINT = "https://api.thetvdb.com/search/series" +SERIES_ENDPOINT = "https://api.thetvdb.com/series/" +USERNAME = "MickSlash" +LANGUAGE = "it" +IMAGE_ENDPOINT = "https://artworks.thetvdb.com" + + +def image_Endpoint(): + return IMAGE_ENDPOINT + + + +# Definizione Funzione per trovare la Serie TV +def search_tv_show(serie_tv): + try: + r_token = get_token(token) + headers = {"Authorization": "Bearer " + r_token,"Accept-Language":LANGUAGE} + params = {"name":serie_tv} + get_tv_show = requests.get(SEARCH_ENDPOINT,headers=headers,params=params) + if get_tv_show.ok: + # print(get_tv_show.json()) + data_tv_show = get_tv_show.json() + return data_tv_show + # titolo = data_tv_show['data'][0]['seriesName'] + # id = data_tv_show['data'][0]['id'] + # print(titolo) + else: + print("Status Code ",get_tv_show.status_code) + except: + data_tv_show = None + return data_tv_show + +# Ottengo le informazioni sulla Serie TV +def get_tvshow_info(data_tv_show): + try: + r_token = get_token(token) + headers = {"Authorization": "Bearer " + r_token,"Accept-Language":LANGUAGE} + id = str(data_tv_show['data'][0]['id']) + tv_info = requests.get(SERIES_ENDPOINT + id,headers=headers) + if tv_info.ok: + EPISODES_ENDPOINT = f"https://api.thetvdb.com/series/{id}/episodes/query?page=1" + tv_episodes = requests.get(EPISODES_ENDPOINT,headers=headers) + data = tv_info.json() + if tv_episodes.ok: + episodes_data = tv_episodes.json() + return data,episodes_data + # stagioni = data_tvinfo['data']['airedSeasons'] + # print(stagioni) + else: + print("Status Code ",tv_info.status_code) + except: + data = None + episodes_data = None + return data,episodes_data + + +# Ottengo il token e lo aggiorno ogni 24 ore per estenderlo +def get_token(token): + try: + headers = {"Authorization": "Bearer " + token} + get_refresh_token = requests.get(REFRESH_TOKEN,headers=headers) + if get_refresh_token.ok: + token_data = get_refresh_token.json() + new_token = token_data['token'] + return new_token + # print(f"New Token : {new_token}") + else: + print("Errore") + print(f"{get_refresh_token.content}") + except: + new_token = None + return new_token + +def login(API_KEY,USER_KEY,LOGIN_ENDPOINT,USERNAME): + try: + params = {"apikey":API_KEY,"userkey":USER_KEY,"username":USERNAME} + response = requests.post(LOGIN_ENDPOINT,json=params) + if response.ok: + data = response.json() + token = data['token'] + return token + else: + print(f"Status Code {response.status_code}") + except: + token = None + return token + +# serie_tv = "The Shield" +token = login(API_KEY,USER_KEY,LOGIN_ENDPOINT,USERNAME) +get_token(token) +# data_tv_show = search_tv_show(serie_tv) +# get_tvshow_info(data_tv_show) \ No newline at end of file diff --git a/utils/utils.py b/utils/utils.py new file mode 100644 index 0000000..7dda55f --- /dev/null +++ b/utils/utils.py @@ -0,0 +1,76 @@ +import requests +import re + +api_key = "7aa61de81426820176ddbd64dca0485f" +endpoint = "https://api.themoviedb.org/3/search/movie?" +configuration_url = "https://api.themoviedb.org/3/configuration?" +genre_url = "https://api.themoviedb.org/3/genre/movie/list?" +# config_data = get_configuration(configuration_url,api_key) +# genre_data = get_genre(genre_url,api_key) +# get_film(endpoint,film,api_key,config_data,genre_data) + + + + +def get_film(endpoint,film,api_key,config_data,genre_data): + language = "it-IT" + payloads = {"api_key":api_key,"language":language,"query":film} + response = requests.get(endpoint, params=payloads) + if response.ok: + data = response.json() + # contatore = 0 + nome_film = data["results"][0]["title"] + nome_originale = data["results"][0]["original_title"] + descrizione_film = data["results"][0]["overview"] + poster_path = data["results"][0]["poster_path"] + background_path = data["results"][0]["backdrop_path"] + genres = data["results"][0]["genre_ids"] + release_date = data["results"][0]["release_date"] + data_rilascio = re.search('(^.{4})',release_date) + year = data_rilascio.group(1) + # for films in data["results"]: + # contatore += 1 + # print(contatore,films["title"]) + # print("Descrizione :") + # print(films["overview"]) + img_base_secure_url = config_data["images"]["secure_base_url"] + poster_size = config_data["images"]["poster_sizes"][6] + poster_image = img_base_secure_url + poster_size + poster_path + background_size = config_data["images"]["backdrop_sizes"][3] + background_image = img_base_secure_url + background_size + background_path + # print(data) + # lista_generi_film = [] + lista_generi_film = [] + for generi in genre_data['genres']: + # print(generi['name']) + id_generi = generi['id'] + if id_generi in genres: + lista_generi_film.append(generi['name']) + # print(genres) + return nome_film,descrizione_film,lista_generi_film,poster_image,background_image,year + else: + print("Status Code : ",response.status_code) + print("Response Content : ",response.content) + raise Exception("C'é stato un errore nella Funzione Film!") + + + +def get_configuration(configuration_url,api_key): + api_configuration = {"api_key":api_key} + response = requests.get(configuration_url,params=api_configuration) + if response.ok: + config_data = response.json() + # print(config_data) + return config_data + +def get_genre(genre_url,api_key): + language = "it-IT" + genre_api = {"api_key":api_key,"language":language} + response = requests.get(genre_url,params=genre_api) + if response.ok: + genre_data = response.json() + # print(genre_data) + return genre_data + +config_data = get_configuration(configuration_url,api_key) +genre_data = get_genre(genre_url,api_key) \ No newline at end of file