summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorus2021-02-11 22:57:49 +0100
committerhorus2021-02-11 22:57:49 +0100
commit87b5264cdc451f4268722e670a6f77d8e3d1c334 (patch)
treec3e3c3df1fff829af4a7af13fb61571824fba556
parentbfcf02cff93675eb6803ed0924dee7d5f04488e4 (diff)
downloadcurious-87b5264cdc451f4268722e670a6f77d8e3d1c334.tar.gz
Upgrade to Laravel 8.0 and generate sitemap.xml.
-rw-r--r--app/Console/Commands/GenerateSitemap.php52
-rw-r--r--app/Providers/AppServiceProvider.php3
-rw-r--r--composer.json23
-rw-r--r--composer.lock4733
-rw-r--r--config/sitemap.php57
-rw-r--r--database/seeder/DatabaseSeeder.php (renamed from database/seeds/DatabaseSeeder.php)2
-rw-r--r--public/robots.txt3
-rw-r--r--public/sitemap.xml11547
8 files changed, 15312 insertions, 1108 deletions
diff --git a/app/Console/Commands/GenerateSitemap.php b/app/Console/Commands/GenerateSitemap.php
new file mode 100644
index 0000000..46bb0ac
--- /dev/null
+++ b/app/Console/Commands/GenerateSitemap.php
@@ -0,0 +1,52 @@
+<?php
+
+namespace App\Console\Commands;
+
+use Illuminate\Console\Command;
+use Spatie\Sitemap\SitemapGenerator;
+use Psr\Http\Message\UriInterface;
+
+class GenerateSitemap extends Command
+{
+ /**
+ * The name and signature of the console command.
+ *
+ * @var string
+ */
+ protected $signature = 'sitemap:generate';
+
+ /**
+ * The console command description.
+ *
+ * @var string
+ */
+ protected $description = 'Generate the sitemap';
+
+ /**
+ * Create a new command instance.
+ *
+ * @return void
+ */
+ public function __construct()
+ {
+ parent::__construct();
+ }
+
+ /**
+ * Execute the console command.
+ *
+ * @return int
+ */
+ public function handle()
+ {
+ // modify this to your own needs
+ SitemapGenerator::create(config('app.url'))
+ ->shouldCrawl(function (UriInterface $url) {
+ /**
+ * Prevent the crawler from crawling the random pages.
+ */
+ return strpos($url->getPath(), '/random') === false;
+ })
+ ->writeToFile(public_path('sitemap.xml'));
+ }
+}
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
index ee8ca5b..141751a 100644
--- a/app/Providers/AppServiceProvider.php
+++ b/app/Providers/AppServiceProvider.php
@@ -3,6 +3,7 @@
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
+use Illuminate\Pagination\Paginator;
class AppServiceProvider extends ServiceProvider
{
@@ -23,6 +24,6 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot()
{
- //
+ Paginator::useBootstrap();
}
}
diff --git a/composer.json b/composer.json
index 6952835..9cd4d05 100644
--- a/composer.json
+++ b/composer.json
@@ -11,18 +11,19 @@
"php": "^7.2.5",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^1.0",
- "guzzlehttp/guzzle": "^6.3",
- "laravel/framework": "^7.0",
+ "guzzlehttp/guzzle": "^7.0.1",
+ "laravel/framework": "^8.0",
"laravel/tinker": "^2.0",
- "laravelium/feed": "^7.0"
+ "laravelium/feed": "^8.0",
+ "spatie/laravel-sitemap": "^5.9"
},
"require-dev": {
- "facade/ignition": "^2.0",
+ "facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.9.1",
- "laravel/ui": "^2.0",
+ "laravel/ui": "^3.0",
"mockery/mockery": "^1.3.1",
- "nunomaduro/collision": "^4.1",
- "phpunit/phpunit": "^8.5"
+ "nunomaduro/collision": "^5.0",
+ "phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
@@ -36,12 +37,10 @@
},
"autoload": {
"psr-4": {
- "App\\": "app/"
+ "App\\": "app/",
+ "Database\\Factories\\": "database/factories/",
+ "Database\\Seeders\\": "database/seeders/"
},
- "classmap": [
- "database/seeds",
- "database/factories"
- ],
"files": [
"app/Libraries/Helper.php"
]
diff --git a/composer.lock b/composer.lock
index 837d032..3d905c8 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1,10 +1,10 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "d5d6501f3e93b2aa424fb9448c79439d",
+ "content-hash": "3e33b00d6e84ff0665ade1106772352d",
"packages": [
{
"name": "asm89/stack-cors",
@@ -56,9 +56,69 @@
"cors",
"stack"
],
+ "support": {
+ "issues": "https://github.com/asm89/stack-cors/issues",
+ "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
+ },
"time": "2019-12-24T22:41:47+00:00"
},
{
+ "name": "brick/math",
+ "version": "0.9.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/brick/math.git",
+ "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
+ "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.2",
+ "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
+ "vimeo/psalm": "4.3.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Brick\\Math\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Arbitrary-precision arithmetic library",
+ "keywords": [
+ "Arbitrary-precision",
+ "BigInteger",
+ "BigRational",
+ "arithmetic",
+ "bigdecimal",
+ "bignum",
+ "brick",
+ "math"
+ ],
+ "support": {
+ "issues": "https://github.com/brick/math/issues",
+ "source": "https://github.com/brick/math/tree/0.9.2"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/brick/math",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-20T22:51:39+00:00"
+ },
+ {
"name": "dnoegel/php-xdg-base-dir",
"version": "v0.1.1",
"source": {
@@ -89,37 +149,45 @@
"MIT"
],
"description": "implementation of xdg base directory specification for php",
+ "support": {
+ "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
+ "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
+ },
"time": "2019-12-04T15:06:13+00:00"
},
{
"name": "doctrine/inflector",
- "version": "1.3.1",
+ "version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
+ "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
- "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
+ "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^6.2"
+ "doctrine/coding-standard": "^7.0",
+ "phpstan/phpstan": "^0.11",
+ "phpstan/phpstan-phpunit": "^0.11",
+ "phpstan/phpstan-strict-rules": "^0.11",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
+ "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -148,32 +216,56 @@
"email": "schmittjoh@gmail.com"
}
],
- "description": "Common String Manipulations with regard to casing and singular/plural rules.",
- "homepage": "http://www.doctrine-project.org",
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
"keywords": [
"inflection",
- "pluralize",
- "singularize",
- "string"
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
],
- "time": "2019-10-30T19:59:35+00:00"
+ "support": {
+ "issues": "https://github.com/doctrine/inflector/issues",
+ "source": "https://github.com/doctrine/inflector/tree/2.0.x"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-05-29T15:13:26+00:00"
},
{
"name": "doctrine/lexer",
- "version": "1.2.0",
+ "version": "1.2.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/lexer.git",
- "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
+ "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
- "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
+ "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
"shasum": ""
},
"require": {
- "php": "^7.2"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
@@ -218,34 +310,54 @@
"parser",
"php"
],
- "time": "2019-10-30T14:39:59+00:00"
+ "support": {
+ "issues": "https://github.com/doctrine/lexer/issues",
+ "source": "https://github.com/doctrine/lexer/tree/1.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-05-25T17:44:05+00:00"
},
{
"name": "dragonmantank/cron-expression",
- "version": "v2.3.0",
+ "version": "v3.1.0",
"source": {
"type": "git",
"url": "https://github.com/dragonmantank/cron-expression.git",
- "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
+ "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
- "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
+ "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
+ "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
"shasum": ""
},
"require": {
- "php": "^7.0"
+ "php": "^7.2|^8.0",
+ "webmozart/assert": "^1.7.0"
+ },
+ "replace": {
+ "mtdowling/cron-expression": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "^6.4|^7.0"
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-webmozart-assert": "^0.12.7",
+ "phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.3-dev"
- }
- },
"autoload": {
"psr-4": {
"Cron\\": "src/Cron/"
@@ -257,11 +369,6 @@
],
"authors": [
{
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- },
- {
"name": "Chris Tankersley",
"email": "chris@ctankersley.com",
"homepage": "https://github.com/dragonmantank"
@@ -272,20 +379,30 @@
"cron",
"schedule"
],
- "time": "2019-03-31T00:38:28+00:00"
+ "support": {
+ "issues": "https://github.com/dragonmantank/cron-expression/issues",
+ "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/dragonmantank",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-24T19:55:57+00:00"
},
{
"name": "egulias/email-validator",
- "version": "2.1.17",
+ "version": "2.1.25",
"source": {
"type": "git",
"url": "https://github.com/egulias/EmailValidator.git",
- "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
+ "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
- "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
+ "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
"shasum": ""
},
"require": {
@@ -309,7 +426,7 @@
},
"autoload": {
"psr-4": {
- "Egulias\\EmailValidator\\": "EmailValidator"
+ "Egulias\\EmailValidator\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -330,28 +447,38 @@
"validation",
"validator"
],
- "time": "2020-02-13T22:36:52+00:00"
+ "support": {
+ "issues": "https://github.com/egulias/EmailValidator/issues",
+ "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/egulias",
+ "type": "github"
+ }
+ ],
+ "time": "2020-12-29T14:50:06+00:00"
},
{
"name": "fideloper/proxy",
- "version": "4.3.0",
+ "version": "4.4.1",
"source": {
"type": "git",
"url": "https://github.com/fideloper/TrustedProxy.git",
- "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a"
+ "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
- "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
+ "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
+ "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
"shasum": ""
},
"require": {
- "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
+ "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
"php": ">=5.4.0"
},
"require-dev": {
- "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
+ "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.0"
},
@@ -384,20 +511,24 @@
"proxy",
"trusted proxy"
],
- "time": "2020-02-22T01:51:47+00:00"
+ "support": {
+ "issues": "https://github.com/fideloper/TrustedProxy/issues",
+ "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
+ },
+ "time": "2020-10-22T13:48:01+00:00"
},
{
"name": "fruitcake/laravel-cors",
- "version": "v1.0.5",
+ "version": "v1.0.6",
"source": {
"type": "git",
"url": "https://github.com/fruitcake/laravel-cors.git",
- "reference": "0e0500133dbb6325266133dd72f040617c9cdbd0"
+ "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/0e0500133dbb6325266133dd72f040617c9cdbd0",
- "reference": "0e0500133dbb6325266133dd72f040617c9cdbd0",
+ "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/1d127dbec313e2e227d65e0c483765d8d7559bf6",
+ "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6",
"shasum": ""
},
"require": {
@@ -452,41 +583,123 @@
"crossdomain",
"laravel"
],
- "time": "2020-03-11T21:05:07+00:00"
+ "support": {
+ "issues": "https://github.com/fruitcake/laravel-cors/issues",
+ "source": "https://github.com/fruitcake/laravel-cors/tree/1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/barryvdh",
+ "type": "github"
+ }
+ ],
+ "time": "2020-04-28T08:47:37+00:00"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
+ "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0|^8.0",
+ "phpoption/phpoption": "^1.7.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "graham@alt-three.com"
+ }
+ ],
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
+ ],
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-04-13T13:17:36+00:00"
},
{
"name": "guzzlehttp/guzzle",
- "version": "6.5.2",
+ "version": "7.2.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
+ "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
- "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
+ "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
"shasum": ""
},
"require": {
"ext-json": "*",
- "guzzlehttp/promises": "^1.0",
- "guzzlehttp/psr7": "^1.6.1",
- "php": ">=5.5"
+ "guzzlehttp/promises": "^1.4",
+ "guzzlehttp/psr7": "^1.7",
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-client": "^1.0"
+ },
+ "provide": {
+ "psr/http-client-implementation": "1.0"
},
"require-dev": {
"ext-curl": "*",
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
+ "php-http/client-integration-tests": "^3.0",
+ "phpunit/phpunit": "^8.5.5 || ^9.3.5",
"psr/log": "^1.1"
},
"suggest": {
+ "ext-curl": "Required for CURL handler support",
"ext-intl": "Required for Internationalized Domain Name (IDN) support",
"psr/log": "Required for using the Log middleware"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "6.5-dev"
+ "dev-master": "7.1-dev"
}
},
"autoload": {
@@ -506,6 +719,11 @@
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://sagikazarmark.hu"
}
],
"description": "Guzzle is a PHP HTTP client library",
@@ -516,30 +734,54 @@
"framework",
"http",
"http client",
+ "psr-18",
+ "psr-7",
"rest",
"web service"
],
- "time": "2019-12-23T11:57:10+00:00"
+ "support": {
+ "issues": "https://github.com/guzzle/guzzle/issues",
+ "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/alexeyshockov",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/gmponos",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-10T11:47:56+00:00"
},
{
"name": "guzzlehttp/promises",
- "version": "v1.3.1",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
+ "reference": "60d379c243457e073cff02bc323a2a86cb355631"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
- "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
+ "reference": "60d379c243457e073cff02bc323a2a86cb355631",
"shasum": ""
},
"require": {
- "php": ">=5.5.0"
+ "php": ">=5.5"
},
"require-dev": {
- "phpunit/phpunit": "^4.0"
+ "symfony/phpunit-bridge": "^4.4 || ^5.1"
},
"type": "library",
"extra": {
@@ -570,20 +812,24 @@
"keywords": [
"promise"
],
- "time": "2016-12-20T10:07:11+00:00"
+ "support": {
+ "issues": "https://github.com/guzzle/promises/issues",
+ "source": "https://github.com/guzzle/promises/tree/1.4.0"
+ },
+ "time": "2020-09-30T07:37:28+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "1.6.1",
+ "version": "1.7.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
+ "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
- "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
+ "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
"shasum": ""
},
"require": {
@@ -596,15 +842,15 @@
},
"require-dev": {
"ext-zlib": "*",
- "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
+ "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
},
"suggest": {
- "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
+ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.6-dev"
+ "dev-master": "1.7-dev"
}
},
"autoload": {
@@ -641,81 +887,57 @@
"uri",
"url"
],
- "time": "2019-07-01T23:21:34+00:00"
+ "support": {
+ "issues": "https://github.com/guzzle/psr7/issues",
+ "source": "https://github.com/guzzle/psr7/tree/1.7.0"
+ },
+ "time": "2020-09-30T07:37:11+00:00"
},
{
- "name": "jakub-onderka/php-console-color",
- "version": "v0.2",
+ "name": "intervention/image",
+ "version": "2.5.1",
"source": {
"type": "git",
- "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
- "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
+ "url": "https://github.com/Intervention/image.git",
+ "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
- "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
+ "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
+ "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
"shasum": ""
},
"require": {
+ "ext-fileinfo": "*",
+ "guzzlehttp/psr7": "~1.1",
"php": ">=5.4.0"
},
"require-dev": {
- "jakub-onderka/php-code-style": "1.0",
- "jakub-onderka/php-parallel-lint": "1.0",
- "jakub-onderka/php-var-dump-check": "0.*",
- "phpunit/phpunit": "~4.3",
- "squizlabs/php_codesniffer": "1.*"
+ "mockery/mockery": "~0.9.2",
+ "phpunit/phpunit": "^4.8 || ^5.7"
},
- "type": "library",
- "autoload": {
- "psr-4": {
- "JakubOnderka\\PhpConsoleColor\\": "src/"
- }
+ "suggest": {
+ "ext-gd": "to use GD library based image processing.",
+ "ext-imagick": "to use Imagick based image processing.",
+ "intervention/imagecache": "Caching extension for the Intervention Image library"
},
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-2-Clause"
- ],
- "authors": [
- {
- "name": "Jakub Onderka",
- "email": "jakub.onderka@gmail.com"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.4-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Intervention\\Image\\ImageServiceProvider"
+ ],
+ "aliases": {
+ "Image": "Intervention\\Image\\Facades\\Image"
+ }
}
- ],
- "abandoned": "php-parallel-lint/php-console-color",
- "time": "2018-09-29T17:23:10+00:00"
- },
- {
- "name": "jakub-onderka/php-console-highlighter",
- "version": "v0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
- "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
- "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
- "shasum": ""
- },
- "require": {
- "ext-tokenizer": "*",
- "jakub-onderka/php-console-color": "~0.2",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "jakub-onderka/php-code-style": "~1.0",
- "jakub-onderka/php-parallel-lint": "~1.0",
- "jakub-onderka/php-var-dump-check": "~0.1",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5"
},
- "type": "library",
"autoload": {
"psr-4": {
- "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
+ "Intervention\\Image\\": "src/Intervention/Image"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -724,67 +946,83 @@
],
"authors": [
{
- "name": "Jakub Onderka",
- "email": "acci@acci.cz",
- "homepage": "http://www.acci.cz/"
+ "name": "Oliver Vogel",
+ "email": "oliver@olivervogel.com",
+ "homepage": "http://olivervogel.com/"
}
],
- "description": "Highlight PHP code in terminal",
- "abandoned": "php-parallel-lint/php-console-highlighter",
- "time": "2018-09-29T18:48:56+00:00"
+ "description": "Image handling and manipulation library with support for Laravel integration",
+ "homepage": "http://image.intervention.io/",
+ "keywords": [
+ "gd",
+ "image",
+ "imagick",
+ "laravel",
+ "thumbnail",
+ "watermark"
+ ],
+ "support": {
+ "issues": "https://github.com/Intervention/image/issues",
+ "source": "https://github.com/Intervention/image/tree/master"
+ },
+ "time": "2019-11-02T09:15:47+00:00"
},
{
"name": "laravel/framework",
- "version": "v7.2.0",
+ "version": "v8.27.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "77110b6434e65b10b655ab92e645e830b1a79caf"
+ "reference": "a6680d98f9dadaa363aa7d5218517a08706cee64"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/77110b6434e65b10b655ab92e645e830b1a79caf",
- "reference": "77110b6434e65b10b655ab92e645e830b1a79caf",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/a6680d98f9dadaa363aa7d5218517a08706cee64",
+ "reference": "a6680d98f9dadaa363aa7d5218517a08706cee64",
"shasum": ""
},
"require": {
- "doctrine/inflector": "^1.1",
- "dragonmantank/cron-expression": "^2.0",
+ "doctrine/inflector": "^1.4|^2.0",
+ "dragonmantank/cron-expression": "^3.0.2",
"egulias/email-validator": "^2.1.10",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"league/commonmark": "^1.3",
- "league/flysystem": "^1.0.8",
+ "league/flysystem": "^1.1",
"monolog/monolog": "^2.0",
- "nesbot/carbon": "^2.17",
- "opis/closure": "^3.1",
- "php": "^7.2.5",
+ "nesbot/carbon": "^2.31",
+ "opis/closure": "^3.6",
+ "php": "^7.3|^8.0",
"psr/container": "^1.0",
"psr/simple-cache": "^1.0",
- "ramsey/uuid": "^3.7",
+ "ramsey/uuid": "^4.0",
"swiftmailer/swiftmailer": "^6.0",
- "symfony/console": "^5.0",
- "symfony/error-handler": "^5.0",
- "symfony/finder": "^5.0",
- "symfony/http-foundation": "^5.0",
- "symfony/http-kernel": "^5.0",
- "symfony/mime": "^5.0",
- "symfony/process": "^5.0",
- "symfony/routing": "^5.0",
- "symfony/var-dumper": "^5.0",
+ "symfony/console": "^5.1.4",
+ "symfony/error-handler": "^5.1.4",
+ "symfony/finder": "^5.1.4",
+ "symfony/http-foundation": "^5.1.4",
+ "symfony/http-kernel": "^5.1.4",
+ "symfony/mime": "^5.1.4",
+ "symfony/process": "^5.1.4",
+ "symfony/routing": "^5.1.4",
+ "symfony/var-dumper": "^5.1.4",
"tijsverkoyen/css-to-inline-styles": "^2.2.2",
- "vlucas/phpdotenv": "^4.0",
+ "vlucas/phpdotenv": "^5.2",
"voku/portable-ascii": "^1.4.8"
},
"conflict": {
"tightenco/collect": "<5.5.33"
},
+ "provide": {
+ "psr/container-implementation": "1.0"
+ },
"replace": {
"illuminate/auth": "self.version",
"illuminate/broadcasting": "self.version",
"illuminate/bus": "self.version",
"illuminate/cache": "self.version",
+ "illuminate/collections": "self.version",
"illuminate/config": "self.version",
"illuminate/console": "self.version",
"illuminate/container": "self.version",
@@ -797,6 +1035,7 @@
"illuminate/hashing": "self.version",
"illuminate/http": "self.version",
"illuminate/log": "self.version",
+ "illuminate/macroable": "self.version",
"illuminate/mail": "self.version",
"illuminate/notifications": "self.version",
"illuminate/pagination": "self.version",
@@ -812,58 +1051,66 @@
"illuminate/view": "self.version"
},
"require-dev": {
- "aws/aws-sdk-php": "^3.0",
- "doctrine/dbal": "^2.6",
- "filp/whoops": "^2.4",
- "guzzlehttp/guzzle": "^6.3.1|^7.0",
+ "aws/aws-sdk-php": "^3.155",
+ "doctrine/dbal": "^2.6|^3.0",
+ "filp/whoops": "^2.8",
+ "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
"league/flysystem-cached-adapter": "^1.0",
- "mockery/mockery": "^1.3.1",
- "moontoast/math": "^1.1",
- "orchestra/testbench-core": "^5.0",
+ "mockery/mockery": "^1.4.2",
+ "orchestra/testbench-core": "^6.8",
"pda/pheanstalk": "^4.0",
- "phpunit/phpunit": "^8.4|^9.0",
+ "phpunit/phpunit": "^8.5.8|^9.3.3",
"predis/predis": "^1.1.1",
- "symfony/cache": "^5.0"
+ "symfony/cache": "^5.1.4"
},
"suggest": {
- "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
- "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
+ "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
+ "brianium/paratest": "Required to run tests in parallel (^6.0).",
+ "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
+ "ext-ftp": "Required to use the Flysystem FTP driver.",
"ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
"ext-memcached": "Required to use the memcache cache driver.",
"ext-pcntl": "Required to use all features of the queue worker.",
"ext-posix": "Required to use all features of the queue worker.",
"ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
- "filp/whoops": "Required for friendly error pages in development (^2.4).",
- "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
- "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
+ "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
+ "filp/whoops": "Required for friendly error pages in development (^2.8).",
+ "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
"laravel/tinker": "Required to use the tinker console command (^2.0).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
"league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
"league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
- "mockery/mockery": "Required to use mocking (^1.3.1).",
- "moontoast/math": "Required to use ordered UUIDs (^1.1).",
+ "mockery/mockery": "Required to use mocking (^1.4.2).",
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
- "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
+ "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
+ "predis/predis": "Required to use the predis connector (^1.1.2).",
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
- "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
+ "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
+ "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
"wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "7.x-dev"
+ "dev-master": "8.x-dev"
}
},
"autoload": {
"files": [
+ "src/Illuminate/Collections/helpers.php",
+ "src/Illuminate/Events/functions.php",
"src/Illuminate/Foundation/helpers.php",
"src/Illuminate/Support/helpers.php"
],
"psr-4": {
- "Illuminate\\": "src/Illuminate/"
+ "Illuminate\\": "src/Illuminate/",
+ "Illuminate\\Support\\": [
+ "src/Illuminate/Macroable/",
+ "src/Illuminate/Collections/"
+ ]
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -882,33 +1129,37 @@
"framework",
"laravel"
],
- "time": "2020-03-17T14:08:55+00:00"
+ "support": {
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
+ },
+ "time": "2021-02-09T15:14:54+00:00"
},
{
"name": "laravel/tinker",
- "version": "v2.3.0",
+ "version": "v2.6.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/tinker.git",
- "reference": "5271893ec90ad9f8d3e34792ac6b72cad3b84cc2"
+ "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/tinker/zipball/5271893ec90ad9f8d3e34792ac6b72cad3b84cc2",
- "reference": "5271893ec90ad9f8d3e34792ac6b72cad3b84cc2",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/daae1c43f1300fe88c05d83db6f3d8f76677ad88",
+ "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88",
"shasum": ""
},
"require": {
"illuminate/console": "^6.0|^7.0|^8.0",
"illuminate/contracts": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
- "php": "^7.2",
- "psy/psysh": "^0.9|^0.10",
- "symfony/var-dumper": "^4.0|^5.0"
+ "php": "^7.2.5|^8.0",
+ "psy/psysh": "^0.10.4",
+ "symfony/var-dumper": "^4.3.4|^5.0"
},
"require-dev": {
- "mockery/mockery": "^1.3.1",
- "phpunit/phpunit": "^8.0|^9.0"
+ "mockery/mockery": "~1.3.3|^1.4.2",
+ "phpunit/phpunit": "^8.5.8|^9.3.3"
},
"suggest": {
"illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
@@ -946,31 +1197,35 @@
"laravel",
"psysh"
],
- "time": "2020-03-17T15:34:59+00:00"
+ "support": {
+ "issues": "https://github.com/laravel/tinker/issues",
+ "source": "https://github.com/laravel/tinker/tree/v2.6.0"
+ },
+ "time": "2021-01-26T20:35:18+00:00"
},
{
"name": "laravelium/feed",
- "version": "v7.0.1",
+ "version": "v8.0.1",
"source": {
"type": "git",
- "url": "https://gitlab.com/Laravelium/Feed.git",
- "reference": "e7f108f49abec3a3c836636a5c8fb1d3b8d3d1d7"
+ "url": "https://github.com/Laravelium/laravel-feed.git",
+ "reference": "f1ed9141d499248c795bbf741ad30bb0ee54c93c"
},
"dist": {
"type": "zip",
- "url": "https://gitlab.com/api/v4/projects/Laravelium%2FFeed/repository/archive.zip?sha=e7f108f49abec3a3c836636a5c8fb1d3b8d3d1d7",
- "reference": "e7f108f49abec3a3c836636a5c8fb1d3b8d3d1d7",
+ "url": "https://api.github.com/repos/Laravelium/laravel-feed/zipball/f1ed9141d499248c795bbf741ad30bb0ee54c93c",
+ "reference": "f1ed9141d499248c795bbf741ad30bb0ee54c93c",
"shasum": ""
},
"require": {
- "illuminate/filesystem": "^7.0",
- "illuminate/support": "^7.0",
- "php": ">=7.2.5"
+ "illuminate/filesystem": "^8.0",
+ "illuminate/support": "^8.0",
+ "php": ">=7.3"
},
"require-dev": {
- "laravel/framework": "^7.0",
- "orchestra/testbench-core": "^5.0",
- "phpunit/phpunit": "^8.0"
+ "laravel/framework": "^8.0",
+ "orchestra/testbench-core": "^6.0",
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
@@ -1001,7 +1256,7 @@
}
],
"description": "Laravelium Feed package for Laravel.",
- "homepage": "https://gitlab.com/Laravelium",
+ "homepage": "https://laravelium.com",
"keywords": [
"atom",
"feed",
@@ -1010,39 +1265,44 @@
"laravelium",
"rss"
],
- "time": "2020-03-28T12:53:42+00:00"
+ "support": {
+ "issues": "https://github.com/Laravelium/laravel-feed/issues",
+ "source": "https://github.com/Laravelium/laravel-feed",
+ "wiki": "https://github.com/Laravelium/laravel-feed/wiki"
+ },
+ "time": "2020-09-12T18:51:09+00:00"
},
{
"name": "league/commonmark",
- "version": "1.3.1",
+ "version": "1.5.7",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/commonmark.git",
- "reference": "8015f806173c6ee54de25a87c2d69736696e88db"
+ "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/8015f806173c6ee54de25a87c2d69736696e88db",
- "reference": "8015f806173c6ee54de25a87c2d69736696e88db",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
+ "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
- "php": "^7.1"
+ "php": "^7.1 || ^8.0"
},
"conflict": {
"scrutinizer/ocular": "1.7.*"
},
"require-dev": {
"cebe/markdown": "~1.0",
- "commonmark/commonmark.js": "0.29.1",
+ "commonmark/commonmark.js": "0.29.2",
"erusev/parsedown": "~1.0",
"ext-json": "*",
"github/gfm": "0.29.0",
"michelf/php-markdown": "~1.4",
"mikehaertl/php-shellcommand": "^1.4",
- "phpstan/phpstan-shim": "^0.11.5",
- "phpunit/phpunit": "^7.5",
+ "phpstan/phpstan": "^0.12",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
"scrutinizer/ocular": "^1.5",
"symfony/finder": "^4.2"
},
@@ -1050,11 +1310,6 @@
"bin/commonmark"
],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
"autoload": {
"psr-4": {
"League\\CommonMark\\": "src"
@@ -1084,32 +1339,65 @@
"md",
"parser"
],
- "time": "2020-02-28T18:53:50+00:00"
+ "support": {
+ "docs": "https://commonmark.thephpleague.com/",
+ "issues": "https://github.com/thephpleague/commonmark/issues",
+ "rss": "https://github.com/thephpleague/commonmark/releases.atom",
+ "source": "https://github.com/thephpleague/commonmark"
+ },
+ "funding": [
+ {
+ "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/colinodell",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-31T13:49:32+00:00"
},
{
"name": "league/flysystem",
- "version": "1.0.66",
+ "version": "1.1.3",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "021569195e15f8209b1c4bebb78bd66aa4f08c21"
+ "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/021569195e15f8209b1c4bebb78bd66aa4f08c21",
- "reference": "021569195e15f8209b1c4bebb78bd66aa4f08c21",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
+ "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
"shasum": ""
},
"require": {
"ext-fileinfo": "*",
- "php": ">=5.5.9"
+ "league/mime-type-detection": "^1.3",
+ "php": "^7.2.5 || ^8.0"
},
"conflict": {
"league/flysystem-sftp": "<1.0.6"
},
"require-dev": {
- "phpspec/phpspec": "^3.4",
- "phpunit/phpunit": "^5.7.26"
+ "phpspec/prophecy": "^1.11.1",
+ "phpunit/phpunit": "^8.5.8"
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
@@ -1168,24 +1456,155 @@
"sftp",
"storage"
],
- "time": "2020-03-17T18:58:12+00:00"
+ "support": {
+ "issues": "https://github.com/thephpleague/flysystem/issues",
+ "source": "https://github.com/thephpleague/flysystem/tree/1.x"
+ },
+ "funding": [
+ {
+ "url": "https://offset.earth/frankdejonge",
+ "type": "other"
+ }
+ ],
+ "time": "2020-08-23T07:39:11+00:00"
+ },
+ {
+ "name": "league/glide",
+ "version": "1.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/glide.git",
+ "reference": "ae5e26700573cb678919d28e425a8b87bc71c546"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/glide/zipball/ae5e26700573cb678919d28e425a8b87bc71c546",
+ "reference": "ae5e26700573cb678919d28e425a8b87bc71c546",
+ "shasum": ""
+ },
+ "require": {
+ "intervention/image": "^2.4",
+ "league/flysystem": "^1.0",
+ "php": "^7.2|^8.0",
+ "psr/http-message": "^1.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.3.3",
+ "phpunit/php-token-stream": "^3.1|^4.0",
+ "phpunit/phpunit": "^8.5|^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Glide\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jonathan Reinink",
+ "email": "jonathan@reinink.ca",
+ "homepage": "http://reinink.ca"
+ }
+ ],
+ "description": "Wonderfully easy on-demand image manipulation library with an HTTP based API.",
+ "homepage": "http://glide.thephpleague.com",
+ "keywords": [
+ "ImageMagick",
+ "editing",
+ "gd",
+ "image",
+ "imagick",
+ "league",
+ "manipulation",
+ "processing"
+ ],
+ "support": {
+ "issues": "https://github.com/thephpleague/glide/issues",
+ "source": "https://github.com/thephpleague/glide/tree/1.7.0"
+ },
+ "time": "2020-11-05T17:34:03+00:00"
+ },
+ {
+ "name": "league/mime-type-detection",
+ "version": "1.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/mime-type-detection.git",
+ "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
+ "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.18",
+ "phpstan/phpstan": "^0.12.68",
+ "phpunit/phpunit": "^8.5.8 || ^9.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\MimeTypeDetection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Mime-type detection for Flysystem",
+ "support": {
+ "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-18T20:58:21+00:00"
},
{
"name": "monolog/monolog",
- "version": "2.0.2",
+ "version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8"
+ "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8",
- "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
+ "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
"shasum": ""
},
"require": {
- "php": "^7.2",
+ "php": ">=7.2",
"psr/log": "^1.0.1"
},
"provide": {
@@ -1194,16 +1613,17 @@
"require-dev": {
"aws/aws-sdk-php": "^2.4.9 || ^3.0",
"doctrine/couchdb": "~1.0@dev",
- "elasticsearch/elasticsearch": "^6.0",
+ "elasticsearch/elasticsearch": "^7",
"graylog2/gelf-php": "^1.4.2",
- "jakub-onderka/php-parallel-lint": "^0.9",
+ "mongodb/mongodb": "^1.8",
"php-amqplib/php-amqplib": "~2.4",
"php-console/php-console": "^3.1.3",
"phpspec/prophecy": "^1.6.1",
- "phpunit/phpunit": "^8.3",
+ "phpstan/phpstan": "^0.12.59",
+ "phpunit/phpunit": "^8.5",
"predis/predis": "^1.1",
"rollbar/rollbar": "^1.3",
- "ruflin/elastica": ">=0.90 <3.0",
+ "ruflin/elastica": ">=0.90 <7.0.1",
"swiftmailer/swiftmailer": "^5.3|^6.0"
},
"suggest": {
@@ -1223,7 +1643,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.x-dev"
+ "dev-main": "2.x-dev"
}
},
"autoload": {
@@ -1239,43 +1659,60 @@
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "homepage": "https://seld.be"
}
],
"description": "Sends your logs to files, sockets, inboxes, databases and various web services",
- "homepage": "http://github.com/Seldaek/monolog",
+ "homepage": "https://github.com/Seldaek/monolog",
"keywords": [
"log",
"logging",
"psr-3"
],
- "time": "2019-12-20T14:22:59+00:00"
+ "support": {
+ "issues": "https://github.com/Seldaek/monolog/issues",
+ "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-12-14T13:15:25+00:00"
},
{
"name": "nesbot/carbon",
- "version": "2.31.0",
+ "version": "2.45.1",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d"
+ "reference": "528783b188bdb853eb21239b1722831e0f000a8d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d",
- "reference": "bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/528783b188bdb853eb21239b1722831e0f000a8d",
+ "reference": "528783b188bdb853eb21239b1722831e0f000a8d",
"shasum": ""
},
"require": {
"ext-json": "*",
"php": "^7.1.8 || ^8.0",
+ "symfony/polyfill-mbstring": "^1.0",
"symfony/translation": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
+ "doctrine/orm": "^2.7",
"friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
- "kylekatarnls/multi-tester": "^1.1",
- "phpmd/phpmd": "^2.8",
- "phpstan/phpstan": "^0.11",
- "phpunit/phpunit": "^7.5 || ^8.0",
+ "kylekatarnls/multi-tester": "^2.0",
+ "phpmd/phpmd": "^2.9",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12.54",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.14",
"squizlabs/php_codesniffer": "^3.4"
},
"bin": [
@@ -1284,12 +1721,18 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.x-dev"
+ "dev-master": "2.x-dev",
+ "dev-3.x": "3.x-dev"
},
"laravel": {
"providers": [
"Carbon\\Laravel\\ServiceProvider"
]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
}
},
"autoload": {
@@ -1319,20 +1762,80 @@
"datetime",
"time"
],
- "time": "2020-03-01T11:11:58+00:00"
+ "support": {
+ "issues": "https://github.com/briannesbitt/Carbon/issues",
+ "source": "https://github.com/briannesbitt/Carbon"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-02-11T18:30:17+00:00"
+ },
+ {
+ "name": "nicmart/tree",
+ "version": "0.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nicmart/Tree.git",
+ "reference": "c55ba47c64a3cb7454c22e6d630729fc2aab23ff"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nicmart/Tree/zipball/c55ba47c64a3cb7454c22e6d630729fc2aab23ff",
+ "reference": "c55ba47c64a3cb7454c22e6d630729fc2aab23ff",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.8.0",
+ "ergebnis/license": "^1.0.0",
+ "ergebnis/php-cs-fixer-config": "^2.2.1",
+ "phpunit/phpunit": "^7.5.20"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Tree\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolò Martini",
+ "email": "nicmartnic@gmail.com"
+ }
+ ],
+ "description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
+ "support": {
+ "issues": "https://github.com/nicmart/Tree/issues",
+ "source": "https://github.com/nicmart/Tree/tree/0.3.1"
+ },
+ "time": "2020-11-27T09:02:17+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v4.3.0",
+ "version": "v4.10.4",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
+ "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
- "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
+ "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
"shasum": ""
},
"require": {
@@ -1340,8 +1843,8 @@
"php": ">=7.0"
},
"require-dev": {
- "ircmaxell/php-yacc": "0.0.5",
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
},
"bin": [
"bin/php-parse"
@@ -1349,7 +1852,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.3-dev"
+ "dev-master": "4.9-dev"
}
},
"autoload": {
@@ -1371,33 +1874,37 @@
"parser",
"php"
],
- "time": "2019-11-08T13:50:10+00:00"
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
+ },
+ "time": "2020-12-20T10:01:03+00:00"
},
{
"name": "opis/closure",
- "version": "3.5.1",
+ "version": "3.6.1",
"source": {
"type": "git",
"url": "https://github.com/opis/closure.git",
- "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
+ "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
- "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
+ "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
+ "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
"shasum": ""
},
"require": {
- "php": "^5.4 || ^7.0"
+ "php": "^5.4 || ^7.0 || ^8.0"
},
"require-dev": {
"jeremeamia/superclosure": "^2.0",
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.5.x-dev"
+ "dev-master": "3.6.x-dev"
}
},
"autoload": {
@@ -1432,73 +1939,32 @@
"serialization",
"serialize"
],
- "time": "2019-11-29T22:36:02+00:00"
- },
- {
- "name": "paragonie/random_compat",
- "version": "v9.99.99",
- "source": {
- "type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
- "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
- "shasum": ""
- },
- "require": {
- "php": "^7"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*|5.*",
- "vimeo/psalm": "^1"
+ "support": {
+ "issues": "https://github.com/opis/closure/issues",
+ "source": "https://github.com/opis/closure/tree/3.6.1"
},
- "suggest": {
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
- },
- "type": "library",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Paragon Initiative Enterprises",
- "email": "security@paragonie.com",
- "homepage": "https://paragonie.com"
- }
- ],
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
- "keywords": [
- "csprng",
- "polyfill",
- "pseudorandom",
- "random"
- ],
- "time": "2018-07-02T15:55:56+00:00"
+ "time": "2020-11-07T02:01:34+00:00"
},
{
"name": "phpoption/phpoption",
- "version": "1.7.2",
+ "version": "1.7.5",
"source": {
"type": "git",
"url": "https://github.com/schmittjoh/php-option.git",
- "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959"
+ "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959",
- "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
+ "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
"shasum": ""
},
"require": {
- "php": "^5.5.9 || ^7.0"
+ "php": "^5.5.9 || ^7.0 || ^8.0"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.3",
- "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
+ "bamarni/composer-bin-plugin": "^1.4.1",
+ "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"extra": {
@@ -1532,7 +1998,21 @@
"php",
"type"
],
- "time": "2019-12-15T19:35:24+00:00"
+ "support": {
+ "issues": "https://github.com/schmittjoh/php-option/issues",
+ "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-20T17:29:33+00:00"
},
{
"name": "psr/container",
@@ -1581,6 +2061,10 @@
"container-interop",
"psr"
],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/master"
+ },
"time": "2017-02-14T16:28:37+00:00"
},
{
@@ -1627,9 +2111,65 @@
"psr",
"psr-14"
],
+ "support": {
+ "issues": "https://github.com/php-fig/event-dispatcher/issues",
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
+ },
"time": "2019-01-08T18:20:26+00:00"
},
{
+ "name": "psr/http-client",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-client.git",
+ "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
+ "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0",
+ "psr/http-message": "^1.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Client\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP clients",
+ "homepage": "https://github.com/php-fig/http-client",
+ "keywords": [
+ "http",
+ "http-client",
+ "psr",
+ "psr-18"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-client/tree/master"
+ },
+ "time": "2020-06-29T06:28:15+00:00"
+ },
+ {
"name": "psr/http-message",
"version": "1.0.1",
"source": {
@@ -1677,20 +2217,23 @@
"request",
"response"
],
+ "support": {
+ "source": "https://github.com/php-fig/http-message/tree/master"
+ },
"time": "2016-08-06T14:39:51+00:00"
},
{
"name": "psr/log",
- "version": "1.1.2",
+ "version": "1.1.3",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
- "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
"shasum": ""
},
"require": {
@@ -1724,7 +2267,10 @@
"psr",
"psr-3"
],
- "time": "2019-11-01T11:05:21+00:00"
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/1.1.3"
+ },
+ "time": "2020-03-23T09:12:05+00:00"
},
{
"name": "psr/simple-cache",
@@ -1772,27 +2318,29 @@
"psr-16",
"simple-cache"
],
+ "support": {
+ "source": "https://github.com/php-fig/simple-cache/tree/master"
+ },
"time": "2017-10-23T01:57:42+00:00"
},
{
"name": "psy/psysh",
- "version": "v0.10.0",
+ "version": "v0.10.6",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "e361c8b7e5114534078e0ce04ddc442b39018a3c"
+ "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e361c8b7e5114534078e0ce04ddc442b39018a3c",
- "reference": "e361c8b7e5114534078e0ce04ddc442b39018a3c",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
+ "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
"shasum": ""
},
"require": {
"dnoegel/php-xdg-base-dir": "0.1.*",
"ext-json": "*",
"ext-tokenizer": "*",
- "jakub-onderka/php-console-highlighter": "0.4.*|0.3.*",
"nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
"php": "^8.0 || ^7.0 || ^5.5.9",
"symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
@@ -1800,7 +2348,7 @@
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.2",
- "hoa/console": "~3.16|~2.15"
+ "hoa/console": "3.17.*"
},
"suggest": {
"ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
@@ -1815,7 +2363,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.10.x-dev"
+ "dev-main": "0.10.x-dev"
}
},
"autoload": {
@@ -1845,7 +2393,11 @@
"interactive",
"shell"
],
- "time": "2020-03-15T22:52:37+00:00"
+ "support": {
+ "issues": "https://github.com/bobthecow/psysh/issues",
+ "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
+ },
+ "time": "2021-01-18T15:53:43+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -1885,57 +2437,147 @@
}
],
"description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
"time": "2019-03-08T08:55:37+00:00"
},
{
+ "name": "ramsey/collection",
+ "version": "1.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
+ "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8"
+ },
+ "require-dev": {
+ "captainhook/captainhook": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
+ "ergebnis/composer-normalize": "^2.6",
+ "fakerphp/faker": "^1.5",
+ "hamcrest/hamcrest-php": "^2",
+ "jangregor/phpstan-prophecy": "^0.8",
+ "mockery/mockery": "^1.3",
+ "phpstan/extension-installer": "^1",
+ "phpstan/phpstan": "^0.12.32",
+ "phpstan/phpstan-mockery": "^0.12.5",
+ "phpstan/phpstan-phpunit": "^0.12.11",
+ "phpunit/phpunit": "^8.5 || ^9",
+ "psy/psysh": "^0.10.4",
+ "slevomat/coding-standard": "^6.3",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Collection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ }
+ ],
+ "description": "A PHP 7.2+ library for representing and manipulating collections.",
+ "keywords": [
+ "array",
+ "collection",
+ "hash",
+ "map",
+ "queue",
+ "set"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/collection/issues",
+ "source": "https://github.com/ramsey/collection/tree/1.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-21T17:40:04+00:00"
+ },
+ {
"name": "ramsey/uuid",
- "version": "3.9.3",
+ "version": "4.1.1",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
+ "reference": "cd4032040a750077205918c86049aa0f43d22947"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
- "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
+ "reference": "cd4032040a750077205918c86049aa0f43d22947",
"shasum": ""
},
"require": {
+ "brick/math": "^0.8 || ^0.9",
"ext-json": "*",
- "paragonie/random_compat": "^1 | ^2 | 9.99.99",
- "php": "^5.4 | ^7 | ^8",
+ "php": "^7.2 || ^8",
+ "ramsey/collection": "^1.0",
"symfony/polyfill-ctype": "^1.8"
},
"replace": {
"rhumsaa/uuid": "self.version"
},
"require-dev": {
- "codeception/aspect-mock": "^1 | ^2",
- "doctrine/annotations": "^1.2",
- "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
- "jakub-onderka/php-parallel-lint": "^1",
- "mockery/mockery": "^0.9.11 | ^1",
+ "codeception/aspect-mock": "^3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
+ "doctrine/annotations": "^1.8",
+ "goaop/framework": "^2",
+ "mockery/mockery": "^1.3",
"moontoast/math": "^1.1",
"paragonie/random-lib": "^2",
- "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
- "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
- "squizlabs/php_codesniffer": "^3.5"
+ "php-mock/php-mock-mockery": "^1.3",
+ "php-mock/php-mock-phpunit": "^2.5",
+ "php-parallel-lint/php-parallel-lint": "^1.1",
+ "phpbench/phpbench": "^0.17.1",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-mockery": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpunit/phpunit": "^8.5",
+ "psy/psysh": "^0.10.0",
+ "slevomat/coding-standard": "^6.0",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "3.9.4"
},
"suggest": {
- "ext-ctype": "Provides support for PHP Ctype functions",
- "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
- "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
- "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
- "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-ctype": "Enables faster processing of character classification using ctype functions.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
- "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.x-dev"
+ "dev-master": "4.x-dev"
}
},
"autoload": {
@@ -1950,58 +2592,477 @@
"license": [
"MIT"
],
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "homepage": "https://github.com/ramsey/uuid",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "rss": "https://github.com/ramsey/uuid/releases.atom",
+ "source": "https://github.com/ramsey/uuid"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ }
+ ],
+ "time": "2020-08-18T17:17:46+00:00"
+ },
+ {
+ "name": "spatie/browsershot",
+ "version": "3.44.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/browsershot.git",
+ "reference": "94815d30e61dfe0f833fe705c82f6c27b484041f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/browsershot/zipball/94815d30e61dfe0f833fe705c82f6c27b484041f",
+ "reference": "94815d30e61dfe0f833fe705c82f6c27b484041f",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4|^8.0",
+ "spatie/image": "^1.5.3",
+ "spatie/temporary-directory": "^1.1",
+ "symfony/process": "^5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.0",
+ "spatie/phpunit-snapshot-assertions": "^4.2.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Browsershot\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
"authors": [
{
- "name": "Ben Ramsey",
- "email": "ben@benramsey.com",
- "homepage": "https://benramsey.com"
- },
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://github.com/freekmurze",
+ "role": "Developer"
+ }
+ ],
+ "description": "Convert a webpage to an image or pdf using headless Chrome",
+ "homepage": "https://github.com/spatie/browsershot",
+ "keywords": [
+ "chrome",
+ "convert",
+ "headless",
+ "image",
+ "pdf",
+ "puppeteer",
+ "screenshot",
+ "webpage"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/browsershot/issues",
+ "source": "https://github.com/spatie/browsershot/tree/3.44.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2021-02-05T08:07:26+00:00"
+ },
+ {
+ "name": "spatie/crawler",
+ "version": "5.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/crawler.git",
+ "reference": "26be88734d35e0fe9e103cd6d31113917cc5e271"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/crawler/zipball/26be88734d35e0fe9e103cd6d31113917cc5e271",
+ "reference": "26be88734d35e0fe9e103cd6d31113917cc5e271",
+ "shasum": ""
+ },
+ "require": {
+ "guzzlehttp/guzzle": "^6.3|^7.0",
+ "guzzlehttp/psr7": "^1.4",
+ "illuminate/collections": "^8.6",
+ "nicmart/tree": "^0.3.0",
+ "php": "^7.4|^8.0",
+ "spatie/browsershot": "^3.14",
+ "spatie/robots-txt": "^1.0.1",
+ "symfony/dom-crawler": "^5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Crawler\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be"
+ }
+ ],
+ "description": "Crawl all internal links found on a website",
+ "homepage": "https://github.com/spatie/crawler",
+ "keywords": [
+ "crawler",
+ "link",
+ "spatie",
+ "website"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/crawler/issues",
+ "source": "https://github.com/spatie/crawler/tree/5.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-27T11:24:49+00:00"
+ },
+ {
+ "name": "spatie/image",
+ "version": "1.10.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/image.git",
+ "reference": "12662673fbe649bffcd3a24188a404dc31fa118c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/image/zipball/12662673fbe649bffcd3a24188a404dc31fa118c",
+ "reference": "12662673fbe649bffcd3a24188a404dc31fa118c",
+ "shasum": ""
+ },
+ "require": {
+ "ext-exif": "*",
+ "ext-mbstring": "*",
+ "league/glide": "^1.6",
+ "php": "^7.2|^8.0",
+ "spatie/image-optimizer": "^1.1",
+ "spatie/temporary-directory": "^1.0",
+ "symfony/process": "^3.0|^4.0|^5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.0|^9.0",
+ "symfony/var-dumper": "^4.0|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Image\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
{
- "name": "Marijn Huizendveld",
- "email": "marijn.huizendveld@gmail.com"
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Manipulate images with an expressive API",
+ "homepage": "https://github.com/spatie/image",
+ "keywords": [
+ "image",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/image/issues",
+ "source": "https://github.com/spatie/image/tree/1.10.2"
+ },
+ "funding": [
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
},
{
- "name": "Thibaud Fabre",
- "email": "thibaud@aztech.io"
+ "url": "https://github.com/spatie",
+ "type": "github"
}
],
- "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
- "homepage": "https://github.com/ramsey/uuid",
+ "time": "2021-01-26T07:53:19+00:00"
+ },
+ {
+ "name": "spatie/image-optimizer",
+ "version": "1.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/image-optimizer.git",
+ "reference": "6aa170eb292758553d332efee5e0c3977341080c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/6aa170eb292758553d332efee5e0c3977341080c",
+ "reference": "6aa170eb292758553d332efee5e0c3977341080c",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "php": "^7.2|^8.0",
+ "psr/log": "^1.0",
+ "symfony/process": "^4.2|^5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.0|^9.0",
+ "symfony/var-dumper": "^4.2|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\ImageOptimizer\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Easily optimize images using PHP",
+ "homepage": "https://github.com/spatie/image-optimizer",
"keywords": [
- "guid",
- "identifier",
- "uuid"
+ "image-optimizer",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/image-optimizer/issues",
+ "source": "https://github.com/spatie/image-optimizer/tree/1.3.2"
+ },
+ "time": "2020-11-28T12:37:58+00:00"
+ },
+ {
+ "name": "spatie/laravel-sitemap",
+ "version": "5.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-sitemap.git",
+ "reference": "4d9ba07fe006bfacc1ccfe1b603995a247da71d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/4d9ba07fe006bfacc1ccfe1b603995a247da71d0",
+ "reference": "4d9ba07fe006bfacc1ccfe1b603995a247da71d0",
+ "shasum": ""
+ },
+ "require": {
+ "guzzlehttp/guzzle": "^7.2",
+ "illuminate/support": "^8.0",
+ "nesbot/carbon": "^2.0",
+ "php": "^7.4|^8.0",
+ "spatie/crawler": "^5.0",
+ "symfony/dom-crawler": "^5.1.14"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.3.3",
+ "orchestra/testbench": "^6.0",
+ "phpunit/phpunit": "^9.3",
+ "spatie/phpunit-snapshot-assertions": "^4.0",
+ "spatie/temporary-directory": "^1.1"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Spatie\\Sitemap\\SitemapServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Sitemap\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Create and generate sitemaps with ease",
+ "homepage": "https://github.com/spatie/laravel-sitemap",
+ "keywords": [
+ "laravel-sitemap",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-sitemap/issues",
+ "source": "https://github.com/spatie/laravel-sitemap/tree/5.9.1"
+ },
+ "funding": [
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
+ }
+ ],
+ "time": "2020-12-01T21:18:41+00:00"
+ },
+ {
+ "name": "spatie/robots-txt",
+ "version": "1.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/robots-txt.git",
+ "reference": "8802a2bee670b3c13cfd21ede0322f72b3efb711"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/robots-txt/zipball/8802a2bee670b3c13cfd21ede0322f72b3efb711",
+ "reference": "8802a2bee670b3c13cfd21ede0322f72b3efb711",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.3 || ^8.0"
+ },
+ "require-dev": {
+ "larapack/dd": "^1.0",
+ "phpunit/phpunit": "^8.0 || ^9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\Robots\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Brent Roose",
+ "email": "brent@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Determine if a page may be crawled from robots.txt and robots meta tags",
+ "homepage": "https://github.com/spatie/robots-txt",
+ "keywords": [
+ "robots-txt",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/robots-txt/issues",
+ "source": "https://github.com/spatie/robots-txt/tree/1.0.10"
+ },
+ "time": "2020-12-07T11:10:49+00:00"
+ },
+ {
+ "name": "spatie/temporary-directory",
+ "version": "1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/temporary-directory.git",
+ "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/f517729b3793bca58f847c5fd383ec16f03ffec6",
+ "reference": "f517729b3793bca58f847c5fd383ec16f03ffec6",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2|^8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.0|^9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\TemporaryDirectory\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Alex Vanderbist",
+ "email": "alex@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
],
- "time": "2020-02-21T04:36:14+00:00"
+ "description": "Easily create, use and destroy temporary directories",
+ "homepage": "https://github.com/spatie/temporary-directory",
+ "keywords": [
+ "php",
+ "spatie",
+ "temporary-directory"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/temporary-directory/issues",
+ "source": "https://github.com/spatie/temporary-directory/tree/1.3.0"
+ },
+ "time": "2020-11-09T15:54:21+00:00"
},
{
"name": "swiftmailer/swiftmailer",
- "version": "v6.2.3",
+ "version": "v6.2.5",
"source": {
"type": "git",
"url": "https://github.com/swiftmailer/swiftmailer.git",
- "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
+ "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
- "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
+ "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
"shasum": ""
},
"require": {
- "egulias/email-validator": "~2.0",
+ "egulias/email-validator": "^2.0",
"php": ">=7.0.0",
"symfony/polyfill-iconv": "^1.0",
"symfony/polyfill-intl-idn": "^1.10",
"symfony/polyfill-mbstring": "^1.0"
},
"require-dev": {
- "mockery/mockery": "~0.9.1",
- "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
+ "mockery/mockery": "^1.0",
+ "symfony/phpunit-bridge": "^4.4|^5.0"
},
"suggest": {
- "ext-intl": "Needed to support internationalized email addresses",
- "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
+ "ext-intl": "Needed to support internationalized email addresses"
},
"type": "library",
"extra": {
@@ -2034,30 +3095,47 @@
"mail",
"mailer"
],
- "time": "2019-11-12T09:31:26+00:00"
+ "support": {
+ "issues": "https://github.com/swiftmailer/swiftmailer/issues",
+ "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-12T09:35:59+00:00"
},
{
"name": "symfony/console",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "d29e2d36941de13600c399e393a60b8cfe59ac49"
+ "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/d29e2d36941de13600c399e393a60b8cfe59ac49",
- "reference": "d29e2d36941de13600c399e393a60b8cfe59ac49",
+ "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a",
+ "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php73": "^1.8",
- "symfony/service-contracts": "^1.1|^2"
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/service-contracts": "^1.1|^2",
+ "symfony/string": "^5.1"
},
"conflict": {
"symfony/dependency-injection": "<4.4",
+ "symfony/dotenv": "<5.1",
"symfony/event-dispatcher": "<4.4",
"symfony/lock": "<4.4",
"symfony/process": "<4.4"
@@ -2081,11 +3159,6 @@
"symfony/process": ""
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\Console\\": ""
@@ -2108,33 +3181,51 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Console Component",
+ "description": "Eases the creation of beautiful and testable command line interfaces",
"homepage": "https://symfony.com",
- "time": "2020-02-24T15:05:31+00:00"
+ "keywords": [
+ "cli",
+ "command line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-28T22:06:19+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44"
+ "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/a0b51ba9938ccc206d9284de7eb527c2d4550b44",
- "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
+ "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
"shasum": ""
},
"require": {
- "php": "^7.2.5"
+ "php": ">=7.2.5"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\CssSelector\\": ""
@@ -2161,39 +3252,194 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony CssSelector Component",
+ "description": "Converts CSS selectors to XPath expressions",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/css-selector/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:01:46+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
+ },
+ {
+ "name": "symfony/dom-crawler",
+ "version": "v5.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/dom-crawler.git",
+ "reference": "5d89ceb53ec65e1973a555072fac8ed5ecad3384"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/5d89ceb53ec65e1973a555072fac8ed5ecad3384",
+ "reference": "5d89ceb53ec65e1973a555072fac8ed5ecad3384",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "conflict": {
+ "masterminds/html5": "<2.6"
+ },
+ "require-dev": {
+ "masterminds/html5": "^2.6",
+ "symfony/css-selector": "^4.4|^5.0"
+ },
+ "suggest": {
+ "symfony/css-selector": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\DomCrawler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Eases DOM navigation for HTML and XML documents",
"homepage": "https://symfony.com",
- "time": "2020-02-04T09:41:09+00:00"
+ "support": {
+ "source": "https://github.com/symfony/dom-crawler/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:01:46+00:00"
},
{
"name": "symfony/error-handler",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "24a938d9913f42d006ee1ca0164ea1f29c1067ec"
+ "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/24a938d9913f42d006ee1ca0164ea1f29c1067ec",
- "reference": "24a938d9913f42d006ee1ca0164ea1f29c1067ec",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/48f18b3609e120ea66d59142c23dc53e9562c26d",
+ "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
"psr/log": "^1.0",
+ "symfony/polyfill-php80": "^1.15",
"symfony/var-dumper": "^4.4|^5.0"
},
"require-dev": {
+ "symfony/deprecation-contracts": "^2.1",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/serializer": "^4.4|^5.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\ErrorHandler\\": ""
@@ -2216,27 +3462,46 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony ErrorHandler Component",
+ "description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
- "time": "2020-02-29T10:07:09+00:00"
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-28T22:06:19+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "b45ad88b253c5a9702ce218e201d89c85d148cea"
+ "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b45ad88b253c5a9702ce218e201d89c85d148cea",
- "reference": "b45ad88b253c5a9702ce218e201d89c85d148cea",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4f9760f8074978ad82e2ce854dff79a71fe45367",
+ "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
- "symfony/event-dispatcher-contracts": "^2"
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/event-dispatcher-contracts": "^2",
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
"symfony/dependency-injection": "<4.4"
@@ -2249,6 +3514,7 @@
"psr/log": "~1.0",
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/error-handler": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/service-contracts": "^1.1|^2",
@@ -2259,11 +3525,6 @@
"symfony/http-kernel": ""
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\EventDispatcher\\": ""
@@ -2286,26 +3547,43 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony EventDispatcher Component",
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
- "time": "2020-02-22T20:09:08+00:00"
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:36:42+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
- "version": "v2.0.1",
+ "version": "v2.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
+ "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
- "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
+ "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
"psr/event-dispatcher": "^1"
},
"suggest": {
@@ -2314,7 +3592,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -2346,31 +3628,43 @@
"interoperability",
"standards"
],
- "time": "2019-11-18T17:27:11+00:00"
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
},
{
"name": "symfony/finder",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "6251f201187ca9d66f6b099d3de65d279e971138"
+ "reference": "4adc8d172d602008c204c2e16956f99257248e03"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/6251f201187ca9d66f6b099d3de65d279e971138",
- "reference": "6251f201187ca9d66f6b099d3de65d279e971138",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/4adc8d172d602008c204c2e16956f99257248e03",
+ "reference": "4adc8d172d602008c204c2e16956f99257248e03",
"shasum": ""
},
"require": {
- "php": "^7.2.5"
+ "php": ">=7.2.5"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\Finder\\": ""
@@ -2393,41 +3687,138 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Finder Component",
+ "description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
- "time": "2020-02-14T07:43:07+00:00"
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-28T22:06:19+00:00"
},
{
- "name": "symfony/http-foundation",
- "version": "v5.0.5",
+ "name": "symfony/http-client-contracts",
+ "version": "v2.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "6f9c2ba72f4295d7ce6cf9f79dbb18036291d335"
+ "url": "https://github.com/symfony/http-client-contracts.git",
+ "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6f9c2ba72f4295d7ce6cf9f79dbb18036291d335",
- "reference": "6f9c2ba72f4295d7ce6cf9f79dbb18036291d335",
+ "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
+ "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
- "symfony/mime": "^4.4|^5.0",
- "symfony/polyfill-mbstring": "~1.1"
+ "php": ">=7.2.5"
},
- "require-dev": {
- "predis/predis": "~1.0",
- "symfony/expression-language": "^4.4|^5.0"
+ "suggest": {
+ "symfony/http-client-implementation": ""
},
"type": "library",
"extra": {
+ "branch-version": "2.3",
"branch-alias": {
- "dev-master": "5.0-dev"
+ "dev-main": "2.3-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
+ "Symfony\\Contracts\\HttpClient\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to HTTP clients",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-10-14T17:08:19+00:00"
+ },
+ {
+ "name": "symfony/http-foundation",
+ "version": "v5.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/20c554c0f03f7cde5ce230ed248470cccbc34c36",
+ "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "require-dev": {
+ "predis/predis": "~1.0",
+ "symfony/cache": "^4.4|^5.0",
+ "symfony/expression-language": "^4.4|^5.0",
+ "symfony/mime": "^4.4|^5.0"
+ },
+ "suggest": {
+ "symfony/mime": "To use the file extension guesser"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
"Symfony\\Component\\HttpFoundation\\": ""
},
"exclude-from-classmap": [
@@ -2448,38 +3839,59 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony HttpFoundation Component",
+ "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
- "time": "2020-02-14T07:43:07+00:00"
+ "support": {
+ "source": "https://github.com/symfony/http-foundation/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-02-03T04:42:09+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "021d7d54e080405678f2d8c54cb31d0bb03b4520"
+ "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/021d7d54e080405678f2d8c54cb31d0bb03b4520",
- "reference": "021d7d54e080405678f2d8c54cb31d0bb03b4520",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
+ "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
"psr/log": "~1.0",
+ "symfony/deprecation-contracts": "^2.1",
"symfony/error-handler": "^4.4|^5.0",
"symfony/event-dispatcher": "^5.0",
+ "symfony/http-client-contracts": "^1.1|^2",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/polyfill-ctype": "^1.8",
- "symfony/polyfill-php73": "^1.9"
+ "symfony/polyfill-php73": "^1.9",
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
"symfony/browser-kit": "<4.4",
"symfony/cache": "<5.0",
"symfony/config": "<5.0",
- "symfony/dependency-injection": "<4.4",
+ "symfony/console": "<4.4",
+ "symfony/dependency-injection": "<5.1.8",
"symfony/doctrine-bridge": "<5.0",
"symfony/form": "<5.0",
"symfony/http-client": "<5.0",
@@ -2488,7 +3900,7 @@
"symfony/translation": "<5.0",
"symfony/twig-bridge": "<5.0",
"symfony/validator": "<5.0",
- "twig/twig": "<2.4"
+ "twig/twig": "<2.13"
},
"provide": {
"psr/log-implementation": "1.0"
@@ -2499,7 +3911,7 @@
"symfony/config": "^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/css-selector": "^4.4|^5.0",
- "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/dependency-injection": "^5.1.8",
"symfony/dom-crawler": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/finder": "^4.4|^5.0",
@@ -2508,7 +3920,7 @@
"symfony/stopwatch": "^4.4|^5.0",
"symfony/translation": "^4.4|^5.0",
"symfony/translation-contracts": "^1.1|^2",
- "twig/twig": "^2.4|^3.0"
+ "twig/twig": "^2.13|^3.0.4"
},
"suggest": {
"symfony/browser-kit": "",
@@ -2517,11 +3929,6 @@
"symfony/dependency-injection": ""
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\HttpKernel\\": ""
@@ -2544,42 +3951,62 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony HttpKernel Component",
+ "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
- "time": "2020-02-29T10:41:30+00:00"
+ "support": {
+ "source": "https://github.com/symfony/http-kernel/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-02-03T04:51:58+00:00"
},
{
"name": "symfony/mime",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "9b3e5b5e58c56bbd76628c952d2b78556d305f3c"
+ "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/9b3e5b5e58c56bbd76628c952d2b78556d305f3c",
- "reference": "9b3e5b5e58c56bbd76628c952d2b78556d305f3c",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
+ "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
"symfony/polyfill-intl-idn": "^1.10",
- "symfony/polyfill-mbstring": "^1.0"
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
"symfony/mailer": "<4.4"
},
"require-dev": {
"egulias/email-validator": "^2.1.10",
- "symfony/dependency-injection": "^4.4|^5.0"
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^4.4|^5.0",
+ "symfony/property-access": "^4.4|^5.1",
+ "symfony/property-info": "^4.4|^5.1",
+ "symfony/serializer": "^5.2"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\Mime\\": ""
@@ -2602,30 +4029,47 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "A library to manipulate MIME messages",
+ "description": "Allows manipulating MIME messages",
"homepage": "https://symfony.com",
"keywords": [
"mime",
"mime-type"
],
- "time": "2020-02-04T09:41:09+00:00"
+ "support": {
+ "source": "https://github.com/symfony/mime/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-02-02T06:10:15+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.14.0",
+ "version": "v1.22.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38"
+ "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
- "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
+ "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.1"
},
"suggest": {
"ext-ctype": "For best performance"
@@ -2633,7 +4077,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.14-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
@@ -2666,24 +4114,41 @@
"polyfill",
"portable"
],
- "time": "2020-01-13T11:15:53+00:00"
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
},
{
"name": "symfony/polyfill-iconv",
- "version": "v1.14.0",
+ "version": "v1.22.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-iconv.git",
- "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e"
+ "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/926832ce51059bb58211b7b2080a88e0c3b5328e",
- "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e",
+ "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
+ "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.1"
},
"suggest": {
"ext-iconv": "For best performance"
@@ -2691,7 +4156,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.14-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
@@ -2725,25 +4194,123 @@
"portable",
"shim"
],
- "time": "2020-01-13T11:15:53+00:00"
+ "support": {
+ "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.22.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
+ "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's grapheme_* functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.14.0",
+ "version": "v1.22.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a"
+ "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6842f1a39cf7d580655688069a03dd7cd83d244a",
- "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
+ "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "symfony/polyfill-mbstring": "^1.3",
+ "php": ">=7.1",
+ "symfony/polyfill-intl-normalizer": "^1.10",
"symfony/polyfill-php72": "^1.10"
},
"suggest": {
@@ -2752,7 +4319,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.14-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
@@ -2773,6 +4344,10 @@
"email": "laurent@bassin.info"
},
{
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
+ },
+ {
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
@@ -2787,24 +4362,125 @@
"portable",
"shim"
],
- "time": "2020-01-17T12:01:36+00:00"
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.22.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
+ "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T17:09:11+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.14.0",
+ "version": "v1.22.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
+ "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
- "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
+ "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.1"
},
"suggest": {
"ext-mbstring": "For best performance"
@@ -2812,7 +4488,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.14-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
@@ -2846,29 +4526,50 @@
"portable",
"shim"
],
- "time": "2020-01-13T11:15:53+00:00"
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
},
{
"name": "symfony/polyfill-php72",
- "version": "v1.14.0",
+ "version": "v1.22.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf"
+ "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
- "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
+ "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.14-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
@@ -2901,29 +4602,50 @@
"portable",
"shim"
],
- "time": "2020-01-13T11:15:53+00:00"
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
},
{
"name": "symfony/polyfill-php73",
- "version": "v1.14.0",
+ "version": "v1.22.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php73.git",
- "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675"
+ "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/5e66a0fa1070bf46bec4bea7962d285108edd675",
- "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
+ "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.14-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
@@ -2959,31 +4681,127 @@
"portable",
"shim"
],
- "time": "2020-01-13T11:15:53+00:00"
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
},
{
- "name": "symfony/process",
- "version": "v5.0.5",
+ "name": "symfony/polyfill-php80",
+ "version": "v1.22.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "fd4a86dd7e36437f2fc080d8c42c7415d828a0a8"
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/fd4a86dd7e36437f2fc080d8c42c7415d828a0a8",
- "reference": "fd4a86dd7e36437f2fc080d8c42c7415d828a0a8",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
+ "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
"shasum": ""
},
"require": {
- "php": "^7.2.5"
+ "php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.0-dev"
+ "dev-main": "1.22-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
+ ],
+ "time": "2021-01-07T16:49:33+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v5.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
},
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
+ "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-php80": "^1.15"
+ },
+ "type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Process\\": ""
@@ -3006,26 +4824,45 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Process Component",
+ "description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
- "time": "2020-02-08T17:00:58+00:00"
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:15:41+00:00"
},
{
"name": "symfony/routing",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "d6ca39fd05c1902bf34d724ba06fb8044a0b46de"
+ "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/d6ca39fd05c1902bf34d724ba06fb8044a0b46de",
- "reference": "d6ca39fd05c1902bf34d724ba06fb8044a0b46de",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/348b5917e56546c6d96adbf21d7f92c9ef563661",
+ "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661",
"shasum": ""
},
"require": {
- "php": "^7.2.5"
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.1",
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
"symfony/config": "<5.0",
@@ -3033,7 +4870,7 @@
"symfony/yaml": "<4.4"
},
"require-dev": {
- "doctrine/annotations": "~1.2",
+ "doctrine/annotations": "^1.10.4",
"psr/log": "~1.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
@@ -3049,11 +4886,6 @@
"symfony/yaml": "For using the YAML loader"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Symfony\\Component\\Routing\\": ""
@@ -3076,7 +4908,7 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Routing Component",
+ "description": "Maps an HTTP request to a set of configuration variables",
"homepage": "https://symfony.com",
"keywords": [
"router",
@@ -3084,24 +4916,41 @@
"uri",
"url"
],
- "time": "2020-02-25T14:24:11+00:00"
+ "support": {
+ "source": "https://github.com/symfony/routing/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:15:41+00:00"
},
{
"name": "symfony/service-contracts",
- "version": "v2.0.1",
+ "version": "v2.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
- "reference": "144c5e51266b281231e947b51223ba14acf1a749"
+ "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
- "reference": "144c5e51266b281231e947b51223ba14acf1a749",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
+ "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
"psr/container": "^1.0"
},
"suggest": {
@@ -3110,7 +4959,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.2-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -3142,26 +4995,127 @@
"interoperability",
"standards"
],
- "time": "2019-11-18T17:27:11+00:00"
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/master"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-07T11:33:47+00:00"
+ },
+ {
+ "name": "symfony/string",
+ "version": "v5.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/string.git",
+ "reference": "c95468897f408dd0aca2ff582074423dd0455122"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122",
+ "reference": "c95468897f408dd0aca2ff582074423dd0455122",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php80": "~1.15"
+ },
+ "require-dev": {
+ "symfony/error-handler": "^4.4|^5.0",
+ "symfony/http-client": "^4.4|^5.0",
+ "symfony/translation-contracts": "^1.1|^2",
+ "symfony/var-exporter": "^4.4|^5.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\String\\": ""
+ },
+ "files": [
+ "Resources/functions.php"
+ ],
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/string/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-25T15:14:59+00:00"
},
{
"name": "symfony/translation",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b"
+ "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b",
- "reference": "e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/c021864d4354ee55160ddcfd31dc477a1bc77949",
+ "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
+ "php": ">=7.2.5",
"symfony/polyfill-mbstring": "~1.0",
- "symfony/translation-contracts": "^2"
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/translation-contracts": "^2.3"
},
"conflict": {
"symfony/config": "<4.4",
@@ -3190,12 +5144,10 @@
"symfony/yaml": ""
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
"psr-4": {
"Symfony\\Component\\Translation\\": ""
},
@@ -3217,26 +5169,43 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Translation Component",
+ "description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
- "time": "2020-02-04T07:41:34+00:00"
+ "support": {
+ "source": "https://github.com/symfony/translation/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:15:41+00:00"
},
{
"name": "symfony/translation-contracts",
- "version": "v2.0.1",
+ "version": "v2.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation-contracts.git",
- "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
+ "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
- "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
+ "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
"shasum": ""
},
"require": {
- "php": "^7.2.5"
+ "php": ">=7.2.5"
},
"suggest": {
"symfony/translation-implementation": ""
@@ -3244,7 +5213,11 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.3-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -3276,25 +5249,43 @@
"interoperability",
"standards"
],
- "time": "2019-11-18T17:27:11+00:00"
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-09-28T13:05:58+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v5.0.5",
+ "version": "v5.2.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "3a37aeb1132d1035536d3d6aa9cb06c2ff9355e9"
+ "reference": "72ca213014a92223a5d18651ce79ef441c12b694"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3a37aeb1132d1035536d3d6aa9cb06c2ff9355e9",
- "reference": "3a37aeb1132d1035536d3d6aa9cb06c2ff9355e9",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72ca213014a92223a5d18651ce79ef441c12b694",
+ "reference": "72ca213014a92223a5d18651ce79ef441c12b694",
"shasum": ""
},
"require": {
- "php": "^7.2.5",
- "symfony/polyfill-mbstring": "~1.0"
+ "php": ">=7.2.5",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php80": "^1.15"
},
"conflict": {
"phpunit/phpunit": "<5.4.3",
@@ -3304,7 +5295,7 @@
"ext-iconv": "*",
"symfony/console": "^4.4|^5.0",
"symfony/process": "^4.4|^5.0",
- "twig/twig": "^2.4|^3.0"
+ "twig/twig": "^2.13|^3.0.4"
},
"suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
@@ -3315,11 +5306,6 @@
"Resources/bin/var-dump-server"
],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
"autoload": {
"files": [
"Resources/functions/dump.php"
@@ -3345,36 +5331,53 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony mechanism for exploring and dumping PHP variables",
+ "description": "Provides mechanisms for walking through any arbitrary PHP variable",
"homepage": "https://symfony.com",
"keywords": [
"debug",
"dump"
],
- "time": "2020-02-26T22:30:10+00:00"
+ "support": {
+ "source": "https://github.com/symfony/var-dumper/tree/v5.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-27T10:15:41+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
- "version": "2.2.2",
+ "version": "2.2.3",
"source": {
"type": "git",
"url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
- "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
- "php": "^5.5 || ^7.0",
+ "php": "^5.5 || ^7.0 || ^8.0",
"symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
},
"type": "library",
"extra": {
@@ -3400,31 +5403,39 @@
],
"description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
"homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
- "time": "2019-10-24T08:53:34+00:00"
+ "support": {
+ "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
+ },
+ "time": "2020-07-13T06:12:54+00:00"
},
{
"name": "vlucas/phpdotenv",
- "version": "v4.1.2",
+ "version": "v5.3.0",
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "939dfda2d7267ac8fc53ac3d642b5de357554c39"
+ "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/939dfda2d7267ac8fc53ac3d642b5de357554c39",
- "reference": "939dfda2d7267ac8fc53ac3d642b5de357554c39",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
+ "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
"shasum": ""
},
"require": {
- "php": "^5.5.9 || ^7.0",
- "phpoption/phpoption": "^1.7.2",
- "symfony/polyfill-ctype": "^1.9"
+ "ext-pcre": "*",
+ "graham-campbell/result-type": "^1.0.1",
+ "php": "^7.1.3 || ^8.0",
+ "phpoption/phpoption": "^1.7.4",
+ "symfony/polyfill-ctype": "^1.17",
+ "symfony/polyfill-mbstring": "^1.17",
+ "symfony/polyfill-php80": "^1.17"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.3",
+ "bamarni/composer-bin-plugin": "^1.4.1",
"ext-filter": "*",
- "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
+ "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
},
"suggest": {
"ext-filter": "Required to use the boolean validator."
@@ -3432,7 +5443,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.1-dev"
+ "dev-master": "5.3-dev"
}
},
"autoload": {
@@ -3462,27 +5473,41 @@
"env",
"environment"
],
- "time": "2020-03-12T13:44:15+00:00"
+ "support": {
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-01-20T15:23:13+00:00"
},
{
"name": "voku/portable-ascii",
- "version": "1.4.10",
+ "version": "1.5.6",
"source": {
"type": "git",
"url": "https://github.com/voku/portable-ascii.git",
- "reference": "240e93829a5f985fab0984a6e55ae5e26b78a334"
+ "reference": "80953678b19901e5165c56752d087fc11526017c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/voku/portable-ascii/zipball/240e93829a5f985fab0984a6e55ae5e26b78a334",
- "reference": "240e93829a5f985fab0984a6e55ae5e26b78a334",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
+ "reference": "80953678b19901e5165c56752d087fc11526017c",
"shasum": ""
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
- "phpunit/phpunit": "~6.0 || ~7.0"
+ "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
},
"suggest": {
"ext-intl": "Use Intl for transliterator_transliterate() support"
@@ -3490,8 +5515,7 @@
"type": "library",
"autoload": {
"psr-4": {
- "voku\\": "src/voku/",
- "voku\\tests\\": "tests/"
+ "voku\\": "src/voku/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3511,42 +5535,116 @@
"clean",
"php"
],
- "time": "2020-03-13T01:23:26+00:00"
+ "support": {
+ "issues": "https://github.com/voku/portable-ascii/issues",
+ "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.me/moelleken",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/voku",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/portable-ascii",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://www.patreon.com/voku",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-12T00:07:28+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozarts/assert.git",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.3 || ^7.0 || ^8.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<0.12.20",
+ "vimeo/psalm": "<3.9.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "support": {
+ "issues": "https://github.com/webmozarts/assert/issues",
+ "source": "https://github.com/webmozarts/assert/tree/1.9.1"
+ },
+ "time": "2020-07-08T17:02:28+00:00"
}
],
"packages-dev": [
{
"name": "doctrine/instantiator",
- "version": "1.3.0",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
- "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
+ "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
- "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
+ "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": "^7.1 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^6.0",
+ "doctrine/coding-standard": "^8.0",
"ext-pdo": "*",
"ext-phar": "*",
- "phpbench/phpbench": "^0.13",
- "phpstan/phpstan-phpunit": "^0.11",
- "phpstan/phpstan-shim": "^0.11",
- "phpunit/phpunit": "^7.0"
+ "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2.x-dev"
- }
- },
"autoload": {
"psr-4": {
"Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
@@ -3560,7 +5658,7 @@
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
- "homepage": "http://ocramius.github.com/"
+ "homepage": "https://ocramius.github.io/"
}
],
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
@@ -3569,31 +5667,50 @@
"constructor",
"instantiate"
],
- "time": "2019-10-21T16:45:58+00:00"
+ "support": {
+ "issues": "https://github.com/doctrine/instantiator/issues",
+ "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-10T18:47:58+00:00"
},
{
"name": "facade/flare-client-php",
- "version": "1.3.2",
+ "version": "1.3.7",
"source": {
"type": "git",
"url": "https://github.com/facade/flare-client-php.git",
- "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004"
+ "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/facade/flare-client-php/zipball/db1e03426e7f9472c9ecd1092aff00f56aa6c004",
- "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004",
+ "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
+ "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
"shasum": ""
},
"require": {
"facade/ignition-contracts": "~1.0",
- "illuminate/pipeline": "^5.5|^6.0|^7.0",
- "php": "^7.1",
+ "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
+ "php": "^7.1|^8.0",
"symfony/http-foundation": "^3.3|^4.1|^5.0",
+ "symfony/mime": "^3.4|^4.0|^5.1",
"symfony/var-dumper": "^3.4|^4.0|^5.0"
},
"require-dev": {
- "larapack/dd": "^1.1",
+ "friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^7.5.16",
"spatie/phpunit-snapshot-assertions": "^2.0"
},
@@ -3623,39 +5740,49 @@
"flare",
"reporting"
],
- "time": "2020-03-02T15:52:04+00:00"
+ "support": {
+ "issues": "https://github.com/facade/flare-client-php/issues",
+ "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-21T16:02:39+00:00"
},
{
"name": "facade/ignition",
- "version": "2.0.2",
+ "version": "2.5.11",
"source": {
"type": "git",
"url": "https://github.com/facade/ignition.git",
- "reference": "67f1677954ad33ca6b77f2c41cf43a58624f27fc"
+ "reference": "e91d67353054bf827c64687fcac5ea44e4dcec54"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/facade/ignition/zipball/67f1677954ad33ca6b77f2c41cf43a58624f27fc",
- "reference": "67f1677954ad33ca6b77f2c41cf43a58624f27fc",
+ "url": "https://api.github.com/repos/facade/ignition/zipball/e91d67353054bf827c64687fcac5ea44e4dcec54",
+ "reference": "e91d67353054bf827c64687fcac5ea44e4dcec54",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
- "facade/flare-client-php": "^1.0",
- "facade/ignition-contracts": "^1.0",
+ "facade/flare-client-php": "^1.3.7",
+ "facade/ignition-contracts": "^1.0.2",
"filp/whoops": "^2.4",
- "illuminate/support": "^7.0",
+ "illuminate/support": "^7.0|^8.0",
"monolog/monolog": "^2.0",
- "php": "^7.2.5",
- "scrivo/highlight.php": "^9.15",
+ "php": "^7.2.5|^8.0",
"symfony/console": "^5.0",
"symfony/var-dumper": "^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"mockery/mockery": "^1.3",
- "orchestra/testbench": "5.0"
+ "orchestra/testbench": "^5.0|^6.0",
+ "psalm/plugin-laravel": "^1.2"
},
"suggest": {
"laravel/telescope": "^3.1"
@@ -3694,24 +5821,35 @@
"laravel",
"page"
],
- "time": "2020-03-18T19:20:44+00:00"
+ "support": {
+ "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
+ "forum": "https://twitter.com/flareappio",
+ "issues": "https://github.com/facade/ignition/issues",
+ "source": "https://github.com/facade/ignition"
+ },
+ "time": "2021-02-05T12:52:11+00:00"
},
{
"name": "facade/ignition-contracts",
- "version": "1.0.0",
+ "version": "1.0.2",
"source": {
"type": "git",
"url": "https://github.com/facade/ignition-contracts.git",
- "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
+ "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
- "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
+ "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
+ "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": "^7.3|^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^v2.15.8",
+ "phpunit/phpunit": "^9.3.11",
+ "vimeo/psalm": "^3.17.1"
},
"type": "library",
"autoload": {
@@ -3738,29 +5876,33 @@
"flare",
"ignition"
],
- "time": "2019-08-30T14:06:08+00:00"
+ "support": {
+ "issues": "https://github.com/facade/ignition-contracts/issues",
+ "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
+ },
+ "time": "2020-10-16T08:27:54+00:00"
},
{
"name": "filp/whoops",
- "version": "2.7.1",
+ "version": "2.9.2",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130"
+ "reference": "df7933820090489623ce0be5e85c7e693638e536"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
- "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
+ "reference": "df7933820090489623ce0be5e85c7e693638e536",
"shasum": ""
},
"require": {
- "php": "^5.5.9 || ^7.0",
+ "php": "^5.5.9 || ^7.0 || ^8.0",
"psr/log": "^1.0.1"
},
"require-dev": {
"mockery/mockery": "^0.9 || ^1.0",
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
"symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
},
"suggest": {
@@ -3770,7 +5912,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.6-dev"
+ "dev-master": "2.7-dev"
}
},
"autoload": {
@@ -3799,20 +5941,30 @@
"throwable",
"whoops"
],
- "time": "2020-01-15T10:00:00+00:00"
+ "support": {
+ "issues": "https://github.com/filp/whoops/issues",
+ "source": "https://github.com/filp/whoops/tree/2.9.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/denis-sokolov",
+ "type": "github"
+ }
+ ],
+ "time": "2021-01-24T12:00:00+00:00"
},
{
"name": "fzaninotto/faker",
- "version": "v1.9.1",
+ "version": "v1.9.2",
"source": {
"type": "git",
"url": "https://github.com/fzaninotto/Faker.git",
- "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
+ "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
- "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
+ "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
+ "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
"shasum": ""
},
"require": {
@@ -3849,24 +6001,29 @@
"faker",
"fixtures"
],
- "time": "2019-12-12T13:22:17+00:00"
+ "support": {
+ "issues": "https://github.com/fzaninotto/Faker/issues",
+ "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
+ },
+ "abandoned": true,
+ "time": "2020-12-11T09:56:16+00:00"
},
{
"name": "hamcrest/hamcrest-php",
- "version": "v2.0.0",
+ "version": "v2.0.1",
"source": {
"type": "git",
"url": "https://github.com/hamcrest/hamcrest-php.git",
- "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
- "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
"shasum": ""
},
"require": {
- "php": "^5.3|^7.0"
+ "php": "^5.3|^7.0|^8.0"
},
"replace": {
"cordoval/hamcrest-php": "*",
@@ -3874,14 +6031,13 @@
"kodova/hamcrest-php": "*"
},
"require-dev": {
- "phpunit/php-file-iterator": "1.3.3",
- "phpunit/phpunit": "~4.0",
- "satooshi/php-coveralls": "^1.0"
+ "phpunit/php-file-iterator": "^1.4 || ^2.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.1-dev"
}
},
"autoload": {
@@ -3891,40 +6047,43 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD"
+ "BSD-3-Clause"
],
"description": "This is the PHP port of Hamcrest Matchers",
"keywords": [
"test"
],
- "time": "2016-01-20T08:20:44+00:00"
+ "support": {
+ "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
+ },
+ "time": "2020-07-09T08:09:16+00:00"
},
{
"name": "laravel/ui",
- "version": "v2.0.1",
+ "version": "v3.2.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/ui.git",
- "reference": "47a0a1dac76f5e73803c86e1f38b2c7e0ae7fa83"
+ "reference": "a1f82c6283c8373ea1958b8a27c3d5c98cade351"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/ui/zipball/47a0a1dac76f5e73803c86e1f38b2c7e0ae7fa83",
- "reference": "47a0a1dac76f5e73803c86e1f38b2c7e0ae7fa83",
+ "url": "https://api.github.com/repos/laravel/ui/zipball/a1f82c6283c8373ea1958b8a27c3d5c98cade351",
+ "reference": "a1f82c6283c8373ea1958b8a27c3d5c98cade351",
"shasum": ""
},
"require": {
- "illuminate/console": "^7.0",
- "illuminate/filesystem": "^7.0",
- "illuminate/support": "^7.0",
- "php": "^7.2.5"
- },
- "require-dev": {
- "mockery/mockery": "^1.0",
- "phpunit/phpunit": "^8.0"
+ "illuminate/console": "^8.0",
+ "illuminate/filesystem": "^8.0",
+ "illuminate/support": "^8.0",
+ "php": "^7.3|^8.0"
},
"type": "library",
"extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ },
"laravel": {
"providers": [
"Laravel\\Ui\\UiServiceProvider"
@@ -3952,34 +6111,41 @@
"laravel",
"ui"
],
- "time": "2020-03-03T20:16:46+00:00"
+ "support": {
+ "issues": "https://github.com/laravel/ui/issues",
+ "source": "https://github.com/laravel/ui/tree/v3.2.0"
+ },
+ "time": "2021-01-06T19:20:22+00:00"
},
{
"name": "mockery/mockery",
- "version": "1.3.1",
+ "version": "1.4.2",
"source": {
"type": "git",
"url": "https://github.com/mockery/mockery.git",
- "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
+ "reference": "20cab678faed06fac225193be281ea0fddb43b93"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
- "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
+ "reference": "20cab678faed06fac225193be281ea0fddb43b93",
"shasum": ""
},
"require": {
- "hamcrest/hamcrest-php": "~2.0",
+ "hamcrest/hamcrest-php": "^2.0.1",
"lib-pcre": ">=7.0",
- "php": ">=5.6.0"
+ "php": "^7.3 || ^8.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<8.0"
},
"require-dev": {
- "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
+ "phpunit/phpunit": "^8.5 || ^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "1.4.x-dev"
}
},
"autoload": {
@@ -4017,24 +6183,28 @@
"test double",
"testing"
],
- "time": "2019-12-26T09:49:15+00:00"
+ "support": {
+ "issues": "https://github.com/mockery/mockery/issues",
+ "source": "https://github.com/mockery/mockery/tree/master"
+ },
+ "time": "2020-08-11T18:10:13+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.9.5",
+ "version": "1.10.2",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
+ "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
- "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
+ "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": "^7.1 || ^8.0"
},
"replace": {
"myclabs/deep-copy": "self.version"
@@ -4065,39 +6235,49 @@
"object",
"object graph"
],
- "time": "2020-01-17T21:11:47+00:00"
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-11-13T09:40:50+00:00"
},
{
"name": "nunomaduro/collision",
- "version": "v4.1.3",
+ "version": "v5.3.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "a430bce33d1ad07f756ea6cae9afce9ef8670b42"
+ "reference": "aca63581f380f63a492b1e3114604e411e39133a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/a430bce33d1ad07f756ea6cae9afce9ef8670b42",
- "reference": "a430bce33d1ad07f756ea6cae9afce9ef8670b42",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/aca63581f380f63a492b1e3114604e411e39133a",
+ "reference": "aca63581f380f63a492b1e3114604e411e39133a",
"shasum": ""
},
"require": {
"facade/ignition-contracts": "^1.0",
- "filp/whoops": "^2.4",
- "jakub-onderka/php-console-highlighter": "^0.4",
- "php": "^7.2.5",
+ "filp/whoops": "^2.7.2",
+ "php": "^7.3 || ^8.0",
"symfony/console": "^5.0"
},
"require-dev": {
- "facade/ignition": "^2.0",
- "fideloper/proxy": "^4.2",
- "fruitcake/laravel-cors": "^1.0",
- "laravel/framework": "^7.0",
- "laravel/tinker": "^2.0",
- "nunomaduro/larastan": "^0.5",
- "orchestra/testbench": "^5.0",
- "phpstan/phpstan": "^0.12.3",
- "phpunit/phpunit": "^8.5.1 || ^9.0"
+ "brianium/paratest": "^6.1",
+ "fideloper/proxy": "^4.4.1",
+ "friendsofphp/php-cs-fixer": "^2.17.3",
+ "fruitcake/laravel-cors": "^2.0.3",
+ "laravel/framework": "^9.0",
+ "nunomaduro/larastan": "^0.6.2",
+ "nunomaduro/mock-final-classes": "^1.0",
+ "orchestra/testbench": "^7.0",
+ "phpstan/phpstan": "^0.12.64",
+ "phpunit/phpunit": "^9.5.0"
},
"type": "library",
"extra": {
@@ -4135,32 +6315,51 @@
"php",
"symfony"
],
- "time": "2020-03-07T12:46:00+00:00"
+ "support": {
+ "issues": "https://github.com/nunomaduro/collision/issues",
+ "source": "https://github.com/nunomaduro/collision"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/nunomaduro",
+ "type": "patreon"
+ }
+ ],
+ "time": "2021-01-25T15:34:13+00:00"
},
{
"name": "phar-io/manifest",
- "version": "1.0.3",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/phar-io/manifest.git",
- "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
+ "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
- "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
+ "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-phar": "*",
- "phar-io/version": "^2.0",
- "php": "^5.6 || ^7.0"
+ "ext-xmlwriter": "*",
+ "phar-io/version": "^3.0.1",
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -4190,24 +6389,28 @@
}
],
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
- "time": "2018-07-08T19:23:20+00:00"
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/master"
+ },
+ "time": "2020-06-27T14:33:11+00:00"
},
{
"name": "phar-io/version",
- "version": "2.0.1",
+ "version": "3.0.4",
"source": {
"type": "git",
"url": "https://github.com/phar-io/version.git",
- "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
+ "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
- "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
+ "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"autoload": {
@@ -4237,32 +6440,33 @@
}
],
"description": "Library for handling version information and constraints",
- "time": "2018-07-08T19:19:57+00:00"
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/3.0.4"
+ },
+ "time": "2020-12-13T23:18:30+00:00"
},
{
"name": "phpdocumentor/reflection-common",
- "version": "2.0.0",
+ "version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
- "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
- "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~6"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.x-dev"
+ "dev-2.x": "2.x-dev"
}
},
"autoload": {
@@ -4289,32 +6493,35 @@
"reflection",
"static analysis"
],
- "time": "2018-08-07T13:53:10+00:00"
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+ },
+ "time": "2020-06-27T09:03:43+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "5.1.0",
+ "version": "5.2.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
- "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
"shasum": ""
},
"require": {
- "ext-filter": "^7.1",
- "php": "^7.2",
- "phpdocumentor/reflection-common": "^2.0",
- "phpdocumentor/type-resolver": "^1.0",
- "webmozart/assert": "^1"
+ "ext-filter": "*",
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.3",
+ "webmozart/assert": "^1.9.1"
},
"require-dev": {
- "doctrine/instantiator": "^1",
- "mockery/mockery": "^1"
+ "mockery/mockery": "~1.3.2"
},
"type": "library",
"extra": {
@@ -4342,34 +6549,37 @@
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
- "time": "2020-02-22T12:28:44+00:00"
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
+ },
+ "time": "2020-09-03T19:13:55+00:00"
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.1.0",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
- "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
"shasum": ""
},
"require": {
- "php": "^7.2",
+ "php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
- "ext-tokenizer": "^7.2",
- "mockery/mockery": "~1"
+ "ext-tokenizer": "*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-1.x": "1.x-dev"
}
},
"autoload": {
@@ -4388,37 +6598,41 @@
}
],
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
- "time": "2020-02-18T18:59:58+00:00"
+ "support": {
+ "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
+ },
+ "time": "2020-09-17T18:55:26+00:00"
},
{
"name": "phpspec/prophecy",
- "version": "v1.10.3",
+ "version": "1.12.2",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "451c3cd1418cf640de218914901e51b064abb093"
+ "reference": "245710e971a030f42e08f4912863805570f23d39"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
- "reference": "451c3cd1418cf640de218914901e51b064abb093",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
+ "reference": "245710e971a030f42e08f4912863805570f23d39",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.0.2",
- "php": "^5.3|^7.0",
- "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
- "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
- "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
+ "doctrine/instantiator": "^1.2",
+ "php": "^7.2 || ~8.0, <8.1",
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "sebastian/comparator": "^3.0 || ^4.0",
+ "sebastian/recursion-context": "^3.0 || ^4.0"
},
"require-dev": {
- "phpspec/phpspec": "^2.5 || ^3.2",
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
+ "phpspec/phpspec": "^6.0",
+ "phpunit/phpunit": "^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.10.x-dev"
+ "dev-master": "1.11.x-dev"
}
},
"autoload": {
@@ -4451,44 +6665,52 @@
"spy",
"stub"
],
- "time": "2020-03-05T15:02:03+00:00"
+ "support": {
+ "issues": "https://github.com/phpspec/prophecy/issues",
+ "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
+ },
+ "time": "2020-12-19T10:15:11+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "7.0.10",
+ "version": "9.2.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
+ "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
- "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
+ "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
"shasum": ""
},
"require": {
"ext-dom": "*",
+ "ext-libxml": "*",
"ext-xmlwriter": "*",
- "php": "^7.2",
- "phpunit/php-file-iterator": "^2.0.2",
- "phpunit/php-text-template": "^1.2.1",
- "phpunit/php-token-stream": "^3.1.1",
- "sebastian/code-unit-reverse-lookup": "^1.0.1",
- "sebastian/environment": "^4.2.2",
- "sebastian/version": "^2.0.1",
- "theseer/tokenizer": "^1.1.3"
+ "nikic/php-parser": "^4.10.2",
+ "php": ">=7.3",
+ "phpunit/php-file-iterator": "^3.0.3",
+ "phpunit/php-text-template": "^2.0.2",
+ "sebastian/code-unit-reverse-lookup": "^2.0.2",
+ "sebastian/complexity": "^2.0",
+ "sebastian/environment": "^5.1.2",
+ "sebastian/lines-of-code": "^1.0.3",
+ "sebastian/version": "^3.0.1",
+ "theseer/tokenizer": "^1.2.0"
},
"require-dev": {
- "phpunit/phpunit": "^8.2.2"
+ "phpunit/phpunit": "^9.3"
},
"suggest": {
- "ext-xdebug": "^2.7.2"
+ "ext-pcov": "*",
+ "ext-xdebug": "*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "7.0-dev"
+ "dev-master": "9.2-dev"
}
},
"autoload": {
@@ -4514,32 +6736,42 @@
"testing",
"xunit"
],
- "time": "2019-11-20T13:55:58+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-28T06:44:49+00:00"
},
{
"name": "phpunit/php-file-iterator",
- "version": "2.0.2",
+ "version": "3.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "050bedf145a257b1ff02746c31894800e5122946"
+ "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
- "reference": "050bedf145a257b1ff02746c31894800e5122946",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
+ "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^7.1"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-master": "3.0-dev"
}
},
"autoload": {
@@ -4564,26 +6796,48 @@
"filesystem",
"iterator"
],
- "time": "2018-09-13T20:33:42+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T05:57:25+00:00"
},
{
- "name": "phpunit/php-text-template",
- "version": "1.2.1",
+ "name": "phpunit/php-invoker",
+ "version": "3.1.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
+ "url": "https://github.com/sebastianbergmann/php-invoker.git",
+ "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
+ "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=7.3"
+ },
+ "require-dev": {
+ "ext-pcntl": "*",
+ "phpunit/phpunit": "^9.3"
+ },
+ "suggest": {
+ "ext-pcntl": "*"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1-dev"
+ }
+ },
"autoload": {
"classmap": [
"src/"
@@ -4600,37 +6854,47 @@
"role": "lead"
}
],
- "description": "Simple template engine.",
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "description": "Invoke callables with a timeout",
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
"keywords": [
- "template"
+ "process"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
],
- "time": "2015-06-21T13:50:34+00:00"
+ "time": "2020-09-28T05:58:55+00:00"
},
{
- "name": "phpunit/php-timer",
- "version": "2.1.2",
+ "name": "phpunit/php-text-template",
+ "version": "2.0.4",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
- "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
+ "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^7.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.1-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
@@ -4649,38 +6913,47 @@
"role": "lead"
}
],
- "description": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
"keywords": [
- "timer"
+ "template"
],
- "time": "2019-06-07T04:22:29+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T05:33:50+00:00"
},
{
- "name": "phpunit/php-token-stream",
- "version": "3.1.1",
+ "name": "phpunit/php-timer",
+ "version": "5.0.3",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
- "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
+ "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
"shasum": ""
},
"require": {
- "ext-tokenizer": "*",
- "php": "^7.1"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^7.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "5.0-dev"
}
},
"autoload": {
@@ -4695,64 +6968,78 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Wrapper around PHP's tokenizer extension.",
- "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
"keywords": [
- "tokenizer"
+ "timer"
],
- "time": "2019-09-17T06:23:10+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T13:16:10+00:00"
},
{
"name": "phpunit/phpunit",
- "version": "8.5.2",
+ "version": "9.5.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0"
+ "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
- "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4",
+ "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.2.0",
+ "doctrine/instantiator": "^1.3.1",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.9.1",
- "phar-io/manifest": "^1.0.3",
- "phar-io/version": "^2.0.1",
- "php": "^7.2",
- "phpspec/prophecy": "^1.8.1",
- "phpunit/php-code-coverage": "^7.0.7",
- "phpunit/php-file-iterator": "^2.0.2",
- "phpunit/php-text-template": "^1.2.1",
- "phpunit/php-timer": "^2.1.2",
- "sebastian/comparator": "^3.0.2",
- "sebastian/diff": "^3.0.2",
- "sebastian/environment": "^4.2.2",
- "sebastian/exporter": "^3.1.1",
- "sebastian/global-state": "^3.0.0",
- "sebastian/object-enumerator": "^3.0.3",
- "sebastian/resource-operations": "^2.0.1",
- "sebastian/type": "^1.1.3",
- "sebastian/version": "^2.0.1"
+ "myclabs/deep-copy": "^1.10.1",
+ "phar-io/manifest": "^2.0.1",
+ "phar-io/version": "^3.0.2",
+ "php": ">=7.3",
+ "phpspec/prophecy": "^1.12.1",
+ "phpunit/php-code-coverage": "^9.2.3",
+ "phpunit/php-file-iterator": "^3.0.5",
+ "phpunit/php-invoker": "^3.1.1",
+ "phpunit/php-text-template": "^2.0.3",
+ "phpunit/php-timer": "^5.0.2",
+ "sebastian/cli-parser": "^1.0.1",
+ "sebastian/code-unit": "^1.0.6",
+ "sebastian/comparator": "^4.0.5",
+ "sebastian/diff": "^4.0.3",
+ "sebastian/environment": "^5.1.3",
+ "sebastian/exporter": "^4.0.3",
+ "sebastian/global-state": "^5.0.1",
+ "sebastian/object-enumerator": "^4.0.3",
+ "sebastian/resource-operations": "^3.0.3",
+ "sebastian/type": "^2.3",
+ "sebastian/version": "^3.0.2"
},
"require-dev": {
- "ext-pdo": "*"
+ "ext-pdo": "*",
+ "phpspec/prophecy-phpunit": "^2.0.1"
},
"suggest": {
"ext-soap": "*",
- "ext-xdebug": "*",
- "phpunit/php-invoker": "^2.0.0"
+ "ext-xdebug": "*"
},
"bin": [
"phpunit"
@@ -4760,12 +7047,15 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "8.5-dev"
+ "dev-master": "9.5-dev"
}
},
"autoload": {
"classmap": [
"src/"
+ ],
+ "files": [
+ "src/Framework/Assert/Functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4786,44 +7076,51 @@
"testing",
"xunit"
],
- "time": "2020-01-08T08:49:49+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2"
+ },
+ "funding": [
+ {
+ "url": "https://phpunit.de/donate.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2021-02-02T14:45:58+00:00"
},
{
- "name": "scrivo/highlight.php",
- "version": "v9.18.1.1",
+ "name": "sebastian/cli-parser",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/scrivo/highlight.php.git",
- "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
+ "url": "https://github.com/sebastianbergmann/cli-parser.git",
+ "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
- "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
+ "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": ">=5.4"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^4.8|^5.7",
- "sabberworm/php-css-parser": "^8.3",
- "symfony/finder": "^2.8|^3.4",
- "symfony/var-dumper": "^2.8|^3.4"
- },
- "suggest": {
- "ext-dom": "Needed to make use of the features in the utilities namespace"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
"autoload": {
- "psr-0": {
- "Highlight\\": "",
- "HighlightUtilities\\": ""
- },
- "files": [
- "HighlightUtilities/functions.php"
+ "classmap": [
+ "src/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4832,55 +7129,105 @@
],
"authors": [
{
- "name": "Geert Bergman",
- "homepage": "http://www.scrivo.org/",
- "role": "Project Author"
- },
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for parsing CLI options",
+ "homepage": "https://github.com/sebastianbergmann/cli-parser",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
+ },
+ "funding": [
{
- "name": "Vladimir Jimenez",
- "homepage": "https://allejo.io",
- "role": "Maintainer"
- },
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T06:08:49+00:00"
+ },
+ {
+ "name": "sebastian/code-unit",
+ "version": "1.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit.git",
+ "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
+ "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
{
- "name": "Martin Folkers",
- "homepage": "https://twobrain.io",
- "role": "Contributor"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
- "keywords": [
- "code",
- "highlight",
- "highlight.js",
- "highlight.php",
- "syntax"
+ "description": "Collection of value objects that represent the PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/code-unit",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
],
- "time": "2020-03-02T05:59:21+00:00"
+ "time": "2020-10-26T13:08:54+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
- "version": "1.0.1",
+ "version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
+ "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
- "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
+ "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
@@ -4900,34 +7247,44 @@
],
"description": "Looks up which function or method a line of code belongs to",
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "time": "2017-03-04T06:30:41+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T05:30:19+00:00"
},
{
"name": "sebastian/comparator",
- "version": "3.0.2",
+ "version": "4.0.6",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
+ "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
- "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
+ "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
"shasum": ""
},
"require": {
- "php": "^7.1",
- "sebastian/diff": "^3.0",
- "sebastian/exporter": "^3.1"
+ "php": ">=7.3",
+ "sebastian/diff": "^4.0",
+ "sebastian/exporter": "^4.0"
},
"require-dev": {
- "phpunit/phpunit": "^7.1"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -4941,6 +7298,10 @@
],
"authors": [
{
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
"name": "Jeff Welch",
"email": "whatthejeff@gmail.com"
},
@@ -4951,10 +7312,6 @@
{
"name": "Bernhard Schussek",
"email": "bschussek@2bepublished.at"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
}
],
"description": "Provides the functionality to compare PHP values for equality",
@@ -4964,33 +7321,100 @@
"compare",
"equality"
],
- "time": "2018-07-12T15:12:46+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T15:49:45+00:00"
+ },
+ {
+ "name": "sebastian/complexity",
+ "version": "2.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/complexity.git",
+ "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
+ "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^4.7",
+ "php": ">=7.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for calculating the complexity of PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/complexity",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/complexity/issues",
+ "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T15:52:27+00:00"
},
{
"name": "sebastian/diff",
- "version": "3.0.2",
+ "version": "4.0.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
+ "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
- "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
+ "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^7.5 || ^8.0",
- "symfony/process": "^2 || ^3.3 || ^4"
+ "phpunit/phpunit": "^9.3",
+ "symfony/process": "^4.2 || ^5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -5004,12 +7428,12 @@
],
"authors": [
{
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- },
- {
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
}
],
"description": "Diff implementation",
@@ -5020,27 +7444,37 @@
"unidiff",
"unified diff"
],
- "time": "2019-02-04T06:01:07+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T13:10:38+00:00"
},
{
"name": "sebastian/environment",
- "version": "4.2.3",
+ "version": "5.1.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
+ "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
- "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
+ "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^7.5"
+ "phpunit/phpunit": "^9.3"
},
"suggest": {
"ext-posix": "*"
@@ -5048,7 +7482,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.2-dev"
+ "dev-master": "5.1-dev"
}
},
"autoload": {
@@ -5073,34 +7507,44 @@
"environment",
"hhvm"
],
- "time": "2019-11-20T08:46:58+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T05:52:38+00:00"
},
{
"name": "sebastian/exporter",
- "version": "3.1.2",
+ "version": "4.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
+ "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
- "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
+ "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
"shasum": ""
},
"require": {
- "php": "^7.0",
- "sebastian/recursion-context": "^3.0"
+ "php": ">=7.3",
+ "sebastian/recursion-context": "^4.0"
},
"require-dev": {
"ext-mbstring": "*",
- "phpunit/phpunit": "^6.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1.x-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -5140,30 +7584,40 @@
"export",
"exporter"
],
- "time": "2019-09-14T09:02:43+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T05:24:23+00:00"
},
{
"name": "sebastian/global-state",
- "version": "3.0.0",
+ "version": "5.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
+ "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
- "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
+ "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
"shasum": ""
},
"require": {
- "php": "^7.2",
- "sebastian/object-reflector": "^1.1.1",
- "sebastian/recursion-context": "^3.0"
+ "php": ">=7.3",
+ "sebastian/object-reflector": "^2.0",
+ "sebastian/recursion-context": "^4.0"
},
"require-dev": {
"ext-dom": "*",
- "phpunit/phpunit": "^8.0"
+ "phpunit/phpunit": "^9.3"
},
"suggest": {
"ext-uopz": "*"
@@ -5171,7 +7625,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "5.0-dev"
}
},
"autoload": {
@@ -5194,34 +7648,101 @@
"keywords": [
"global state"
],
- "time": "2019-02-01T05:30:01+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T15:55:19+00:00"
+ },
+ {
+ "name": "sebastian/lines-of-code",
+ "version": "1.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/lines-of-code.git",
+ "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
+ "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^4.6",
+ "php": ">=7.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for counting the lines of code in PHP source code",
+ "homepage": "https://github.com/sebastianbergmann/lines-of-code",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-11-28T06:42:11+00:00"
},
{
"name": "sebastian/object-enumerator",
- "version": "3.0.3",
+ "version": "4.0.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
+ "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
- "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
+ "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
"shasum": ""
},
"require": {
- "php": "^7.0",
- "sebastian/object-reflector": "^1.1.1",
- "sebastian/recursion-context": "^3.0"
+ "php": ">=7.3",
+ "sebastian/object-reflector": "^2.0",
+ "sebastian/recursion-context": "^4.0"
},
"require-dev": {
- "phpunit/phpunit": "^6.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0.x-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -5241,32 +7762,42 @@
],
"description": "Traverses array structures and object graphs to enumerate all referenced objects",
"homepage": "https://github.com/sebastianbergmann/object-enumerator/",
- "time": "2017-08-03T12:35:26+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T13:12:34+00:00"
},
{
"name": "sebastian/object-reflector",
- "version": "1.1.1",
+ "version": "2.0.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "773f97c67f28de00d397be301821b06708fca0be"
+ "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
- "reference": "773f97c67f28de00d397be301821b06708fca0be",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
+ "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
"shasum": ""
},
"require": {
- "php": "^7.0"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^6.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
@@ -5286,32 +7817,42 @@
],
"description": "Allows reflection of object attributes, including inherited and non-public ones",
"homepage": "https://github.com/sebastianbergmann/object-reflector/",
- "time": "2017-03-29T09:07:27+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T13:14:26+00:00"
},
{
"name": "sebastian/recursion-context",
- "version": "3.0.0",
+ "version": "4.0.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
+ "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
- "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
+ "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
"shasum": ""
},
"require": {
- "php": "^7.0"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^6.0"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0.x-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -5325,43 +7866,56 @@
],
"authors": [
{
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de"
},
{
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
"name": "Adam Harvey",
"email": "aharvey@php.net"
}
],
"description": "Provides functionality to recursively process PHP variables",
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2017-03-03T06:23:57+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T13:17:30+00:00"
},
{
"name": "sebastian/resource-operations",
- "version": "2.0.1",
+ "version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/resource-operations.git",
- "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
+ "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
- "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
+ "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
+ "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
"shasum": ""
},
"require": {
- "php": "^7.1"
+ "php": ">=7.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "3.0-dev"
}
},
"autoload": {
@@ -5381,32 +7935,42 @@
],
"description": "Provides a list of PHP built-in functions that operate on resources",
"homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "time": "2018-10-04T04:07:39+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
+ "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T06:45:17+00:00"
},
{
"name": "sebastian/type",
- "version": "1.1.3",
+ "version": "2.3.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
- "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
+ "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
- "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
+ "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
"shasum": ""
},
"require": {
- "php": "^7.2"
+ "php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^8.2"
+ "phpunit/phpunit": "^9.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1-dev"
+ "dev-master": "2.3-dev"
}
},
"autoload": {
@@ -5427,29 +7991,39 @@
],
"description": "Collection of value objects that represent the types of the PHP type system",
"homepage": "https://github.com/sebastianbergmann/type",
- "time": "2019-07-02T08:10:15+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/type/issues",
+ "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-10-26T13:18:59+00:00"
},
{
"name": "sebastian/version",
- "version": "2.0.1",
+ "version": "3.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/version.git",
- "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
+ "reference": "c6c1022351a901512170118436c764e473f6de8c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
- "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
+ "reference": "c6c1022351a901512170118436c764e473f6de8c",
"shasum": ""
},
"require": {
- "php": ">=5.6"
+ "php": ">=7.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-master": "3.0-dev"
}
},
"autoload": {
@@ -5470,27 +8044,37 @@
],
"description": "Library that helps with managing the version number of Git-hosted PHP projects",
"homepage": "https://github.com/sebastianbergmann/version",
- "time": "2016-10-03T07:35:21+00:00"
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-09-28T06:39:44+00:00"
},
{
"name": "theseer/tokenizer",
- "version": "1.1.3",
+ "version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/theseer/tokenizer.git",
- "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
+ "reference": "75a63c33a8577608444246075ea0af0d052e452a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
- "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
+ "reference": "75a63c33a8577608444246075ea0af0d052e452a",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
- "php": "^7.0"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"autoload": {
@@ -5510,55 +8094,17 @@
}
],
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
- "time": "2019-06-13T22:48:21+00:00"
- },
- {
- "name": "webmozart/assert",
- "version": "1.7.0",
- "source": {
- "type": "git",
- "url": "https://github.com/webmozart/assert.git",
- "reference": "aed98a490f9a8f78468232db345ab9cf606cf598"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598",
- "reference": "aed98a490f9a8f78468232db345ab9cf606cf598",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.3 || ^7.0",
- "symfony/polyfill-ctype": "^1.8"
- },
- "conflict": {
- "vimeo/psalm": "<3.6.0"
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/master"
},
- "require-dev": {
- "phpunit/phpunit": "^4.8.36 || ^7.5.13"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Webmozart\\Assert\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "funding": [
{
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
+ "url": "https://github.com/theseer",
+ "type": "github"
}
],
- "description": "Assertions to validate method input/output with nice error messages.",
- "keywords": [
- "assert",
- "check",
- "validate"
- ],
- "time": "2020-02-14T12:15:55+00:00"
+ "time": "2020-07-12T23:59:07+00:00"
}
],
"aliases": [],
@@ -5569,5 +8115,6 @@
"platform": {
"php": "^7.2.5"
},
- "platform-dev": []
+ "platform-dev": [],
+ "plugin-api-version": "2.0.0"
}
diff --git a/config/sitemap.php b/config/sitemap.php
new file mode 100644
index 0000000..8ffec69
--- /dev/null
+++ b/config/sitemap.php
@@ -0,0 +1,57 @@
+<?php
+
+use GuzzleHttp\RequestOptions;
+use Spatie\Sitemap\Crawler\Profile;
+
+return [
+
+ /*
+ * These options will be passed to GuzzleHttp\Client when it is created.
+ * For in-depth information on all options see the Guzzle docs:
+ *
+ * http://docs.guzzlephp.org/en/stable/request-options.html
+ */
+ 'guzzle_options' => [
+
+ /*
+ * Whether or not cookies are used in a request.
+ */
+ RequestOptions::COOKIES => true,
+
+ /*
+ * The number of seconds to wait while trying to connect to a server.
+ * Use 0 to wait indefinitely.
+ */
+ RequestOptions::CONNECT_TIMEOUT => 10,
+
+ /*
+ * The timeout of the request in seconds. Use 0 to wait indefinitely.
+ */
+ RequestOptions::TIMEOUT => 10,
+
+ /*
+ * Describes the redirect behavior of a request.
+ */
+ RequestOptions::ALLOW_REDIRECTS => false,
+ ],
+
+ /*
+ * The sitemap generator can execute JavaScript on each page so it will
+ * discover links that are generated by your JS scripts. This feature
+ * is powered by headless Chrome.
+ */
+ 'execute_javascript' => false,
+
+ /*
+ * The package will make an educated guess as to where Google Chrome is installed.
+ * You can also manually pass it's location here.
+ */
+ 'chrome_binary_path' => null,
+
+ /*
+ * The sitemap generator uses a CrawlProfile implementation to determine
+ * which urls should be crawled for the sitemap.
+ */
+ 'crawl_profile' => Profile::class,
+
+];
diff --git a/database/seeds/DatabaseSeeder.php b/database/seeder/DatabaseSeeder.php
index 91cb6d1..f870c20 100644
--- a/database/seeds/DatabaseSeeder.php
+++ b/database/seeder/DatabaseSeeder.php
@@ -1,5 +1,7 @@
<?php
+namespace Database\Seeders;
+
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
diff --git a/public/robots.txt b/public/robots.txt
index eb05362..43ab9db 100644
--- a/public/robots.txt
+++ b/public/robots.txt
@@ -1,2 +1 @@
-User-agent: *
-Disallow:
+# If you read this, something went wrong.
diff --git a/public/sitemap.xml b/public/sitemap.xml
new file mode 100644
index 0000000..b573964
--- /dev/null
+++ b/public/sitemap.xml
@@ -0,0 +1,11547 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
+ <url>
+ <loc>https://www.mostdiscussed.com</loc>
+ <lastmod>2021-02-11T21:00:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/</loc>
+ <lastmod>2021-02-11T21:00:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/about</loc>
+ <lastmod>2021-02-11T21:00:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new</loc>
+ <lastmod>2021-02-11T21:00:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=1</loc>
+ <lastmod>2021-02-11T21:03:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=10</loc>
+ <lastmod>2021-02-11T21:05:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=100</loc>
+ <lastmod>2021-02-11T21:07:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=101</loc>
+ <lastmod>2021-02-11T21:07:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=102</loc>
+ <lastmod>2021-02-11T21:07:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=103</loc>
+ <lastmod>2021-02-11T21:07:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=104</loc>
+ <lastmod>2021-02-11T21:07:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=105</loc>
+ <lastmod>2021-02-11T21:07:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=106</loc>
+ <lastmod>2021-02-11T21:07:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=107</loc>
+ <lastmod>2021-02-11T21:07:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=108</loc>
+ <lastmod>2021-02-11T21:07:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=109</loc>
+ <lastmod>2021-02-11T21:07:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=11</loc>
+ <lastmod>2021-02-11T21:05:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=110</loc>
+ <lastmod>2021-02-11T21:07:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=111</loc>
+ <lastmod>2021-02-11T21:08:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=112</loc>
+ <lastmod>2021-02-11T21:08:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=113</loc>
+ <lastmod>2021-02-11T21:08:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=114</loc>
+ <lastmod>2021-02-11T21:08:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=115</loc>
+ <lastmod>2021-02-11T21:08:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=116</loc>
+ <lastmod>2021-02-11T21:08:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=117</loc>
+ <lastmod>2021-02-11T21:08:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=118</loc>
+ <lastmod>2021-02-11T21:08:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=119</loc>
+ <lastmod>2021-02-11T21:08:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=12</loc>
+ <lastmod>2021-02-11T21:05:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=120</loc>
+ <lastmod>2021-02-11T21:08:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=121</loc>
+ <lastmod>2021-02-11T21:08:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=122</loc>
+ <lastmod>2021-02-11T21:08:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=123</loc>
+ <lastmod>2021-02-11T21:08:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=124</loc>
+ <lastmod>2021-02-11T21:08:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=125</loc>
+ <lastmod>2021-02-11T21:08:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=126</loc>
+ <lastmod>2021-02-11T21:08:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=127</loc>
+ <lastmod>2021-02-11T21:08:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=128</loc>
+ <lastmod>2021-02-11T21:08:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=129</loc>
+ <lastmod>2021-02-11T21:08:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=13</loc>
+ <lastmod>2021-02-11T21:05:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=130</loc>
+ <lastmod>2021-02-11T21:08:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=131</loc>
+ <lastmod>2021-02-11T21:08:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=132</loc>
+ <lastmod>2021-02-11T21:08:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=133</loc>
+ <lastmod>2021-02-11T21:08:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=134</loc>
+ <lastmod>2021-02-11T21:08:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=135</loc>
+ <lastmod>2021-02-11T21:08:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=136</loc>
+ <lastmod>2021-02-11T21:08:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=137</loc>
+ <lastmod>2021-02-11T21:08:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=138</loc>
+ <lastmod>2021-02-11T21:08:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=139</loc>
+ <lastmod>2021-02-11T21:08:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=14</loc>
+ <lastmod>2021-02-11T21:05:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=140</loc>
+ <lastmod>2021-02-11T21:08:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=141</loc>
+ <lastmod>2021-02-11T21:08:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=142</loc>
+ <lastmod>2021-02-11T21:08:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=143</loc>
+ <lastmod>2021-02-11T21:08:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=144</loc>
+ <lastmod>2021-02-11T21:08:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=145</loc>
+ <lastmod>2021-02-11T21:09:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=146</loc>
+ <lastmod>2021-02-11T21:09:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=147</loc>
+ <lastmod>2021-02-11T21:09:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=148</loc>
+ <lastmod>2021-02-11T21:09:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=149</loc>
+ <lastmod>2021-02-11T21:09:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=15</loc>
+ <lastmod>2021-02-11T21:05:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=150</loc>
+ <lastmod>2021-02-11T21:09:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=151</loc>
+ <lastmod>2021-02-11T21:09:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=152</loc>
+ <lastmod>2021-02-11T21:09:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=153</loc>
+ <lastmod>2021-02-11T21:09:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=154</loc>
+ <lastmod>2021-02-11T21:09:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=155</loc>
+ <lastmod>2021-02-11T21:09:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=156</loc>
+ <lastmod>2021-02-11T21:09:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=157</loc>
+ <lastmod>2021-02-11T21:09:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=158</loc>
+ <lastmod>2021-02-11T21:09:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=159</loc>
+ <lastmod>2021-02-11T21:09:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=16</loc>
+ <lastmod>2021-02-11T21:05:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=160</loc>
+ <lastmod>2021-02-11T21:09:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=161</loc>
+ <lastmod>2021-02-11T21:09:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=162</loc>
+ <lastmod>2021-02-11T21:09:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=163</loc>
+ <lastmod>2021-02-11T21:09:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=164</loc>
+ <lastmod>2021-02-11T21:09:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=165</loc>
+ <lastmod>2021-02-11T21:09:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=166</loc>
+ <lastmod>2021-02-11T21:09:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=167</loc>
+ <lastmod>2021-02-11T21:09:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=168</loc>
+ <lastmod>2021-02-11T21:09:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=169</loc>
+ <lastmod>2021-02-11T21:09:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=17</loc>
+ <lastmod>2021-02-11T21:05:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=170</loc>
+ <lastmod>2021-02-11T21:09:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=171</loc>
+ <lastmod>2021-02-11T21:09:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=172</loc>
+ <lastmod>2021-02-11T21:09:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=173</loc>
+ <lastmod>2021-02-11T21:09:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=174</loc>
+ <lastmod>2021-02-11T21:09:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=175</loc>
+ <lastmod>2021-02-11T21:09:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=176</loc>
+ <lastmod>2021-02-11T21:10:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=177</loc>
+ <lastmod>2021-02-11T21:10:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=178</loc>
+ <lastmod>2021-02-11T21:10:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=179</loc>
+ <lastmod>2021-02-11T21:10:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=18</loc>
+ <lastmod>2021-02-11T21:05:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=180</loc>
+ <lastmod>2021-02-11T21:10:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=181</loc>
+ <lastmod>2021-02-11T21:10:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=182</loc>
+ <lastmod>2021-02-11T21:10:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=183</loc>
+ <lastmod>2021-02-11T21:10:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=184</loc>
+ <lastmod>2021-02-11T21:10:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=185</loc>
+ <lastmod>2021-02-11T21:10:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=186</loc>
+ <lastmod>2021-02-11T21:10:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=187</loc>
+ <lastmod>2021-02-11T21:10:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=188</loc>
+ <lastmod>2021-02-11T21:10:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=189</loc>
+ <lastmod>2021-02-11T21:10:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=19</loc>
+ <lastmod>2021-02-11T21:05:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=190</loc>
+ <lastmod>2021-02-11T21:10:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=191</loc>
+ <lastmod>2021-02-11T21:10:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=192</loc>
+ <lastmod>2021-02-11T21:10:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=193</loc>
+ <lastmod>2021-02-11T21:10:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=194</loc>
+ <lastmod>2021-02-11T21:10:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=195</loc>
+ <lastmod>2021-02-11T21:10:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=196</loc>
+ <lastmod>2021-02-11T21:10:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=197</loc>
+ <lastmod>2021-02-11T21:10:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=198</loc>
+ <lastmod>2021-02-11T21:10:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=199</loc>
+ <lastmod>2021-02-11T21:10:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=2</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=20</loc>
+ <lastmod>2021-02-11T21:05:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=200</loc>
+ <lastmod>2021-02-11T21:10:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=201</loc>
+ <lastmod>2021-02-11T21:10:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=202</loc>
+ <lastmod>2021-02-11T21:10:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=203</loc>
+ <lastmod>2021-02-11T21:10:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=204</loc>
+ <lastmod>2021-02-11T21:10:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=205</loc>
+ <lastmod>2021-02-11T21:10:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=206</loc>
+ <lastmod>2021-02-11T21:10:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=207</loc>
+ <lastmod>2021-02-11T21:10:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=208</loc>
+ <lastmod>2021-02-11T21:11:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=209</loc>
+ <lastmod>2021-02-11T21:11:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=21</loc>
+ <lastmod>2021-02-11T21:05:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=210</loc>
+ <lastmod>2021-02-11T21:11:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=211</loc>
+ <lastmod>2021-02-11T21:11:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=212</loc>
+ <lastmod>2021-02-11T21:11:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=213</loc>
+ <lastmod>2021-02-11T21:11:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=214</loc>
+ <lastmod>2021-02-11T21:11:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=215</loc>
+ <lastmod>2021-02-11T21:11:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=216</loc>
+ <lastmod>2021-02-11T21:11:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=217</loc>
+ <lastmod>2021-02-11T21:11:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=218</loc>
+ <lastmod>2021-02-11T21:11:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=219</loc>
+ <lastmod>2021-02-11T21:11:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=22</loc>
+ <lastmod>2021-02-11T21:05:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=220</loc>
+ <lastmod>2021-02-11T21:11:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=221</loc>
+ <lastmod>2021-02-11T21:11:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=222</loc>
+ <lastmod>2021-02-11T21:11:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=223</loc>
+ <lastmod>2021-02-11T21:11:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=224</loc>
+ <lastmod>2021-02-11T21:11:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=225</loc>
+ <lastmod>2021-02-11T21:11:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=226</loc>
+ <lastmod>2021-02-11T21:11:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=227</loc>
+ <lastmod>2021-02-11T21:11:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=228</loc>
+ <lastmod>2021-02-11T21:11:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=229</loc>
+ <lastmod>2021-02-11T21:11:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=23</loc>
+ <lastmod>2021-02-11T21:05:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=230</loc>
+ <lastmod>2021-02-11T21:11:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=231</loc>
+ <lastmod>2021-02-11T21:11:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=232</loc>
+ <lastmod>2021-02-11T21:11:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=233</loc>
+ <lastmod>2021-02-11T21:11:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=234</loc>
+ <lastmod>2021-02-11T21:11:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=235</loc>
+ <lastmod>2021-02-11T21:11:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=236</loc>
+ <lastmod>2021-02-11T21:11:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=237</loc>
+ <lastmod>2021-02-11T21:11:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=24</loc>
+ <lastmod>2021-02-11T21:05:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=25</loc>
+ <lastmod>2021-02-11T21:05:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=26</loc>
+ <lastmod>2021-02-11T21:05:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=27</loc>
+ <lastmod>2021-02-11T21:05:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=28</loc>
+ <lastmod>2021-02-11T21:05:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=29</loc>
+ <lastmod>2021-02-11T21:05:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=3</loc>
+ <lastmod>2021-02-11T21:03:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=30</loc>
+ <lastmod>2021-02-11T21:05:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=31</loc>
+ <lastmod>2021-02-11T21:05:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=32</loc>
+ <lastmod>2021-02-11T21:05:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=33</loc>
+ <lastmod>2021-02-11T21:05:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=34</loc>
+ <lastmod>2021-02-11T21:05:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=35</loc>
+ <lastmod>2021-02-11T21:05:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=36</loc>
+ <lastmod>2021-02-11T21:05:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=37</loc>
+ <lastmod>2021-02-11T21:05:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=38</loc>
+ <lastmod>2021-02-11T21:06:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=39</loc>
+ <lastmod>2021-02-11T21:06:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=4</loc>
+ <lastmod>2021-02-11T21:04:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=40</loc>
+ <lastmod>2021-02-11T21:06:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=41</loc>
+ <lastmod>2021-02-11T21:06:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=42</loc>
+ <lastmod>2021-02-11T21:06:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=43</loc>
+ <lastmod>2021-02-11T21:06:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=44</loc>
+ <lastmod>2021-02-11T21:06:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=45</loc>
+ <lastmod>2021-02-11T21:06:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=46</loc>
+ <lastmod>2021-02-11T21:06:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=47</loc>
+ <lastmod>2021-02-11T21:06:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=48</loc>
+ <lastmod>2021-02-11T21:06:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=49</loc>
+ <lastmod>2021-02-11T21:06:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=5</loc>
+ <lastmod>2021-02-11T21:04:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=50</loc>
+ <lastmod>2021-02-11T21:06:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=51</loc>
+ <lastmod>2021-02-11T21:06:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=52</loc>
+ <lastmod>2021-02-11T21:06:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=53</loc>
+ <lastmod>2021-02-11T21:06:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=54</loc>
+ <lastmod>2021-02-11T21:06:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=55</loc>
+ <lastmod>2021-02-11T21:06:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=56</loc>
+ <lastmod>2021-02-11T21:06:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=57</loc>
+ <lastmod>2021-02-11T21:06:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=58</loc>
+ <lastmod>2021-02-11T21:06:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=59</loc>
+ <lastmod>2021-02-11T21:06:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=6</loc>
+ <lastmod>2021-02-11T21:04:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=60</loc>
+ <lastmod>2021-02-11T21:06:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=61</loc>
+ <lastmod>2021-02-11T21:06:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=62</loc>
+ <lastmod>2021-02-11T21:06:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=63</loc>
+ <lastmod>2021-02-11T21:06:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=64</loc>
+ <lastmod>2021-02-11T21:06:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=65</loc>
+ <lastmod>2021-02-11T21:06:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=66</loc>
+ <lastmod>2021-02-11T21:06:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=67</loc>
+ <lastmod>2021-02-11T21:06:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=68</loc>
+ <lastmod>2021-02-11T21:06:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=69</loc>
+ <lastmod>2021-02-11T21:06:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=7</loc>
+ <lastmod>2021-02-11T21:04:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=70</loc>
+ <lastmod>2021-02-11T21:06:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=71</loc>
+ <lastmod>2021-02-11T21:06:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=72</loc>
+ <lastmod>2021-02-11T21:06:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=73</loc>
+ <lastmod>2021-02-11T21:06:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=74</loc>
+ <lastmod>2021-02-11T21:06:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=75</loc>
+ <lastmod>2021-02-11T21:06:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=76</loc>
+ <lastmod>2021-02-11T21:07:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=77</loc>
+ <lastmod>2021-02-11T21:07:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=78</loc>
+ <lastmod>2021-02-11T21:07:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=79</loc>
+ <lastmod>2021-02-11T21:07:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=8</loc>
+ <lastmod>2021-02-11T21:04:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=80</loc>
+ <lastmod>2021-02-11T21:07:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=81</loc>
+ <lastmod>2021-02-11T21:07:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=82</loc>
+ <lastmod>2021-02-11T21:07:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=83</loc>
+ <lastmod>2021-02-11T21:07:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=84</loc>
+ <lastmod>2021-02-11T21:07:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=85</loc>
+ <lastmod>2021-02-11T21:07:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=86</loc>
+ <lastmod>2021-02-11T21:07:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=87</loc>
+ <lastmod>2021-02-11T21:07:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=88</loc>
+ <lastmod>2021-02-11T21:07:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=89</loc>
+ <lastmod>2021-02-11T21:07:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=9</loc>
+ <lastmod>2021-02-11T21:05:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=90</loc>
+ <lastmod>2021-02-11T21:07:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=91</loc>
+ <lastmod>2021-02-11T21:07:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=92</loc>
+ <lastmod>2021-02-11T21:07:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=93</loc>
+ <lastmod>2021-02-11T21:07:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=94</loc>
+ <lastmod>2021-02-11T21:07:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=95</loc>
+ <lastmod>2021-02-11T21:07:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=96</loc>
+ <lastmod>2021-02-11T21:07:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=97</loc>
+ <lastmod>2021-02-11T21:07:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=98</loc>
+ <lastmod>2021-02-11T21:07:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/new?page=99</loc>
+ <lastmod>2021-02-11T21:07:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular</loc>
+ <lastmod>2021-02-11T21:00:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular/topics</loc>
+ <lastmod>2021-02-11T21:00:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=1</loc>
+ <lastmod>2021-02-11T21:03:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=10</loc>
+ <lastmod>2021-02-11T21:05:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=11</loc>
+ <lastmod>2021-02-11T21:05:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=12</loc>
+ <lastmod>2021-02-11T21:05:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=13</loc>
+ <lastmod>2021-02-11T21:05:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=14</loc>
+ <lastmod>2021-02-11T21:05:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=15</loc>
+ <lastmod>2021-02-11T21:05:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=16</loc>
+ <lastmod>2021-02-11T21:05:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=17</loc>
+ <lastmod>2021-02-11T21:05:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=18</loc>
+ <lastmod>2021-02-11T21:05:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=19</loc>
+ <lastmod>2021-02-11T21:05:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=2</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=20</loc>
+ <lastmod>2021-02-11T21:05:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=21</loc>
+ <lastmod>2021-02-11T21:05:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=22</loc>
+ <lastmod>2021-02-11T21:05:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=23</loc>
+ <lastmod>2021-02-11T21:05:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=24</loc>
+ <lastmod>2021-02-11T21:05:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=25</loc>
+ <lastmod>2021-02-11T21:05:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=26</loc>
+ <lastmod>2021-02-11T21:05:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=3</loc>
+ <lastmod>2021-02-11T21:03:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=4</loc>
+ <lastmod>2021-02-11T21:04:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=5</loc>
+ <lastmod>2021-02-11T21:04:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=6</loc>
+ <lastmod>2021-02-11T21:04:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=7</loc>
+ <lastmod>2021-02-11T21:04:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=8</loc>
+ <lastmod>2021-02-11T21:04:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/popular?page=9</loc>
+ <lastmod>2021-02-11T21:05:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/AIDS</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Academic%20Journals</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Afghanistan</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa</loc>
+ <lastmod>2021-02-11T21:00:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Angola</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Botswana</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Central%20African%20Republic</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Gambia</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Ghana</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Kenya</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Mauritania</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Niger</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Nigeria</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Saint%20Helena</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Tanzania</loc>
+ <lastmod>2021-02-11T21:02:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa/Western%20Sahara</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa?page=1</loc>
+ <lastmod>2021-02-11T21:04:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Africa?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/African%20diaspora</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Agriculture</loc>
+ <lastmod>2021-02-11T21:01:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Agriculture/Beekeeping</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Agriculture?page=1</loc>
+ <lastmod>2021-02-11T21:04:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Agriculture?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alabama</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alaska</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Albania</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Albums</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Algae</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Algeria</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alphabet</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Altered%20States%20of%20Consciousness</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alternative%20Views</loc>
+ <lastmod>2021-02-11T21:00:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alternative%20Views?page=1</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alternative%20Views?page=2</loc>
+ <lastmod>2021-02-11T21:03:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alternative%20Views?page=3</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alternative%20education</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Alternative%20medicine</loc>
+ <lastmod>2021-02-11T21:01:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Amateur%20radio</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Amphibians%20and%20Reptiles</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Amusement%20Parks</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Amusement%20Parks/Roller%20Coasters</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anarchism</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anatomy</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anatomy/Field%20of%20anatomy</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anatomy/Neuroanatomy</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ancient%20Egypt</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ancient%20Egypt/Egyptian%20religion</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ancient%20Germanic%20studies</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ancient%20Near%20East</loc>
+ <lastmod>2021-02-11T21:01:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Animal%20anatomy</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Animal%20rights</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Animals</loc>
+ <lastmod>2021-02-11T21:01:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Animation</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Antarctica</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anthropology</loc>
+ <lastmod>2021-02-11T21:00:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anthropology?page=1</loc>
+ <lastmod>2021-02-11T21:04:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anthropology?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anthroponymy</loc>
+ <lastmod>2021-02-11T21:01:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Anti-war</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Appalachia</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Apple%20Inc.</loc>
+ <lastmod>2021-02-11T21:01:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Apple%20Inc./Macintosh</loc>
+ <lastmod>2021-02-11T21:01:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Apple%20Inc./iOS</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Apple%20Inc.?page=1</loc>
+ <lastmod>2021-02-11T21:04:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Apple%20Inc.?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Arab%20world</loc>
+ <lastmod>2021-02-11T21:01:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Archaeology</loc>
+ <lastmod>2021-02-11T21:00:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Archaeology?page=1</loc>
+ <lastmod>2021-02-11T21:04:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Archaeology?page=2</loc>
+ <lastmod>2021-02-11T21:03:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Archaeology?page=3</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Architecture</loc>
+ <lastmod>2021-02-11T21:00:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Architecture/Historic%20houses</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Architecture?page=1</loc>
+ <lastmod>2021-02-11T21:03:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Architecture?page=2</loc>
+ <lastmod>2021-02-11T21:03:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Architecture?page=3</loc>
+ <lastmod>2021-02-11T21:03:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Arctic</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Argentina</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Arthropods</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Arts</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Asia</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Assyria</loc>
+ <lastmod>2021-02-11T21:02:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astrology</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy</loc>
+ <lastmod>2021-02-11T21:00:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy/Astronomical%20objects</loc>
+ <lastmod>2021-02-11T21:01:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy/Cosmology</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy?page=1</loc>
+ <lastmod>2021-02-11T21:03:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy?page=2</loc>
+ <lastmod>2021-02-11T21:03:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy?page=3</loc>
+ <lastmod>2021-02-11T21:03:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Astronomy?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Atheism</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Athletics</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia</loc>
+ <lastmod>2021-02-11T21:01:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Adelaide</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Australia,%20New%20Zealand%20and%20South%20Pacific%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Australian%20biota</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Australian%20crime</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Australian%20history</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Australian%20law</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Australian%20maritime%20history</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/History%20of%20exploration</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Indigenous%20peoples%20of%20Australia</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Melbourne</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Northern%20Territory</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/South%20Australia</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Sydney</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia/Western%20Australia</loc>
+ <lastmod>2021-02-11T21:01:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia?page=1</loc>
+ <lastmod>2021-02-11T21:04:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Australia?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Austria</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Autism</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Automobiles</loc>
+ <lastmod>2021-02-11T21:00:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Automobiles?page=1</loc>
+ <lastmod>2021-02-11T21:04:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Automobiles?page=2</loc>
+ <lastmod>2021-02-11T21:03:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation</loc>
+ <lastmod>2021-02-11T21:00:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/Aviation%20accident%20project</loc>
+ <lastmod>2021-02-11T21:01:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/Aviation%20accident%20project?page=1</loc>
+ <lastmod>2021-02-11T21:04:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/Aviation%20accident%20project?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/Defunct%20Airlines</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/Soviet%20aviation</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aerospace%20biography%20project</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aircraft%20engine</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aircraft%20project</loc>
+ <lastmod>2021-02-11T21:00:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aircraft%20project?page=1</loc>
+ <lastmod>2021-02-11T21:03:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aircraft%20project?page=2</loc>
+ <lastmod>2021-02-11T21:03:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aircraft%20project?page=3</loc>
+ <lastmod>2021-02-11T21:03:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/aircraft%20project?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/airline%20project</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/airport%20project</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/gliding%20project</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation/rotorcraft%20project</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation?page=1</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation?page=2</loc>
+ <lastmod>2021-02-11T21:02:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation?page=3</loc>
+ <lastmod>2021-02-11T21:03:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation?page=4</loc>
+ <lastmod>2021-02-11T21:04:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation?page=5</loc>
+ <lastmod>2021-02-11T21:04:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Aviation?page=6</loc>
+ <lastmod>2021-02-11T21:04:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Awards</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Azerbaijan</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/BBC</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Backpacking</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bah%C3%A1%27%C3%AD%20Faith</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bah%C3%A1&#039;%C3%AD%20Faith</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bangladesh</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Basic%20Income</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Basque</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Beer</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Beer/Pubs</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Belgium</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bible</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bibliographies</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bibliographies/Science</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography</loc>
+ <lastmod>2021-02-11T21:00:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/Actors%20and%20Filmmakers</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/Core%20biographies</loc>
+ <lastmod>2021-02-11T21:02:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/Musicians</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/Peerage%20and%20Baronetage</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/Royalty%20and%20Nobility</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/arts%20and%20entertainment</loc>
+ <lastmod>2021-02-11T21:00:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/arts%20and%20entertainment?page=1</loc>
+ <lastmod>2021-02-11T21:04:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/arts%20and%20entertainment?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/military%20biography</loc>
+ <lastmod>2021-02-11T21:01:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/politics%20and%20government</loc>
+ <lastmod>2021-02-11T21:01:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia</loc>
+ <lastmod>2021-02-11T21:00:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=1</loc>
+ <lastmod>2021-02-11T21:03:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=2</loc>
+ <lastmod>2021-02-11T21:02:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=3</loc>
+ <lastmod>2021-02-11T21:03:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=4</loc>
+ <lastmod>2021-02-11T21:04:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=5</loc>
+ <lastmod>2021-02-11T21:04:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=6</loc>
+ <lastmod>2021-02-11T21:04:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=7</loc>
+ <lastmod>2021-02-11T21:04:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/science%20and%20academia?page=8</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography/sports%20and%20games</loc>
+ <lastmod>2021-02-11T21:01:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=1</loc>
+ <lastmod>2021-02-11T21:03:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=10</loc>
+ <lastmod>2021-02-11T21:05:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=11</loc>
+ <lastmod>2021-02-11T21:05:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=12</loc>
+ <lastmod>2021-02-11T21:05:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=13</loc>
+ <lastmod>2021-02-11T21:05:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=14</loc>
+ <lastmod>2021-02-11T21:05:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=15</loc>
+ <lastmod>2021-02-11T21:05:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=16</loc>
+ <lastmod>2021-02-11T21:05:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=17</loc>
+ <lastmod>2021-02-11T21:05:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=2</loc>
+ <lastmod>2021-02-11T21:02:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=3</loc>
+ <lastmod>2021-02-11T21:03:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=4</loc>
+ <lastmod>2021-02-11T21:04:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=5</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=6</loc>
+ <lastmod>2021-02-11T21:04:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=7</loc>
+ <lastmod>2021-02-11T21:04:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=8</loc>
+ <lastmod>2021-02-11T21:04:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biography?page=9</loc>
+ <lastmod>2021-02-11T21:04:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biology</loc>
+ <lastmod>2021-02-11T21:00:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biology?page=1</loc>
+ <lastmod>2021-02-11T21:04:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biology?page=2</loc>
+ <lastmod>2021-02-11T21:03:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Biophysics</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Birds</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Black%20Lives%20Matter</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Blogging</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Board%20and%20table%20games</loc>
+ <lastmod>2021-02-11T21:01:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Books</loc>
+ <lastmod>2021-02-11T21:00:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Books?page=1</loc>
+ <lastmod>2021-02-11T21:03:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Books?page=2</loc>
+ <lastmod>2021-02-11T21:03:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Books?page=3</loc>
+ <lastmod>2021-02-11T21:03:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Books?page=4</loc>
+ <lastmod>2021-02-11T21:04:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Books?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Boxing</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brands</loc>
+ <lastmod>2021-02-11T21:00:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brands?page=1</loc>
+ <lastmod>2021-02-11T21:04:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brands?page=2</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brazil</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brazil/Education%20and%20Science%20in%20Brazil</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brazil/History%20of%20Brazil</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Brazil/Transportation%20in%20Brazil</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bridges%20and%20Tunnels</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Bristol</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/British%20Empire</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/British%20Museum</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/British%20Overseas%20Territories</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/British%20crime</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Buddhism</loc>
+ <lastmod>2021-02-11T21:01:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Buses</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business</loc>
+ <lastmod>2021-02-11T21:00:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business/Accounting</loc>
+ <lastmod>2021-02-11T21:02:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business?page=1</loc>
+ <lastmod>2021-02-11T21:03:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business?page=2</loc>
+ <lastmod>2021-02-11T21:02:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business?page=3</loc>
+ <lastmod>2021-02-11T21:03:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business?page=4</loc>
+ <lastmod>2021-02-11T21:04:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business?page=5</loc>
+ <lastmod>2021-02-11T21:04:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Business?page=6</loc>
+ <lastmod>2021-02-11T21:04:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/C/C++</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/C/C++/C</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/C/C++/C++</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/COVID-19</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California</loc>
+ <lastmod>2021-02-11T21:00:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California/Los%20Angeles%20area</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California/San%20Francisco%20Bay%20Area</loc>
+ <lastmod>2021-02-11T21:00:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California/San%20Francisco%20Bay%20Area?page=1</loc>
+ <lastmod>2021-02-11T21:04:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California/San%20Francisco%20Bay%20Area?page=2</loc>
+ <lastmod>2021-02-11T21:03:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California/San%20Francisco%20Bay%20Area?page=3</loc>
+ <lastmod>2021-02-11T21:04:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California/Southern%20California</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California?page=1</loc>
+ <lastmod>2021-02-11T21:03:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California?page=2</loc>
+ <lastmod>2021-02-11T21:03:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California?page=3</loc>
+ <lastmod>2021-02-11T21:03:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/California?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cambodia</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada</loc>
+ <lastmod>2021-02-11T21:00:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/Alberta</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/British%20Columbia</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/Canadian%20Territories</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/Geography%20of%20Canada</loc>
+ <lastmod>2021-02-11T21:01:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/History%20of%20Canada</loc>
+ <lastmod>2021-02-11T21:02:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/Manitoba</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/Ontario</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada/Saskatchewan</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada?page=1</loc>
+ <lastmod>2021-02-11T21:04:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Canada?page=2</loc>
+ <lastmod>2021-02-11T21:03:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Capitalism</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Caribbean</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Catholicism</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cats</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Caucasia</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Celts</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Central%20America</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Central%20Asia</loc>
+ <lastmod>2021-02-11T21:01:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cetaceans</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chechnya</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chemical%20and%20Bio%20Engineering</loc>
+ <lastmod>2021-02-11T21:02:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chemicals</loc>
+ <lastmod>2021-02-11T21:01:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chemicals/Chemicals%20worklist</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chemistry</loc>
+ <lastmod>2021-02-11T21:00:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chemistry?page=1</loc>
+ <lastmod>2021-02-11T21:04:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chemistry?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cheshire</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chess</loc>
+ <lastmod>2021-02-11T21:01:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chess?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chess?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chicago</loc>
+ <lastmod>2021-02-11T21:00:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chicago?page=1</loc>
+ <lastmod>2021-02-11T21:04:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chicago?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Children%27s%20literature</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Children&#039;s%20literature</loc>
+ <lastmod>2021-02-11T21:03:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Chile</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/China</loc>
+ <lastmod>2021-02-11T21:00:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/China/Chinese%20history</loc>
+ <lastmod>2021-02-11T21:01:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/China?page=1</loc>
+ <lastmod>2021-02-11T21:03:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/China?page=2</loc>
+ <lastmod>2021-02-11T21:03:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/China?page=3</loc>
+ <lastmod>2021-02-11T21:03:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/China?page=4</loc>
+ <lastmod>2021-02-11T21:04:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity</loc>
+ <lastmod>2021-02-11T21:01:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity/Anabaptist</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity/Catholicism</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity/Christmas</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity/Eastern%20Orthodoxy</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity/Jesus</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Christianity/theology</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Circus</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cities</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Citizendium%20Porting</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Civil%20Rights%20Movement</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Civil%20engineering</loc>
+ <lastmod>2021-02-11T21:01:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Classical%20Greece%20and%20Rome</loc>
+ <lastmod>2021-02-11T21:00:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Classical%20Greece%20and%20Rome?page=1</loc>
+ <lastmod>2021-02-11T21:04:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Classical%20Greece%20and%20Rome?page=2</loc>
+ <lastmod>2021-02-11T21:03:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Classical%20music</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Classical%20music/Compositions</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Climate%20change</loc>
+ <lastmod>2021-02-11T21:01:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cognitive%20science</loc>
+ <lastmod>2021-02-11T21:01:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cognitive%20science?page=1</loc>
+ <lastmod>2021-02-11T21:04:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cognitive%20science?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cold%20War</loc>
+ <lastmod>2021-02-11T21:01:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cold%20War?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cold%20War?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Collections%20Care</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/College%20Basketball</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Colonialism</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Color</loc>
+ <lastmod>2021-02-11T21:01:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Color?page=1</loc>
+ <lastmod>2021-02-11T21:04:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Color?page=2</loc>
+ <lastmod>2021-02-11T21:03:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comedy</loc>
+ <lastmod>2021-02-11T21:01:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comedy?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comedy?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comics</loc>
+ <lastmod>2021-02-11T21:01:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comics/Comic%20strips</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comics/Comics%20creators</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comics/DC%20Comics</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comics/Marvel%20Comics</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Comics/United%20States%20comics</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Community</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Companies</loc>
+ <lastmod>2021-02-11T21:00:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Companies?page=1</loc>
+ <lastmod>2021-02-11T21:03:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Companies?page=2</loc>
+ <lastmod>2021-02-11T21:03:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Companies?page=3</loc>
+ <lastmod>2021-02-11T21:03:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Companies?page=4</loc>
+ <lastmod>2021-02-11T21:04:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Composers</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computational%20Biology</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20Security</loc>
+ <lastmod>2021-02-11T21:01:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20Security/Computing</loc>
+ <lastmod>2021-02-11T21:01:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20Security/Computing?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20Security/Computing?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20Security?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20Security?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20graphics</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science</loc>
+ <lastmod>2021-02-11T21:00:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science/Computing</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=1</loc>
+ <lastmod>2021-02-11T21:03:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=2</loc>
+ <lastmod>2021-02-11T21:02:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=3</loc>
+ <lastmod>2021-02-11T21:03:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=4</loc>
+ <lastmod>2021-02-11T21:04:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=6</loc>
+ <lastmod>2021-02-11T21:04:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=7</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=8</loc>
+ <lastmod>2021-02-11T21:05:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computer%20science?page=9</loc>
+ <lastmod>2021-02-11T21:05:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing</loc>
+ <lastmod>2021-02-11T21:00:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Amiga</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20Security</loc>
+ <lastmod>2021-02-11T21:00:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20Security?page=1</loc>
+ <lastmod>2021-02-11T21:04:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20Security?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20hardware</loc>
+ <lastmod>2021-02-11T21:00:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20hardware?page=1</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20hardware?page=2</loc>
+ <lastmod>2021-02-11T21:03:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20hardware?page=3</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20science</loc>
+ <lastmod>2021-02-11T21:00:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20science?page=1</loc>
+ <lastmod>2021-02-11T21:03:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20science?page=2</loc>
+ <lastmod>2021-02-11T21:03:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20science?page=3</loc>
+ <lastmod>2021-02-11T21:03:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Computer%20science?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Early%20computers</loc>
+ <lastmod>2021-02-11T21:01:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Free%20and%20open-source%20software</loc>
+ <lastmod>2021-02-11T21:00:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Free%20and%20open-source%20software?page=1</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Free%20and%20open-source%20software?page=2</loc>
+ <lastmod>2021-02-11T21:03:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Free%20and%20open-source%20software?page=3</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Networking</loc>
+ <lastmod>2021-02-11T21:00:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Networking?page=1</loc>
+ <lastmod>2021-02-11T21:04:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Networking?page=2</loc>
+ <lastmod>2021-02-11T21:03:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software</loc>
+ <lastmod>2021-02-11T21:00:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=1</loc>
+ <lastmod>2021-02-11T21:03:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=10</loc>
+ <lastmod>2021-02-11T21:05:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=11</loc>
+ <lastmod>2021-02-11T21:05:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=2</loc>
+ <lastmod>2021-02-11T21:02:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=3</loc>
+ <lastmod>2021-02-11T21:03:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=4</loc>
+ <lastmod>2021-02-11T21:04:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=5</loc>
+ <lastmod>2021-02-11T21:04:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=6</loc>
+ <lastmod>2021-02-11T21:04:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=7</loc>
+ <lastmod>2021-02-11T21:04:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=8</loc>
+ <lastmod>2021-02-11T21:04:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Software?page=9</loc>
+ <lastmod>2021-02-11T21:05:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing/Websites</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=1</loc>
+ <lastmod>2021-02-11T21:03:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=10</loc>
+ <lastmod>2021-02-11T21:05:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=11</loc>
+ <lastmod>2021-02-11T21:05:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=12</loc>
+ <lastmod>2021-02-11T21:05:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=13</loc>
+ <lastmod>2021-02-11T21:05:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=14</loc>
+ <lastmod>2021-02-11T21:05:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=15</loc>
+ <lastmod>2021-02-11T21:05:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=16</loc>
+ <lastmod>2021-02-11T21:05:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=17</loc>
+ <lastmod>2021-02-11T21:05:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=18</loc>
+ <lastmod>2021-02-11T21:05:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=19</loc>
+ <lastmod>2021-02-11T21:05:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=2</loc>
+ <lastmod>2021-02-11T21:02:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=20</loc>
+ <lastmod>2021-02-11T21:05:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=21</loc>
+ <lastmod>2021-02-11T21:05:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=22</loc>
+ <lastmod>2021-02-11T21:05:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=23</loc>
+ <lastmod>2021-02-11T21:05:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=24</loc>
+ <lastmod>2021-02-11T21:05:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=25</loc>
+ <lastmod>2021-02-11T21:05:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=26</loc>
+ <lastmod>2021-02-11T21:05:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=27</loc>
+ <lastmod>2021-02-11T21:05:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=28</loc>
+ <lastmod>2021-02-11T21:05:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=29</loc>
+ <lastmod>2021-02-11T21:05:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=3</loc>
+ <lastmod>2021-02-11T21:03:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=30</loc>
+ <lastmod>2021-02-11T21:05:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=31</loc>
+ <lastmod>2021-02-11T21:05:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=32</loc>
+ <lastmod>2021-02-11T21:05:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=4</loc>
+ <lastmod>2021-02-11T21:04:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=5</loc>
+ <lastmod>2021-02-11T21:04:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=6</loc>
+ <lastmod>2021-02-11T21:04:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=7</loc>
+ <lastmod>2021-02-11T21:04:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=8</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Computing?page=9</loc>
+ <lastmod>2021-02-11T21:05:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Connecticut</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Conservatism</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Constructed%20languages</loc>
+ <lastmod>2021-02-11T21:01:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Constructed%20languages/Esperanto</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cooperatives</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Correction%20and%20Detention%20Facilities</loc>
+ <lastmod>2021-02-11T21:01:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Counter-Vandalism%20Unit</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Countering%20systemic%20bias</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Countries</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Creationism</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Crime</loc>
+ <lastmod>2021-02-11T21:00:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Crime?page=1</loc>
+ <lastmod>2021-02-11T21:04:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Crime?page=2</loc>
+ <lastmod>2021-02-11T21:03:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Crime?page=3</loc>
+ <lastmod>2021-02-11T21:04:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Criminal%20Biography</loc>
+ <lastmod>2021-02-11T21:02:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Croatia</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptocurrency</loc>
+ <lastmod>2021-02-11T21:01:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography</loc>
+ <lastmod>2021-02-11T21:00:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography/Computer%20science</loc>
+ <lastmod>2021-02-11T21:00:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography/Computer%20science?page=1</loc>
+ <lastmod>2021-02-11T21:03:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography/Computer%20science?page=2</loc>
+ <lastmod>2021-02-11T21:03:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography/Computer%20science?page=3</loc>
+ <lastmod>2021-02-11T21:03:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography/Computer%20science?page=4</loc>
+ <lastmod>2021-02-11T21:04:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography?page=1</loc>
+ <lastmod>2021-02-11T21:03:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography?page=2</loc>
+ <lastmod>2021-02-11T21:03:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography?page=3</loc>
+ <lastmod>2021-02-11T21:03:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptography?page=4</loc>
+ <lastmod>2021-02-11T21:04:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cryptozoology</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cuba</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Culture</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Current%20events</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Cycling</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Czech%20Republic</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dacia</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dams</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dance</loc>
+ <lastmod>2021-02-11T21:02:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dance/Ballet</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Databases</loc>
+ <lastmod>2021-02-11T21:01:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Databases/Computer%20science</loc>
+ <lastmod>2021-02-11T21:01:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Deaf</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Death</loc>
+ <lastmod>2021-02-11T21:00:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Death/Suicide</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Death?page=1</loc>
+ <lastmod>2021-02-11T21:03:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Death?page=2</loc>
+ <lastmod>2021-02-11T21:03:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Death?page=3</loc>
+ <lastmod>2021-02-11T21:03:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Debating</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Demographics</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Denmark</loc>
+ <lastmod>2021-02-11T21:01:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Department%20of%20Fun</loc>
+ <lastmod>2021-02-11T21:01:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Devon</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dietary%20Supplements</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dinosaurs</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Diptera</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disability</loc>
+ <lastmod>2021-02-11T21:01:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disambiguation</loc>
+ <lastmod>2021-02-11T21:02:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disaster%20management</loc>
+ <lastmod>2021-02-11T21:00:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disaster%20management?page=1</loc>
+ <lastmod>2021-02-11T21:03:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disaster%20management?page=2</loc>
+ <lastmod>2021-02-11T21:03:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disaster%20management?page=3</loc>
+ <lastmod>2021-02-11T21:03:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disaster%20management?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Discrimination</loc>
+ <lastmod>2021-02-11T21:01:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Discworld</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Disney</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dogs</loc>
+ <lastmod>2021-02-11T21:01:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Donald%20Trump</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Dravidian%20civilizations</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Drug%20Policy</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/East%20Asia</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Eastern%20Europe</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ecology</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics</loc>
+ <lastmod>2021-02-11T21:00:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=1</loc>
+ <lastmod>2021-02-11T21:03:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=2</loc>
+ <lastmod>2021-02-11T21:02:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=3</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=4</loc>
+ <lastmod>2021-02-11T21:04:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=5</loc>
+ <lastmod>2021-02-11T21:04:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=6</loc>
+ <lastmod>2021-02-11T21:04:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=7</loc>
+ <lastmod>2021-02-11T21:04:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Economics?page=8</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Education</loc>
+ <lastmod>2021-02-11T21:00:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Education?page=1</loc>
+ <lastmod>2021-02-11T21:04:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Education?page=2</loc>
+ <lastmod>2021-02-11T21:03:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Education?page=3</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Egypt</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Elections%20and%20Referendums</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Electrical%20engineering</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Electronic%20music</loc>
+ <lastmod>2021-02-11T21:01:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Electronics</loc>
+ <lastmod>2021-02-11T21:00:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Electronics?page=1</loc>
+ <lastmod>2021-02-11T21:04:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Electronics?page=2</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Elements</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Elements/Isotope</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Endangered%20languages</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Energy</loc>
+ <lastmod>2021-02-11T21:00:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Energy?page=1</loc>
+ <lastmod>2021-02-11T21:04:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Energy?page=2</loc>
+ <lastmod>2021-02-11T21:03:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Energy?page=3</loc>
+ <lastmod>2021-02-11T21:04:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Engineering</loc>
+ <lastmod>2021-02-11T21:00:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Engineering?page=1</loc>
+ <lastmod>2021-02-11T21:03:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Engineering?page=2</loc>
+ <lastmod>2021-02-11T21:03:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Engineering?page=3</loc>
+ <lastmod>2021-02-11T21:03:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/England</loc>
+ <lastmod>2021-02-11T21:00:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/England?page=1</loc>
+ <lastmod>2021-02-11T21:04:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/England?page=2</loc>
+ <lastmod>2021-02-11T21:03:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/English%20Language</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/English%20Royalty</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment</loc>
+ <lastmod>2021-02-11T21:00:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment/Green%20vehicle</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment/Sustainability</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment?page=1</loc>
+ <lastmod>2021-02-11T21:03:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment?page=2</loc>
+ <lastmod>2021-02-11T21:03:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment?page=3</loc>
+ <lastmod>2021-02-11T21:03:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Environment?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Equine</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Espionage</loc>
+ <lastmod>2021-02-11T21:00:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Espionage?page=1</loc>
+ <lastmod>2021-02-11T21:04:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Espionage?page=2</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Estonia</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ethiopia</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ethnic%20groups</loc>
+ <lastmod>2021-02-11T21:01:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Etymology</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Europe</loc>
+ <lastmod>2021-02-11T21:01:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Europe/ESA</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Europe?page=1</loc>
+ <lastmod>2021-02-11T21:04:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Europe?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/European%20Union</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/European%20history</loc>
+ <lastmod>2021-02-11T21:01:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Evolutionary%20biology</loc>
+ <lastmod>2021-02-11T21:01:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Evolutionary%20biology?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Evolutionary%20biology?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Explosives</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Extinction</loc>
+ <lastmod>2021-02-11T21:01:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fashion</loc>
+ <lastmod>2021-02-11T21:01:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Feminism</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fencing</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Festivals</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fictional%20characters</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film</loc>
+ <lastmod>2021-02-11T21:01:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/American%20cinema</loc>
+ <lastmod>2021-02-11T21:01:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/British%20cinema</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/Core</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/Documentary%20films</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/Filmmaking</loc>
+ <lastmod>2021-02-11T21:01:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/French%20cinema</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/Italian%20cinema</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/Silent%20films</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film/Soviet%20and%20post-Soviet%20cinema</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film?page=1</loc>
+ <lastmod>2021-02-11T21:04:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Film?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Finance%20&amp;%20Investment</loc>
+ <lastmod>2021-02-11T21:00:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Finance%20&amp;%20Investment?page=1</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Finance%20&amp;%20Investment?page=2</loc>
+ <lastmod>2021-02-11T21:03:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Finance%20&amp;%20Investment?page=3</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Finland</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fire%20Service</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Firearms</loc>
+ <lastmod>2021-02-11T21:01:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fisheries%20and%20Fishing</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fishes</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Florida</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Folklore</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink</loc>
+ <lastmod>2021-02-11T21:00:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink/Beverages</loc>
+ <lastmod>2021-02-11T21:01:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink/Desserts</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink/Foodservice</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink?page=1</loc>
+ <lastmod>2021-02-11T21:03:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink?page=2</loc>
+ <lastmod>2021-02-11T21:02:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink?page=3</loc>
+ <lastmod>2021-02-11T21:03:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink?page=4</loc>
+ <lastmod>2021-02-11T21:04:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Food%20and%20drink?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Football</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Forestry</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Former%20countries</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Formula%20One</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/France</loc>
+ <lastmod>2021-02-11T21:00:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/France/Paris</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/France?page=1</loc>
+ <lastmod>2021-02-11T21:04:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/France?page=2</loc>
+ <lastmod>2021-02-11T21:03:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/France?page=3</loc>
+ <lastmod>2021-02-11T21:04:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Freedom%20of%20speech</loc>
+ <lastmod>2021-02-11T21:01:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Freedom%20of%20speech?page=1</loc>
+ <lastmod>2021-02-11T21:04:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Freedom%20of%20speech?page=2</loc>
+ <lastmod>2021-02-11T21:03:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Frisia</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Fungi</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Futures%20studies</loc>
+ <lastmod>2021-02-11T21:01:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Futures%20studies?page=1</loc>
+ <lastmod>2021-02-11T21:04:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Futures%20studies?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Gambling</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Gambling/Poker</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Game%20theory</loc>
+ <lastmod>2021-02-11T21:00:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Game%20theory?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Game%20theory?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Games</loc>
+ <lastmod>2021-02-11T21:01:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Gemology%20and%20Jewelry</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Gemology%20and%20Jewelry/Gemstones%20subpage</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Gender%20Studies</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Genetics</loc>
+ <lastmod>2021-02-11T21:01:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Genetics?page=1</loc>
+ <lastmod>2021-02-11T21:04:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Genetics?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geographical%20coordinates</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geography</loc>
+ <lastmod>2021-02-11T21:01:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geology</loc>
+ <lastmod>2021-02-11T21:00:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geology/Meteorites</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geology?page=1</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geology?page=2</loc>
+ <lastmod>2021-02-11T21:03:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Geology?page=3</loc>
+ <lastmod>2021-02-11T21:04:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Georgia%20%28U.S.%20state%29</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Georgia%20%28U.S.%20state%29/Atlanta</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Georgia%20%28country%29</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Georgia%20(U.S.%20state)</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Georgia%20(U.S.%20state)/Atlanta</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Georgia%20(country)</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Gerald%20Ford</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany</loc>
+ <lastmod>2021-02-11T21:00:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany/GDR</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany/Hamburg</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany/Prussia</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany?page=1</loc>
+ <lastmod>2021-02-11T21:03:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany?page=2</loc>
+ <lastmod>2021-02-11T21:03:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Germany?page=3</loc>
+ <lastmod>2021-02-11T21:03:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Glaciers</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Glass</loc>
+ <lastmod>2021-02-11T21:01:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Globalization</loc>
+ <lastmod>2021-02-11T21:01:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Google</loc>
+ <lastmod>2021-02-11T21:01:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Graphic%20design</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Greater%20Manchester</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Greece</loc>
+ <lastmod>2021-02-11T21:00:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Greece/Byzantine%20world</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Greece?page=1</loc>
+ <lastmod>2021-02-11T21:04:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Greece?page=2</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Greenland</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Guild%20of%20Copy%20Editors</loc>
+ <lastmod>2021-02-11T21:00:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Guild%20of%20Copy%20Editors?page=1</loc>
+ <lastmod>2021-02-11T21:04:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Guild%20of%20Copy%20Editors?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/HOPAU</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hampshire</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hawaii</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Health%20and%20fitness</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Help</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Heraldry%20and%20vexillology</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Higher%20Education</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Highways</loc>
+ <lastmod>2021-02-11T21:02:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Highways/United%20Kingdom%20Roads</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hinduism</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History</loc>
+ <lastmod>2021-02-11T21:00:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History%20of%20Science</loc>
+ <lastmod>2021-02-11T21:00:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History%20of%20Science?page=1</loc>
+ <lastmod>2021-02-11T21:04:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History%20of%20Science?page=2</loc>
+ <lastmod>2021-02-11T21:03:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History%20of%20Science?page=3</loc>
+ <lastmod>2021-02-11T21:04:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History?page=1</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History?page=2</loc>
+ <lastmod>2021-02-11T21:03:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/History?page=3</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hitchhiker%27s%20Guide%20to%20the%20Galaxy</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hitchhiker&#039;s%20Guide%20to%20the%20Galaxy</loc>
+ <lastmod>2021-02-11T21:03:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Holidays</loc>
+ <lastmod>2021-02-11T21:01:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Home%20Living</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Homeschooling</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hong%20Kong</loc>
+ <lastmod>2021-02-11T21:02:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Horror</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Horticulture%20and%20Gardening</loc>
+ <lastmod>2021-02-11T21:02:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hospitals</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Human%20Genetic%20History</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Human%20rights</loc>
+ <lastmod>2021-02-11T21:00:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Human%20rights?page=1</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Human%20rights?page=2</loc>
+ <lastmod>2021-02-11T21:03:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Human%20rights?page=3</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Human%E2%80%93Computer%20Interaction</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Hungary</loc>
+ <lastmod>2021-02-11T21:01:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/IRC</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Iceland</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Igbo</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Illinois</loc>
+ <lastmod>2021-02-11T21:01:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Indexes</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India</loc>
+ <lastmod>2021-02-11T21:00:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Andaman%20and%20Nicobar%20Islands</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Bihar</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Indian%20history%20workgroup</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Indian%20literature%20workgroup</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Indian%20politics%20workgroup</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Jammu%20and%20Kashmir</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Patna</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/Tamil%20Nadu</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/company</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India/food</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/India?page=2</loc>
+ <lastmod>2021-02-11T21:03:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Indiana%20Historical%20Society</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Indigenous%20peoples%20of%20North%20America</loc>
+ <lastmod>2021-02-11T21:01:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Indigenous%20peoples%20of%20the%20Americas</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Indonesia</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Industrial%20design</loc>
+ <lastmod>2021-02-11T21:02:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Insects</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Insects/Ant</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Insects/Hymenoptera</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20development</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20relations</loc>
+ <lastmod>2021-02-11T21:00:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20relations/International%20law</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20relations/United%20Nations</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20relations?page=1</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20relations?page=2</loc>
+ <lastmod>2021-02-11T21:03:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/International%20relations?page=3</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet</loc>
+ <lastmod>2021-02-11T21:00:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet%20culture</loc>
+ <lastmod>2021-02-11T21:00:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet%20culture?page=1</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet%20culture?page=2</loc>
+ <lastmod>2021-02-11T21:03:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet%20culture?page=3</loc>
+ <lastmod>2021-02-11T21:03:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet?page=1</loc>
+ <lastmod>2021-02-11T21:03:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet?page=2</loc>
+ <lastmod>2021-02-11T21:02:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet?page=3</loc>
+ <lastmod>2021-02-11T21:03:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet?page=4</loc>
+ <lastmod>2021-02-11T21:04:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Internet?page=5</loc>
+ <lastmod>2021-02-11T21:04:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Invention</loc>
+ <lastmod>2021-02-11T21:01:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Iran</loc>
+ <lastmod>2021-02-11T21:00:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Iran?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Iran?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Iraq</loc>
+ <lastmod>2021-02-11T21:01:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ireland</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Islam</loc>
+ <lastmod>2021-02-11T21:01:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Islam/Muslim%20scholars</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Islands</loc>
+ <lastmod>2021-02-11T21:02:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Israel</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Israel%20Palestine%20Collaboration</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Italy</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/James%20Bond</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan</loc>
+ <lastmod>2021-02-11T21:00:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Ainu</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Biography</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Business%20and%20economy</loc>
+ <lastmod>2021-02-11T21:02:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Culture</loc>
+ <lastmod>2021-02-11T21:01:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/History</loc>
+ <lastmod>2021-02-11T21:01:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Infrastructure</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Japanese%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Law%20and%20government</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Politics</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Religion</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Royalty%20and%20nobility</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Science%20and%20technology</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Shinto</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan/Tokyo</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan?page=1</loc>
+ <lastmod>2021-02-11T21:03:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan?page=2</loc>
+ <lastmod>2021-02-11T21:03:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Japan?page=3</loc>
+ <lastmod>2021-02-11T21:03:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Java</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/JavaScript</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Jazz</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Jewish%20Women</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Jewish%20culture</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Jewish%20history</loc>
+ <lastmod>2021-02-11T21:01:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Joe%20Biden</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Journalism</loc>
+ <lastmod>2021-02-11T21:01:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Judaism</loc>
+ <lastmod>2021-02-11T21:01:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Kansas%20City</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Kent</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Keywords</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Korea</loc>
+ <lastmod>2021-02-11T21:01:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Korea/Korean%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Korea/Korean%20popular%20culture%20working%20group</loc>
+ <lastmod>2021-02-11T21:02:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Korea/North%20Korea</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Korea?page=1</loc>
+ <lastmod>2021-02-11T21:04:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Korea?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Kurdistan</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/LGBT%20studies</loc>
+ <lastmod>2021-02-11T21:01:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/LGBT%20studies/LGBT%20Person</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lakes</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Languages</loc>
+ <lastmod>2021-02-11T21:00:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Languages?page=1</loc>
+ <lastmod>2021-02-11T21:04:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Languages?page=2</loc>
+ <lastmod>2021-02-11T21:03:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Latin</loc>
+ <lastmod>2021-02-11T21:02:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Latter%20Day%20Saint%20movement</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Latvia</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law</loc>
+ <lastmod>2021-02-11T21:00:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law%20Enforcement</loc>
+ <lastmod>2021-02-11T21:01:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law%20Enforcement?page=1</loc>
+ <lastmod>2021-02-11T21:04:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law%20Enforcement?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law?page=1</loc>
+ <lastmod>2021-02-11T21:03:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law?page=2</loc>
+ <lastmod>2021-02-11T21:02:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law?page=3</loc>
+ <lastmod>2021-02-11T21:03:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Law?page=4</loc>
+ <lastmod>2021-02-11T21:04:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lego</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lehigh%20Valley</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lepidoptera</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Libertarianism</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Libraries</loc>
+ <lastmod>2021-02-11T21:01:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Library%20of%20Congress</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Limnology%20and%20Oceanography</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lincolnshire</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics</loc>
+ <lastmod>2021-02-11T21:00:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics/Applied%20Linguistics</loc>
+ <lastmod>2021-02-11T21:00:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics/Applied%20Linguistics?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics/Applied%20Linguistics?page=2</loc>
+ <lastmod>2021-02-11T21:03:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics/Etymology</loc>
+ <lastmod>2021-02-11T21:02:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics/Philosophy%20of%20language</loc>
+ <lastmod>2021-02-11T21:01:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics/Theoretical%20Linguistics</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics?page=1</loc>
+ <lastmod>2021-02-11T21:03:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics?page=2</loc>
+ <lastmod>2021-02-11T21:03:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics?page=3</loc>
+ <lastmod>2021-02-11T21:03:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics?page=4</loc>
+ <lastmod>2021-02-11T21:04:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linguistics?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Linux</loc>
+ <lastmod>2021-02-11T21:01:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists</loc>
+ <lastmod>2021-02-11T21:00:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists?page=1</loc>
+ <lastmod>2021-02-11T21:03:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists?page=2</loc>
+ <lastmod>2021-02-11T21:02:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists?page=3</loc>
+ <lastmod>2021-02-11T21:03:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists?page=4</loc>
+ <lastmod>2021-02-11T21:04:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lists?page=6</loc>
+ <lastmod>2021-02-11T21:04:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Literature</loc>
+ <lastmod>2021-02-11T21:01:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Literature?page=1</loc>
+ <lastmod>2021-02-11T21:04:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Literature?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lithuania</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/London</loc>
+ <lastmod>2021-02-11T21:01:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/London%20Transport</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/London?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/London?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Longevity</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Lutheranism</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Magic</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Malaysia</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mammals</loc>
+ <lastmod>2021-02-11T21:01:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mammals/Bats</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Maps</loc>
+ <lastmod>2021-02-11T21:01:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Marine%20life</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Marketing%20&amp;%20Advertising</loc>
+ <lastmod>2021-02-11T21:00:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Marketing%20&amp;%20Advertising?page=1</loc>
+ <lastmod>2021-02-11T21:04:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Marketing%20&amp;%20Advertising?page=2</loc>
+ <lastmod>2021-02-11T21:03:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Martial%20arts</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Maryland</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mass%20surveillance</loc>
+ <lastmod>2021-02-11T21:00:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mass%20surveillance?page=1</loc>
+ <lastmod>2021-02-11T21:04:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mass%20surveillance?page=2</loc>
+ <lastmod>2021-02-11T21:03:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mass%20surveillance?page=3</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Materials</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics</loc>
+ <lastmod>2021-02-11T21:00:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics/Mathematicians</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=1</loc>
+ <lastmod>2021-02-11T21:03:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=10</loc>
+ <lastmod>2021-02-11T21:05:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=11</loc>
+ <lastmod>2021-02-11T21:05:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=12</loc>
+ <lastmod>2021-02-11T21:05:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=13</loc>
+ <lastmod>2021-02-11T21:05:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=14</loc>
+ <lastmod>2021-02-11T21:05:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=15</loc>
+ <lastmod>2021-02-11T21:05:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=2</loc>
+ <lastmod>2021-02-11T21:02:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=3</loc>
+ <lastmod>2021-02-11T21:03:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=4</loc>
+ <lastmod>2021-02-11T21:04:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=5</loc>
+ <lastmod>2021-02-11T21:04:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=6</loc>
+ <lastmod>2021-02-11T21:04:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=7</loc>
+ <lastmod>2021-02-11T21:04:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=8</loc>
+ <lastmod>2021-02-11T21:04:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mathematics?page=9</loc>
+ <lastmod>2021-02-11T21:05:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Measurement</loc>
+ <lastmod>2021-02-11T21:01:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Media</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Media%20franchises</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine</loc>
+ <lastmod>2021-02-11T21:00:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Cardiology</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Dermatology</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Emergency%20medicine%20and%20EMS</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Medical%20genetics</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Neurology</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Psychiatry</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Pulmonology</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Reproductive%20medicine</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Society%20and%20Medicine</loc>
+ <lastmod>2021-02-11T21:01:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Toxicology</loc>
+ <lastmod>2021-02-11T21:02:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine/Translation</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=1</loc>
+ <lastmod>2021-02-11T21:03:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=2</loc>
+ <lastmod>2021-02-11T21:02:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=3</loc>
+ <lastmod>2021-02-11T21:03:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=4</loc>
+ <lastmod>2021-02-11T21:04:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=6</loc>
+ <lastmod>2021-02-11T21:04:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Medicine?page=7</loc>
+ <lastmod>2021-02-11T21:04:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Melanesia</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Melanesia/Vanuatu</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mesoamerica</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mesoamerica/Aztec</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Metal</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Metalworking</loc>
+ <lastmod>2021-02-11T21:01:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Meteorology</loc>
+ <lastmod>2021-02-11T21:01:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Meteorology/droughts%20and%20fire%20events%20sub-project</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Meteorology/weather%20data,%20products%20and%20instrumentation%20sub-project</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Meteorology?page=1</loc>
+ <lastmod>2021-02-11T21:04:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Meteorology?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Method%20engineering</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mexico</loc>
+ <lastmod>2021-02-11T21:01:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Miami</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Michigan</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Michigan/Detroit</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Microbiology</loc>
+ <lastmod>2021-02-11T21:01:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Microformats</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Micronations</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Micronesia</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Micronesia/Federated%20States%20of%20Micronesia</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Microsoft</loc>
+ <lastmod>2021-02-11T21:01:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Microsoft%20Windows</loc>
+ <lastmod>2021-02-11T21:01:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Microsoft%20Windows/Computing</loc>
+ <lastmod>2021-02-11T21:01:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages</loc>
+ <lastmod>2021-02-11T21:00:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages/Crusades</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages/History</loc>
+ <lastmod>2021-02-11T21:00:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages/History?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages/History?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle%20Ages?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Middle-earth</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history</loc>
+ <lastmod>2021-02-11T21:00:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/African%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/American%20Revolutionary%20War</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Asian%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Australia,%20New%20Zealand%20and%20South%20Pacific%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Balkan%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/British%20military%20history</loc>
+ <lastmod>2021-02-11T21:00:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/British%20military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:04:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/British%20military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:03:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Canadian%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Chinese%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Classical%20warfare</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Cold%20War</loc>
+ <lastmod>2021-02-11T21:00:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Cold%20War?page=1</loc>
+ <lastmod>2021-02-11T21:04:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Cold%20War?page=2</loc>
+ <lastmod>2021-02-11T21:03:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Crusades</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Dutch%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Early%20Modern%20warfare</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Early%20Muslim%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/European%20military%20history</loc>
+ <lastmod>2021-02-11T21:00:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/European%20military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:03:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/European%20military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:03:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/European%20military%20history?page=3</loc>
+ <lastmod>2021-02-11T21:03:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/European%20military%20history?page=4</loc>
+ <lastmod>2021-02-11T21:04:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Fortifications</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/French%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/German%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/German%20military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:04:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/German%20military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:03:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Intelligence</loc>
+ <lastmod>2021-02-11T21:00:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Intelligence?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Intelligence?page=2</loc>
+ <lastmod>2021-02-11T21:03:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Italian%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Japanese%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Korean%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Maritime%20warfare</loc>
+ <lastmod>2021-02-11T21:00:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Maritime%20warfare?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Maritime%20warfare?page=2</loc>
+ <lastmod>2021-02-11T21:03:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Medieval%20warfare</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Middle%20Eastern%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20aviation</loc>
+ <lastmod>2021-02-11T21:00:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20aviation?page=1</loc>
+ <lastmod>2021-02-11T21:03:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20aviation?page=2</loc>
+ <lastmod>2021-02-11T21:03:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20aviation?page=3</loc>
+ <lastmod>2021-02-11T21:03:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20aviation?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20biography</loc>
+ <lastmod>2021-02-11T21:00:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20biography?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20biography?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20land%20vehicles</loc>
+ <lastmod>2021-02-11T21:02:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory</loc>
+ <lastmod>2021-02-11T21:00:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory?page=1</loc>
+ <lastmod>2021-02-11T21:03:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory?page=2</loc>
+ <lastmod>2021-02-11T21:02:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory?page=3</loc>
+ <lastmod>2021-02-11T21:03:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory?page=4</loc>
+ <lastmod>2021-02-11T21:04:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Military%20science,%20technology,%20and%20theory?page=6</loc>
+ <lastmod>2021-02-11T21:04:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Napoleonic%20era</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/National%20militaries</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Nordic%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history</loc>
+ <lastmod>2021-02-11T21:00:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:02:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history?page=3</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history?page=4</loc>
+ <lastmod>2021-02-11T21:04:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/North%20American%20military%20history?page=6</loc>
+ <lastmod>2021-02-11T21:04:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Polish%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Post-Cold%20War</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Roman%20and%20Byzantine%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Russian,%20Soviet%20and%20CIS%20military%20history</loc>
+ <lastmod>2021-02-11T21:00:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Russian,%20Soviet%20and%20CIS%20military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Russian,%20Soviet%20and%20CIS%20military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/South%20American%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/South%20Asian%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Southeast%20Asian%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Spanish%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history</loc>
+ <lastmod>2021-02-11T21:00:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:02:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history?page=3</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history?page=4</loc>
+ <lastmod>2021-02-11T21:04:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/United%20States%20military%20history?page=6</loc>
+ <lastmod>2021-02-11T21:04:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Weaponry</loc>
+ <lastmod>2021-02-11T21:00:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Weaponry?page=1</loc>
+ <lastmod>2021-02-11T21:03:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Weaponry?page=2</loc>
+ <lastmod>2021-02-11T21:03:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/Weaponry?page=3</loc>
+ <lastmod>2021-02-11T21:03:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/World%20War%20I</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/World%20War%20II</loc>
+ <lastmod>2021-02-11T21:00:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/World%20War%20II?page=1</loc>
+ <lastmod>2021-02-11T21:03:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/World%20War%20II?page=2</loc>
+ <lastmod>2021-02-11T21:03:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/World%20War%20II?page=3</loc>
+ <lastmod>2021-02-11T21:03:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history/World%20War%20II?page=4</loc>
+ <lastmod>2021-02-11T21:04:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=1</loc>
+ <lastmod>2021-02-11T21:03:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=10</loc>
+ <lastmod>2021-02-11T21:05:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=11</loc>
+ <lastmod>2021-02-11T21:05:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=12</loc>
+ <lastmod>2021-02-11T21:05:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=13</loc>
+ <lastmod>2021-02-11T21:05:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=14</loc>
+ <lastmod>2021-02-11T21:05:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=15</loc>
+ <lastmod>2021-02-11T21:05:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=2</loc>
+ <lastmod>2021-02-11T21:02:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=3</loc>
+ <lastmod>2021-02-11T21:03:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=4</loc>
+ <lastmod>2021-02-11T21:04:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=5</loc>
+ <lastmod>2021-02-11T21:04:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=6</loc>
+ <lastmod>2021-02-11T21:04:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=7</loc>
+ <lastmod>2021-02-11T21:04:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=8</loc>
+ <lastmod>2021-02-11T21:04:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Military%20history?page=9</loc>
+ <lastmod>2021-02-11T21:04:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mills</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mining</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Minnesota</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Missouri</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mixed%20martial%20arts</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Moldova</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Molecular%20Biology</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Molecular%20and%20Cell%20Biology</loc>
+ <lastmod>2021-02-11T21:01:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mongols</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Montana</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Moon</loc>
+ <lastmod>2021-02-11T21:01:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Morocco</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Motorcycling</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Motorsport</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mozilla</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Museum%20of%20Modern%20Art</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Museums</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Music%20theory</loc>
+ <lastmod>2021-02-11T21:02:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Music/Music%20genres</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Musical%20Instruments</loc>
+ <lastmod>2021-02-11T21:01:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Musical%20Theatre</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Myanmar</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Mythology</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/National%20Archives</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/National%20Register%20of%20Historic%20Places</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Nepal</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Netherlands</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Neuroscience</loc>
+ <lastmod>2021-02-11T21:01:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Neuroscience?page=1</loc>
+ <lastmod>2021-02-11T21:04:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Neuroscience?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Nevada</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20Jersey</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20Jersey/Hudson%20County</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20%28state%29</loc>
+ <lastmod>2021-02-11T21:01:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20%28state%29/Columbia%20University</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20%28state%29/Cornell%20University</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20%28state%29/Hudson%20Valley</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20%28state%29/Long%20Island</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20%28state%29/Western%20New%20York</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20(state)</loc>
+ <lastmod>2021-02-11T21:02:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20(state)/Columbia%20University</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20(state)/Cornell%20University</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20(state)/Hudson%20Valley</loc>
+ <lastmod>2021-02-11T21:03:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20(state)/Long%20Island</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20(state)/Western%20New%20York</loc>
+ <lastmod>2021-02-11T21:02:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20York%20City</loc>
+ <lastmod>2021-02-11T21:01:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20Zealand</loc>
+ <lastmod>2021-02-11T21:01:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20Zealand/M%C4%81ori</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/New%20Zealand/New%20Zealand%20politics</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Nicaragua</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Norse%20history%20and%20culture</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/North%20America</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/North%20Macedonia</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Northern%20Ireland</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Norway</loc>
+ <lastmod>2021-02-11T21:01:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels</loc>
+ <lastmod>2021-02-11T21:00:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/19th%20century</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Crime</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Fantasy</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Harry%20Potter</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Science%20fiction</loc>
+ <lastmod>2021-02-11T21:01:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Science%20fiction?page=1</loc>
+ <lastmod>2021-02-11T21:04:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Science%20fiction?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels/Short%20story</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels?page=1</loc>
+ <lastmod>2021-02-11T21:04:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels?page=2</loc>
+ <lastmod>2021-02-11T21:03:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Novels?page=3</loc>
+ <lastmod>2021-02-11T21:04:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Numbers</loc>
+ <lastmod>2021-02-11T21:01:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Numismatics</loc>
+ <lastmod>2021-02-11T21:00:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Numismatics/American%20currency</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Numismatics/Cryptocurrency</loc>
+ <lastmod>2021-02-11T21:01:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Numismatics?page=1</loc>
+ <lastmod>2021-02-11T21:04:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Numismatics?page=2</loc>
+ <lastmod>2021-02-11T21:03:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Occupational%20Safety%20and%20Health</loc>
+ <lastmod>2021-02-11T21:00:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Occupational%20Safety%20and%20Health?page=1</loc>
+ <lastmod>2021-02-11T21:04:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Occupational%20Safety%20and%20Health?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Occupations</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Oceans</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Oklahoma</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Oklahoma/Task-force%20Tulsa</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Olympics</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Olympics/Paralympics</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Open</loc>
+ <lastmod>2021-02-11T21:02:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Oregon</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Organizations</loc>
+ <lastmod>2021-02-11T21:01:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Organized%20Labour</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Organized%20crime</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ottoman%20Empire</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Pakistan</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Palaeontology</loc>
+ <lastmod>2021-02-11T21:01:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Palestine</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Panama</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Papua%20New%20Guinea</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Paranormal</loc>
+ <lastmod>2021-02-11T21:01:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Parapsychology</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Past%20Political%20Scandals%20and%20Controversies</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Pennsylvania</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Percussion</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Perl</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Peru</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Pharmacology</loc>
+ <lastmod>2021-02-11T21:02:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philadelphia</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philately</loc>
+ <lastmod>2021-02-11T21:01:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy</loc>
+ <lastmod>2021-02-11T21:00:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Aesthetics</loc>
+ <lastmod>2021-02-11T21:02:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Analytic%20philosophy</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Anarchism</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Ancient%20philosophy</loc>
+ <lastmod>2021-02-11T21:01:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Contemporary%20philosophy</loc>
+ <lastmod>2021-02-11T21:01:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Contemporary%20philosophy?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Contemporary%20philosophy?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Continental%20philosophy</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Eastern%20philosophy</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Epistemology</loc>
+ <lastmod>2021-02-11T21:01:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Ethics</loc>
+ <lastmod>2021-02-11T21:00:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Ethics?page=1</loc>
+ <lastmod>2021-02-11T21:04:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Ethics?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Logic</loc>
+ <lastmod>2021-02-11T21:00:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Logic?page=1</loc>
+ <lastmod>2021-02-11T21:03:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Logic?page=2</loc>
+ <lastmod>2021-02-11T21:03:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Logic?page=3</loc>
+ <lastmod>2021-02-11T21:03:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Logic?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Medieval%20philosophy</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Metaphysics</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Modern%20philosophy</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophers</loc>
+ <lastmod>2021-02-11T21:01:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophers?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophers?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophical%20literature</loc>
+ <lastmod>2021-02-11T21:01:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophical%20literature?page=1</loc>
+ <lastmod>2021-02-11T21:04:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophical%20literature?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophy%20of%20language</loc>
+ <lastmod>2021-02-11T21:02:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophy%20of%20mind</loc>
+ <lastmod>2021-02-11T21:01:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophy%20of%20religion</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophy%20of%20science</loc>
+ <lastmod>2021-02-11T21:01:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophy%20of%20science?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Philosophy%20of%20science?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Social%20and%20political%20philosophy</loc>
+ <lastmod>2021-02-11T21:00:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Social%20and%20political%20philosophy?page=1</loc>
+ <lastmod>2021-02-11T21:04:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy/Social%20and%20political%20philosophy?page=2</loc>
+ <lastmod>2021-02-11T21:03:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=1</loc>
+ <lastmod>2021-02-11T21:03:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=10</loc>
+ <lastmod>2021-02-11T21:05:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=11</loc>
+ <lastmod>2021-02-11T21:05:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=2</loc>
+ <lastmod>2021-02-11T21:02:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=3</loc>
+ <lastmod>2021-02-11T21:03:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=4</loc>
+ <lastmod>2021-02-11T21:04:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=5</loc>
+ <lastmod>2021-02-11T21:04:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=6</loc>
+ <lastmod>2021-02-11T21:04:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=7</loc>
+ <lastmod>2021-02-11T21:04:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=8</loc>
+ <lastmod>2021-02-11T21:04:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Philosophy?page=9</loc>
+ <lastmod>2021-02-11T21:05:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Photography</loc>
+ <lastmod>2021-02-11T21:01:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Photography/History%20of%20photography</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics</loc>
+ <lastmod>2021-02-11T21:00:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics/Acoustics</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics/Biographies</loc>
+ <lastmod>2021-02-11T21:01:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics/Fluid%20Dynamics</loc>
+ <lastmod>2021-02-11T21:01:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics/History</loc>
+ <lastmod>2021-02-11T21:01:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics/Publications</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics/relativity</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=1</loc>
+ <lastmod>2021-02-11T21:03:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=10</loc>
+ <lastmod>2021-02-11T21:05:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=11</loc>
+ <lastmod>2021-02-11T21:05:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=12</loc>
+ <lastmod>2021-02-11T21:05:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=2</loc>
+ <lastmod>2021-02-11T21:02:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=3</loc>
+ <lastmod>2021-02-11T21:03:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=4</loc>
+ <lastmod>2021-02-11T21:04:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=6</loc>
+ <lastmod>2021-02-11T21:04:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=7</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=8</loc>
+ <lastmod>2021-02-11T21:05:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physics?page=9</loc>
+ <lastmod>2021-02-11T21:05:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology</loc>
+ <lastmod>2021-02-11T21:01:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology/cell</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology/neuro</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology/renal</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology/respiratory</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Physiology?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Piracy</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Pirate%20Politics</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Plan%209</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Plants</loc>
+ <lastmod>2021-02-11T21:00:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Plants?page=1</loc>
+ <lastmod>2021-02-11T21:04:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Plants?page=2</loc>
+ <lastmod>2021-02-11T21:03:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Poetry</loc>
+ <lastmod>2021-02-11T21:01:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Poland</loc>
+ <lastmod>2021-02-11T21:01:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics</loc>
+ <lastmod>2021-02-11T21:00:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics%20of%20the%20United%20Kingdom</loc>
+ <lastmod>2021-02-11T21:01:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics/American%20politics</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics/Corporatism</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics/Fascism</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics/Oligarchy</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics/Political%20parties</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=1</loc>
+ <lastmod>2021-02-11T21:03:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=2</loc>
+ <lastmod>2021-02-11T21:02:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=3</loc>
+ <lastmod>2021-02-11T21:03:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=4</loc>
+ <lastmod>2021-02-11T21:04:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=5</loc>
+ <lastmod>2021-02-11T21:04:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=6</loc>
+ <lastmod>2021-02-11T21:04:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=7</loc>
+ <lastmod>2021-02-11T21:04:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Politics?page=8</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Polymers</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Polynesia</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Polynesia/Tokelau</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Popular%20Culture</loc>
+ <lastmod>2021-02-11T21:01:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Portugal</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Primates</loc>
+ <lastmod>2021-02-11T21:01:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Pritzker%20Military%20Library</loc>
+ <lastmod>2021-02-11T21:01:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Private%20Equity</loc>
+ <lastmod>2021-02-11T21:01:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Professional%20sound%20production</loc>
+ <lastmod>2021-02-11T21:01:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Professional%20wrestling</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychoactive%20and%20Recreational%20Drugs</loc>
+ <lastmod>2021-02-11T21:01:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology</loc>
+ <lastmod>2021-02-11T21:00:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=1</loc>
+ <lastmod>2021-02-11T21:03:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=2</loc>
+ <lastmod>2021-02-11T21:02:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=3</loc>
+ <lastmod>2021-02-11T21:03:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=4</loc>
+ <lastmod>2021-02-11T21:04:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=5</loc>
+ <lastmod>2021-02-11T21:04:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=6</loc>
+ <lastmod>2021-02-11T21:04:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=7</loc>
+ <lastmod>2021-02-11T21:04:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Psychology?page=8</loc>
+ <lastmod>2021-02-11T21:04:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Public%20Art</loc>
+ <lastmod>2021-02-11T21:02:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Radio</loc>
+ <lastmod>2021-02-11T21:01:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Radio%20Stations</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Radio/UK%20Radio</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Reference%20works</loc>
+ <lastmod>2021-02-11T21:01:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Reliability</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Religion</loc>
+ <lastmod>2021-02-11T21:00:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Religion/Interfaith</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Religion/New%20religious%20movements</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Religion?page=1</loc>
+ <lastmod>2021-02-11T21:04:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Religion?page=2</loc>
+ <lastmod>2021-02-11T21:03:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Retailing</loc>
+ <lastmod>2021-02-11T21:01:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/River%20Thames</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Road%20transport</loc>
+ <lastmod>2021-02-11T21:01:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Robotics</loc>
+ <lastmod>2021-02-11T21:01:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Robotics?page=1</loc>
+ <lastmod>2021-02-11T21:04:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Robotics?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Rock%20music</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Rocketry</loc>
+ <lastmod>2021-02-11T21:01:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Rocks%20and%20minerals</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Rodents</loc>
+ <lastmod>2021-02-11T21:02:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Role-playing%20games</loc>
+ <lastmod>2021-02-11T21:01:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Romania</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Rome</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Roots%20music</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Royalty%20and%20Nobility</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Running</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia</loc>
+ <lastmod>2021-02-11T21:00:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/Russian,%20Soviet,%20and%20CIS%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/demographics%20and%20ethnography%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:02:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/economy%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/history%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:00:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/history%20of%20Russia?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/history%20of%20Russia?page=2</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/human%20geography%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/language%20and%20literature%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:01:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/mass%20media%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:01:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/performing%20arts%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/physical%20geography%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:01:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/politics%20and%20law%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/religion%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/science%20and%20education%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:01:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/science%20and%20education%20in%20Russia?page=1</loc>
+ <lastmod>2021-02-11T21:04:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/science%20and%20education%20in%20Russia?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/sports%20and%20games%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/technology%20and%20engineering%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:00:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/technology%20and%20engineering%20in%20Russia?page=1</loc>
+ <lastmod>2021-02-11T21:04:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/technology%20and%20engineering%20in%20Russia?page=2</loc>
+ <lastmod>2021-02-11T21:03:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia/visual%20arts%20in%20Russia</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia?page=1</loc>
+ <lastmod>2021-02-11T21:03:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia?page=2</loc>
+ <lastmod>2021-02-11T21:02:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia?page=3</loc>
+ <lastmod>2021-02-11T21:03:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia?page=4</loc>
+ <lastmod>2021-02-11T21:04:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Russia?page=5</loc>
+ <lastmod>2021-02-11T21:04:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Schools</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science</loc>
+ <lastmod>2021-02-11T21:01:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science%20Fiction</loc>
+ <lastmod>2021-02-11T21:00:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science%20Fiction?page=1</loc>
+ <lastmod>2021-02-11T21:03:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science%20Fiction?page=2</loc>
+ <lastmod>2021-02-11T21:03:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science%20Fiction?page=3</loc>
+ <lastmod>2021-02-11T21:03:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science?page=1</loc>
+ <lastmod>2021-02-11T21:04:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Science?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Scientology</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Scotland</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Scottish%20Islands</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Scouting</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Scouting/Girl%20Guiding%20and%20Girl%20Scouting</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Screenwriters</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Scuba%20diving</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sculpture</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Seamounts</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Secret%20Societies</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Serbia</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Serial%20Killer</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sexology%20and%20sexuality</loc>
+ <lastmod>2021-02-11T21:01:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sexology%20and%20sexuality/Sex%20work</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Shakespeare</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sharks</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ships</loc>
+ <lastmod>2021-02-11T21:01:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ships?page=1</loc>
+ <lastmod>2021-02-11T21:04:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ships?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Shipwrecks</loc>
+ <lastmod>2021-02-11T21:02:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Shopping%20Centers</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sicily</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Singapore</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Skepticism</loc>
+ <lastmod>2021-02-11T21:00:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Skepticism?page=1</loc>
+ <lastmod>2021-02-11T21:03:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Skepticism?page=2</loc>
+ <lastmod>2021-02-11T21:03:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Skepticism?page=3</loc>
+ <lastmod>2021-02-11T21:03:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Skepticism?page=4</loc>
+ <lastmod>2021-02-11T21:04:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Skyscrapers</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Smithsonian%20Institution%20Archives</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Smithsonian%20Institution-related</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Social%20Work</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Socialism</loc>
+ <lastmod>2021-02-11T21:00:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Socialism?page=1</loc>
+ <lastmod>2021-02-11T21:04:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Socialism?page=2</loc>
+ <lastmod>2021-02-11T21:03:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology</loc>
+ <lastmod>2021-02-11T21:00:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology/social%20movements</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology?page=1</loc>
+ <lastmod>2021-02-11T21:03:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology?page=2</loc>
+ <lastmod>2021-02-11T21:02:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology?page=3</loc>
+ <lastmod>2021-02-11T21:03:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology?page=4</loc>
+ <lastmod>2021-02-11T21:04:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sociology?page=5</loc>
+ <lastmod>2021-02-11T21:04:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Software</loc>
+ <lastmod>2021-02-11T21:00:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Software/Computing</loc>
+ <lastmod>2021-02-11T21:00:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Software/Computing?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Software/Computing?page=2</loc>
+ <lastmod>2021-02-11T21:03:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Software?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Software?page=2</loc>
+ <lastmod>2021-02-11T21:03:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soil</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Solar%20System</loc>
+ <lastmod>2021-02-11T21:01:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Solar%20System/Mars</loc>
+ <lastmod>2021-02-11T21:01:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Solar%20System/Moon</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Solar%20System?page=1</loc>
+ <lastmod>2021-02-11T21:04:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Solar%20System?page=2</loc>
+ <lastmod>2021-02-11T21:03:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Somalia</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Songs</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/South%20Africa</loc>
+ <lastmod>2021-02-11T21:02:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/South%20Park</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Southeast%20Asia</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Southeast%20Asia/Brunei</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union</loc>
+ <lastmod>2021-02-11T21:00:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union/Russia</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union/Russian,%20Soviet%20and%20CIS%20military%20history</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union/economy%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union/history%20of%20Russia</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union?page=1</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union?page=2</loc>
+ <lastmod>2021-02-11T21:03:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Soviet%20Union?page=3</loc>
+ <lastmod>2021-02-11T21:04:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight</loc>
+ <lastmod>2021-02-11T21:00:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight/Timeline%20of%20spaceflight%20working%20group</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight?page=1</loc>
+ <lastmod>2021-02-11T21:03:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight?page=2</loc>
+ <lastmod>2021-02-11T21:02:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight?page=3</loc>
+ <lastmod>2021-02-11T21:03:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight?page=4</loc>
+ <lastmod>2021-02-11T21:04:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight?page=5</loc>
+ <lastmod>2021-02-11T21:04:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spaceflight?page=6</loc>
+ <lastmod>2021-02-11T21:04:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spain</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spectroscopy</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Speed%20Skating</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spiders</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spirits</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Spirituality</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sports</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Squatting</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Stanford%20University</loc>
+ <lastmod>2021-02-11T21:02:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Stanford%20University/SRI%20International</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Star%20Trek</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Star%20Wars</loc>
+ <lastmod>2021-02-11T21:02:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Statistics</loc>
+ <lastmod>2021-02-11T21:00:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Statistics?page=1</loc>
+ <lastmod>2021-02-11T21:03:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Statistics?page=2</loc>
+ <lastmod>2021-02-11T21:02:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Statistics?page=3</loc>
+ <lastmod>2021-02-11T21:03:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Statistics?page=4</loc>
+ <lastmod>2021-02-11T21:04:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Statistics?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Surrey</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sweden</loc>
+ <lastmod>2021-02-11T21:01:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sweden?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Sweden?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Switzerland</loc>
+ <lastmod>2021-02-11T21:01:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Syria</loc>
+ <lastmod>2021-02-11T21:01:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems</loc>
+ <lastmod>2021-02-11T21:00:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Chaos%20theory</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Control%20theory</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Cybernetics</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Dynamical%20systems</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Operations%20research</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Project%20management</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Scientific%20modeling</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Software%20engineering</loc>
+ <lastmod>2021-02-11T21:02:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Systems</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Systems%20engineering</loc>
+ <lastmod>2021-02-11T21:01:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Systems%20theory</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems/Visualization</loc>
+ <lastmod>2021-02-11T21:02:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems?page=1</loc>
+ <lastmod>2021-02-11T21:03:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems?page=2</loc>
+ <lastmod>2021-02-11T21:03:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems?page=3</loc>
+ <lastmod>2021-02-11T21:03:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Systems?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Taiwan</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tajikistan</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tambayan%20Philippines</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tamil%20civilization</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Taoism</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Taxation</loc>
+ <lastmod>2021-02-11T21:01:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology</loc>
+ <lastmod>2021-02-11T21:00:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology?page=1</loc>
+ <lastmod>2021-02-11T21:03:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology?page=2</loc>
+ <lastmod>2021-02-11T21:02:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology?page=3</loc>
+ <lastmod>2021-02-11T21:03:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology?page=4</loc>
+ <lastmod>2021-02-11T21:04:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Technology?page=6</loc>
+ <lastmod>2021-02-11T21:04:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Telecommunications</loc>
+ <lastmod>2021-02-11T21:00:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Telecommunications/Bell%20System</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Telecommunications?page=1</loc>
+ <lastmod>2021-02-11T21:03:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Telecommunications?page=2</loc>
+ <lastmod>2021-02-11T21:03:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Telecommunications?page=3</loc>
+ <lastmod>2021-02-11T21:03:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Television</loc>
+ <lastmod>2021-02-11T21:01:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Television/Nickelodeon</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Television/Television%20game%20shows</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Television?page=1</loc>
+ <lastmod>2021-02-11T21:04:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Television?page=2</loc>
+ <lastmod>2021-02-11T21:03:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tennessee</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tennis</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Terrorism</loc>
+ <lastmod>2021-02-11T21:01:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Textile%20Arts</loc>
+ <lastmod>2021-02-11T21:01:56+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Theatre</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tibet</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Time</loc>
+ <lastmod>2021-02-11T21:00:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Time?page=1</loc>
+ <lastmod>2021-02-11T21:04:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Time?page=2</loc>
+ <lastmod>2021-02-11T21:03:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Time?page=3</loc>
+ <lastmod>2021-02-11T21:04:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Toys</loc>
+ <lastmod>2021-02-11T21:01:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trade</loc>
+ <lastmod>2021-02-11T21:01:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains</loc>
+ <lastmod>2021-02-11T21:01:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains/Monorail</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains/Rail%20transport%20modelling</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains/Rapid%20transit</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains/Streetcars</loc>
+ <lastmod>2021-02-11T21:02:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains/UK%20Railways</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains?page=1</loc>
+ <lastmod>2021-02-11T21:04:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Trains?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Transhumanism</loc>
+ <lastmod>2021-02-11T21:01:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Transhumanism?page=1</loc>
+ <lastmod>2021-02-11T21:04:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Transhumanism?page=2</loc>
+ <lastmod>2021-02-11T21:03:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Translation%20studies</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Transport</loc>
+ <lastmod>2021-02-11T21:01:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Transport%20in%20Scotland</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Transport/Maritime</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Travel%20and%20Tourism</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tree%20of%20Life</loc>
+ <lastmod>2021-02-11T21:02:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tropical%20cyclones</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Tunings,%20Temperaments,%20and%20Scales</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Turkey</loc>
+ <lastmod>2021-02-11T21:01:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Typography</loc>
+ <lastmod>2021-02-11T21:01:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Typography?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Typography?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/U.S.%20Congress</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/U.S.%20Roads</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/U.S.%20Roads/Texas</loc>
+ <lastmod>2021-02-11T21:02:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/U.S.%20Supreme%20Court%20cases</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/UK%20Waterways</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/UK%20geography</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Ukraine</loc>
+ <lastmod>2021-02-11T21:01:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20Kingdom</loc>
+ <lastmod>2021-02-11T21:00:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20Kingdom?page=1</loc>
+ <lastmod>2021-02-11T21:04:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20Kingdom?page=2</loc>
+ <lastmod>2021-02-11T21:03:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States</loc>
+ <lastmod>2021-02-11T21:00:12+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States%20Constitution</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States%20History</loc>
+ <lastmod>2021-02-11T21:01:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States%20Public%20Policy</loc>
+ <lastmod>2021-02-11T21:02:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/American%20Old%20West</loc>
+ <lastmod>2021-02-11T21:02:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/American%20television</loc>
+ <lastmod>2021-02-11T21:02:14+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Animation%20-%20American%20animation</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Arizona</loc>
+ <lastmod>2021-02-11T21:02:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Asian%20Americans</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Cincinnati</loc>
+ <lastmod>2021-02-11T21:02:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Colorado</loc>
+ <lastmod>2021-02-11T21:02:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Delaware</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/District%20of%20Columbia</loc>
+ <lastmod>2021-02-11T21:02:18+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/FBI</loc>
+ <lastmod>2021-02-11T21:01:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Film%20-%20American%20cinema</loc>
+ <lastmod>2021-02-11T21:02:06+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Indiana</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Indiana%20-%20Indianapolis</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Iowa</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Kentucky</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Louisiana</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Massachusetts</loc>
+ <lastmod>2021-02-11T21:01:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Massachusetts%20-%20Boston</loc>
+ <lastmod>2021-02-11T21:02:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Massachusetts%20-%20Cape%20Cod%20and%20the%20Islands</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Military%20history%20-%20U.S.%20military%20history</loc>
+ <lastmod>2021-02-11T21:01:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Mississippi</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Nebraska%20-%20Omaha</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/New%20Hampshire</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/North%20Carolina</loc>
+ <lastmod>2021-02-11T21:02:03+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Ohio</loc>
+ <lastmod>2021-02-11T21:02:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/South%20Carolina</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Texas</loc>
+ <lastmod>2021-02-11T21:01:55+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20Government</loc>
+ <lastmod>2021-02-11T21:00:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20Government?page=1</loc>
+ <lastmod>2021-02-11T21:03:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20Government?page=2</loc>
+ <lastmod>2021-02-11T21:03:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20Government?page=3</loc>
+ <lastmod>2021-02-11T21:03:54+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20Government?page=4</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20Public%20Policy</loc>
+ <lastmod>2021-02-11T21:02:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20governors</loc>
+ <lastmod>2021-02-11T21:02:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20history</loc>
+ <lastmod>2021-02-11T21:02:34+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/U.S.%20presidential%20elections</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/United%20States%20Presidents</loc>
+ <lastmod>2021-02-11T21:02:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Utah</loc>
+ <lastmod>2021-02-11T21:01:59+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Vermont</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Washington</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Washington%20-%20Seattle</loc>
+ <lastmod>2021-02-11T21:01:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/West%20Virginia</loc>
+ <lastmod>2021-02-11T21:02:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/West%20Virginia%20University</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States/Wyoming</loc>
+ <lastmod>2021-02-11T21:02:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=1</loc>
+ <lastmod>2021-02-11T21:03:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=10</loc>
+ <lastmod>2021-02-11T21:05:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=11</loc>
+ <lastmod>2021-02-11T21:05:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=12</loc>
+ <lastmod>2021-02-11T21:05:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=13</loc>
+ <lastmod>2021-02-11T21:05:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=14</loc>
+ <lastmod>2021-02-11T21:05:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=15</loc>
+ <lastmod>2021-02-11T21:05:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=16</loc>
+ <lastmod>2021-02-11T21:05:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=2</loc>
+ <lastmod>2021-02-11T21:02:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=3</loc>
+ <lastmod>2021-02-11T21:03:33+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=4</loc>
+ <lastmod>2021-02-11T21:04:27+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=5</loc>
+ <lastmod>2021-02-11T21:04:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=6</loc>
+ <lastmod>2021-02-11T21:04:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=7</loc>
+ <lastmod>2021-02-11T21:04:53+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=8</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/United%20States?page=9</loc>
+ <lastmod>2021-02-11T21:05:01+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/University%20of%20California</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/University%20of%20Oxford</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/University%20of%20Pennsylvania</loc>
+ <lastmod>2021-02-11T21:02:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Urban%20studies%20and%20planning</loc>
+ <lastmod>2021-02-11T21:00:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Urban%20studies%20and%20planning?page=1</loc>
+ <lastmod>2021-02-11T21:04:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Urban%20studies%20and%20planning?page=2</loc>
+ <lastmod>2021-02-11T21:03:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Usability</loc>
+ <lastmod>2021-02-11T21:02:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Veterinary%20medicine</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games</loc>
+ <lastmod>2021-02-11T21:00:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games/Nintendo</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games/Sega</loc>
+ <lastmod>2021-02-11T21:02:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games?page=1</loc>
+ <lastmod>2021-02-11T21:03:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games?page=2</loc>
+ <lastmod>2021-02-11T21:03:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games?page=3</loc>
+ <lastmod>2021-02-11T21:03:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games?page=4</loc>
+ <lastmod>2021-02-11T21:04:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Video%20games?page=5</loc>
+ <lastmod>2021-02-11T21:04:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Vienna</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Vietnam</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Virginia</loc>
+ <lastmod>2021-02-11T21:01:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Virginia/Albemarle%20County</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Viruses</loc>
+ <lastmod>2021-02-11T21:01:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Viruses?page=1</loc>
+ <lastmod>2021-02-11T21:04:25+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Viruses?page=2</loc>
+ <lastmod>2021-02-11T21:03:29+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Visual%20arts</loc>
+ <lastmod>2021-02-11T21:00:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Visual%20arts?page=1</loc>
+ <lastmod>2021-02-11T21:04:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Visual%20arts?page=2</loc>
+ <lastmod>2021-02-11T21:03:15+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Visual%20arts?page=3</loc>
+ <lastmod>2021-02-11T21:04:05+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Volcanoes</loc>
+ <lastmod>2021-02-11T21:02:02+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Watches</loc>
+ <lastmod>2021-02-11T21:02:16+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Water</loc>
+ <lastmod>2021-02-11T21:02:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Websites</loc>
+ <lastmod>2021-02-11T21:01:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Websites/Computing</loc>
+ <lastmod>2021-02-11T21:01:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Western%20Asia</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Wiki%20Loves%20Women</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Wildfire</loc>
+ <lastmod>2021-02-11T21:02:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Wiltshire</loc>
+ <lastmod>2021-02-11T21:02:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Wine</loc>
+ <lastmod>2021-02-11T21:02:22+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Wisconsin</loc>
+ <lastmod>2021-02-11T21:02:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women</loc>
+ <lastmod>2021-02-11T21:01:58+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%20artists</loc>
+ <lastmod>2021-02-11T21:02:37+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%20in%20Red</loc>
+ <lastmod>2021-02-11T21:02:38+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%20scientists</loc>
+ <lastmod>2021-02-11T21:01:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%20writers</loc>
+ <lastmod>2021-02-11T21:01:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%27s%20Health</loc>
+ <lastmod>2021-02-11T21:02:40+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%27s%20History</loc>
+ <lastmod>2021-02-11T21:00:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%27s%20History?page=1</loc>
+ <lastmod>2021-02-11T21:04:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women%27s%20History?page=2</loc>
+ <lastmod>2021-02-11T21:03:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women&#039;s%20Health</loc>
+ <lastmod>2021-02-11T21:03:23+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women&#039;s%20History</loc>
+ <lastmod>2021-02-11T21:02:49+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women&#039;s%20History?page=1</loc>
+ <lastmod>2021-02-11T21:04:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Women&#039;s%20History?page=2</loc>
+ <lastmod>2021-02-11T21:03:31+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Woodworking</loc>
+ <lastmod>2021-02-11T21:02:43+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/World%20Heritage%20Sites</loc>
+ <lastmod>2021-02-11T21:02:44+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Writing%20systems</loc>
+ <lastmod>2021-02-11T21:00:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Writing%20systems?page=1</loc>
+ <lastmod>2021-02-11T21:04:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Writing%20systems?page=2</loc>
+ <lastmod>2021-02-11T21:03:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Years</loc>
+ <lastmod>2021-02-11T21:02:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Yugoslavia</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Zimbabwe</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/Zoo</loc>
+ <lastmod>2021-02-11T21:02:20+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing</loc>
+ <lastmod>2021-02-11T21:00:10+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=1</loc>
+ <lastmod>2021-02-11T21:03:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=10</loc>
+ <lastmod>2021-02-11T21:05:04+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=11</loc>
+ <lastmod>2021-02-11T21:05:07+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=12</loc>
+ <lastmod>2021-02-11T21:05:09+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=13</loc>
+ <lastmod>2021-02-11T21:05:11+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=14</loc>
+ <lastmod>2021-02-11T21:05:13+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=15</loc>
+ <lastmod>2021-02-11T21:05:17+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=16</loc>
+ <lastmod>2021-02-11T21:05:19+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=17</loc>
+ <lastmod>2021-02-11T21:05:21+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=18</loc>
+ <lastmod>2021-02-11T21:05:24+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=19</loc>
+ <lastmod>2021-02-11T21:05:26+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=2</loc>
+ <lastmod>2021-02-11T21:02:51+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=20</loc>
+ <lastmod>2021-02-11T21:05:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=21</loc>
+ <lastmod>2021-02-11T21:05:30+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=22</loc>
+ <lastmod>2021-02-11T21:05:32+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=23</loc>
+ <lastmod>2021-02-11T21:05:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=24</loc>
+ <lastmod>2021-02-11T21:05:36+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=25</loc>
+ <lastmod>2021-02-11T21:05:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=26</loc>
+ <lastmod>2021-02-11T21:05:41+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=27</loc>
+ <lastmod>2021-02-11T21:05:42+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=28</loc>
+ <lastmod>2021-02-11T21:05:45+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=29</loc>
+ <lastmod>2021-02-11T21:05:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=3</loc>
+ <lastmod>2021-02-11T21:03:35+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=30</loc>
+ <lastmod>2021-02-11T21:05:47+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=31</loc>
+ <lastmod>2021-02-11T21:05:48+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=32</loc>
+ <lastmod>2021-02-11T21:05:50+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=4</loc>
+ <lastmod>2021-02-11T21:04:28+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=5</loc>
+ <lastmod>2021-02-11T21:04:39+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=6</loc>
+ <lastmod>2021-02-11T21:04:46+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=7</loc>
+ <lastmod>2021-02-11T21:04:52+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=8</loc>
+ <lastmod>2021-02-11T21:04:57+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topic/computing?page=9</loc>
+ <lastmod>2021-02-11T21:05:00+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+ <url>
+ <loc>https://www.mostdiscussed.com/topics</loc>
+ <lastmod>2021-02-11T21:00:08+00:00</lastmod>
+ <changefreq>daily</changefreq>
+ <priority>0.8</priority>
+ </url>
+</urlset> \ No newline at end of file