diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/prefsCleaner.sh b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/prefsCleaner.sh deleted file mode 100755 index b9739b2..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/prefsCleaner.sh +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env bash - -## prefs.js cleaner for Linux/Mac -## author: @claustromaniac -## version: 2.1 - -## special thanks to @overdodactyl and @earthlng for a few snippets that I stol..*cough* borrowed from the updater.sh - -## DON'T GO HIGHER THAN VERSION x.9 !! ( because of ASCII comparison in update_prefsCleaner() ) - -readonly CURRDIR=$(pwd) - -## get the full path of this script (readlink for Linux, greadlink for Mac with coreutils installed) -SCRIPT_FILE=$(readlink -f "${BASH_SOURCE[0]}" 2>/dev/null || greadlink -f "${BASH_SOURCE[0]}" 2>/dev/null) - -## fallback for Macs without coreutils -[ -z "$SCRIPT_FILE" ] && SCRIPT_FILE=${BASH_SOURCE[0]} - - -AUTOUPDATE=true -QUICKSTART=false - -## download method priority: curl -> wget -DOWNLOAD_METHOD='' -if command -v curl >/dev/null; then - DOWNLOAD_METHOD='curl --max-redirs 3 -so' -elif command -v wget >/dev/null; then - DOWNLOAD_METHOD='wget --max-redirect 3 --quiet -O' -else - AUTOUPDATE=false - echo -e "No curl or wget detected.\nAutomatic self-update disabled!" -fi - -fQuit() { - ## change directory back to the original working directory - cd "${CURRDIR}" - [ "$1" -eq 0 ] && echo -e "\n$2" || echo -e "\n$2" >&2 - exit $1 -} - -fUsage() { - echo -e "\nUsage: $0 [-ds]" - echo -e " -Optional Arguments: - -s Start immediately - -d Don't auto-update prefsCleaner.sh" -} - -download_file() { # expects URL as argument ($1) - declare -r tf=$(mktemp) - - $DOWNLOAD_METHOD "${tf}" "$1" &>/dev/null && echo "$tf" || echo '' # return the temp-filename or empty string on error -} - -fFF_check() { - # there are many ways to see if firefox is running or not, some more reliable than others - # this isn't elegant and might not be future-proof but should at least be compatible with any environment - while [ -e lock ]; do - echo -e "\nThis Firefox profile seems to be in use. Close Firefox and try again.\n" >&2 - read -r -p "Press any key to continue." - done -} - -## returns the version number of a prefsCleaner.sh file -get_prefsCleaner_version() { - echo "$(sed -n '5 s/.*[[:blank:]]\([[:digit:]]*\.[[:digit:]]*\)/\1/p' "$1")" -} - -## updates the prefsCleaner.sh file based on the latest public version -update_prefsCleaner() { - declare -r tmpfile="$(download_file 'https://raw.githubusercontent.com/arkenfox/user.js/master/prefsCleaner.sh')" - [ -z "$tmpfile" ] && echo -e "Error! Could not download prefsCleaner.sh" && return 1 # check if download failed - - [[ $(get_prefsCleaner_version "$SCRIPT_FILE") == $(get_prefsCleaner_version "$tmpfile") ]] && return 0 - - mv "$tmpfile" "$SCRIPT_FILE" - chmod u+x "$SCRIPT_FILE" - "$SCRIPT_FILE" "$@" -d - exit 0 -} - -fClean() { - # the magic happens here - prefs="@@" - prefexp="user_pref[ ]*\([ ]*[\"']([^\"']+)[\"'][ ]*," - while read -r line; do - if [[ "$line" =~ $prefexp && $prefs != *"@@${BASH_REMATCH[1]}@@"* ]]; then - prefs="${prefs}${BASH_REMATCH[1]}@@" - fi - done <<< "$(grep -E "$prefexp" user.js)" - - while IFS='' read -r line || [[ -n "$line" ]]; do - if [[ "$line" =~ ^$prefexp ]]; then - if [[ $prefs != *"@@${BASH_REMATCH[1]}@@"* ]]; then - echo "$line" - fi - else - echo "$line" - fi - done < "$1" > prefs.js -} - -fStart() { - if [ ! -e user.js ]; then - fQuit 1 "user.js not found in the current directory." - elif [ ! -e prefs.js ]; then - fQuit 1 "prefs.js not found in the current directory." - fi - - fFF_check - mkdir -p prefsjs_backups - bakfile="prefsjs_backups/prefs.js.backup.$(date +"%Y-%m-%d_%H%M")" - mv prefs.js "${bakfile}" || fQuit 1 "Operation aborted.\nReason: Could not create backup file $bakfile" - echo -e "\nprefs.js backed up: $bakfile" - echo "Cleaning prefs.js..." - fClean "$bakfile" - fQuit 0 "All done!" -} - - -while getopts "sd" opt; do - case $opt in - s) - QUICKSTART=true - ;; - d) - AUTOUPDATE=false - ;; - esac -done - -## change directory to the Firefox profile directory -cd "$(dirname "${SCRIPT_FILE}")" - -# Check if running as root and if any files have the owner as root/wheel. -if [ "${EUID:-"$(id -u)"}" -eq 0 ]; then - fQuit 1 "You shouldn't run this with elevated privileges (such as with doas/sudo)." -elif [ -n "$(find ./ -user 0)" ]; then - printf 'It looks like this script was previously run with elevated privileges, -you will need to change ownership of the following files to your user:\n' - find . -user 0 - fQuit 1 -fi - -[ "$AUTOUPDATE" = true ] && update_prefsCleaner "$@" - -echo -e "\n\n" -echo " ╔══════════════════════════╗" -echo " ║ prefs.js cleaner ║" -echo " ║ by claustromaniac ║" -echo " ║ v2.1 ║" -echo " ╚══════════════════════════╝" -echo -e "\nThis script should be run from your Firefox profile directory.\n" -echo "It will remove any entries from prefs.js that also exist in user.js." -echo "This will allow inactive preferences to be reset to their default values." -echo -e "\nThis Firefox profile shouldn't be in use during the process.\n" - -[ "$QUICKSTART" = true ] && fStart - -echo -e "\nIn order to proceed, select a command below by entering its corresponding number.\n" - -select option in Start Help Exit; do - case $option in - Start) - fStart - ;; - Help) - fUsage - echo -e "\nThis script creates a backup of your prefs.js file before doing anything." - echo -e "It should be safe, but you can follow these steps if something goes wrong:\n" - echo "1. Make sure Firefox is closed." - echo "2. Delete prefs.js in your profile folder." - echo "3. Delete Invalidprefs.js if you have one in the same folder." - echo "4. Rename or copy your latest backup to prefs.js." - echo "5. Run Firefox and see if you notice anything wrong with it." - echo "6. If you do notice something wrong, especially with your extensions, and/or with the UI, go to about:support, and restart Firefox with add-ons disabled. Then, restart it again normally, and see if the problems were solved." - echo -e "If you are able to identify the cause of your issues, please bring it up on the arkenfox user.js GitHub repository.\n" - ;; - Exit) - fQuit 0 - ;; - esac -done - -fQuit 0 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/updater.sh b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/updater.sh deleted file mode 100755 index 72c77fc..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/updater.sh +++ /dev/null @@ -1,407 +0,0 @@ -#!/usr/bin/env bash - -## arkenfox user.js updater for macOS and Linux - -## version: 4.0 -## Author: Pat Johnson (@overdodactyl) -## Additional contributors: @earthlng, @ema-pe, @claustromaniac, @infinitewarp - -## DON'T GO HIGHER THAN VERSION x.9 !! ( because of ASCII comparison in update_updater() ) - -# Check if running as root -if [ "${EUID:-"$(id -u)"}" -eq 0 ]; then - printf "You shouldn't run this with elevated privileges (such as with doas/sudo).\n" - exit 1 -fi - -readonly CURRDIR=$(pwd) - -SCRIPT_FILE=$(readlink -f "${BASH_SOURCE[0]}" 2>/dev/null || greadlink -f "${BASH_SOURCE[0]}" 2>/dev/null) -[ -z "$SCRIPT_FILE" ] && SCRIPT_FILE=${BASH_SOURCE[0]} -readonly SCRIPT_DIR=$(dirname "${SCRIPT_FILE}") - - -######################### -# Base variables # -######################### - -# Colors used for printing -RED='\033[0;31m' -BLUE='\033[0;34m' -BBLUE='\033[1;34m' -GREEN='\033[0;32m' -ORANGE='\033[0;33m' -CYAN='\033[0;36m' -NC='\033[0m' # No Color - -# Argument defaults -UPDATE='check' -CONFIRM='yes' -OVERRIDE='user-overrides.js' -BACKUP='multiple' -COMPARE=false -SKIPOVERRIDE=false -VIEW=false -PROFILE_PATH=false -ESR=false - -# Download method priority: curl -> wget -DOWNLOAD_METHOD='' -if command -v curl >/dev/null; then - DOWNLOAD_METHOD='curl --max-redirs 3 -so' -elif command -v wget >/dev/null; then - DOWNLOAD_METHOD='wget --max-redirect 3 --quiet -O' -else - echo -e "${RED}This script requires curl or wget.\nProcess aborted${NC}" - exit 1 -fi - - -show_banner() { - echo -e "${BBLUE} - ############################################################################ - #### #### - #### arkenfox user.js #### - #### Hardening the Privacy and Security Settings of Firefox #### - #### Maintained by @Thorin-Oakenpants and @earthlng #### - #### Updater for macOS and Linux by @overdodactyl #### - #### #### - ############################################################################" - echo -e "${NC}\n" - echo -e "Documentation for this script is available here: ${CYAN}https://github.com/arkenfox/user.js/wiki/5.1-Updater-[Options]#-maclinux${NC}\n" -} - -######################### -# Arguments # -######################### - -usage() { - echo - echo -e "${BLUE}Usage: $0 [-bcdehlnrsuv] [-p PROFILE] [-o OVERRIDE]${NC}" 1>&2 # Echo usage string to standard error - echo -e " -Optional Arguments: - -h Show this help message and exit. - -p PROFILE Path to your Firefox profile (if different than the dir of this script) - IMPORTANT: If the path contains spaces, wrap the entire argument in quotes. - -l Choose your Firefox profile from a list - -u Update updater.sh and execute silently. Do not seek confirmation. - -d Do not look for updates to updater.sh. - -s Silently update user.js. Do not seek confirmation. - -b Only keep one backup of each file. - -c Create a diff file comparing old and new user.js within userjs_diffs. - -o OVERRIDE Filename or path to overrides file (if different than user-overrides.js). - If used with -p, paths should be relative to PROFILE or absolute paths - If given a directory, all files inside will be appended recursively. - You can pass multiple files or directories by passing a comma separated list. - Note: If a directory is given, only files inside ending in the extension .js are appended - IMPORTANT: Do not add spaces between files/paths. Ex: -o file1.js,file2.js,dir1 - IMPORTANT: If any file/path contains spaces, wrap the entire argument in quotes. - Ex: -o \"override folder\" - -n Do not append any overrides, even if user-overrides.js exists. - -v Open the resulting user.js file. - -r Only download user.js to a temporary file and open it. - -e Activate ESR related preferences." - echo - exit 1 -} - -######################### -# File Handling # -######################### - -download_file() { # expects URL as argument ($1) - declare -r tf=$(mktemp) - - $DOWNLOAD_METHOD "${tf}" "$1" &>/dev/null && echo "$tf" || echo '' # return the temp-filename or empty string on error -} - -open_file() { # expects one argument: file_path - if [ "$(uname)" == 'Darwin' ]; then - open "$1" - elif [ "$(uname -s | cut -c -5)" == "Linux" ]; then - xdg-open "$1" - else - echo -e "${RED}Error: Sorry, opening files is not supported for your OS.${NC}" - fi -} - -readIniFile() { # expects one argument: absolute path of profiles.ini - declare -r inifile="$1" - - # tempIni will contain: [ProfileX], Name=, IsRelative= and Path= (and Default= if present) of the only (if) or the selected (else) profile - if [ "$(grep -c '^\[Profile' "${inifile}")" -eq "1" ]; then ### only 1 profile found - tempIni="$(grep '^\[Profile' -A 4 "${inifile}")" - else - echo -e "Profiles found:\n––––––––––––––––––––––––––––––" - ## cmd-substitution to strip trailing newlines and in quotes to keep internal ones: - echo "$(grep --color=never -E 'Default=[^1]|\[Profile[0-9]*\]|Name=|Path=|^$' "${inifile}")" - echo '––––––––––––––––––––––––––––––' - read -p 'Select the profile number ( 0 for Profile0, 1 for Profile1, etc ) : ' -r - echo -e "\n" - if [[ $REPLY =~ ^(0|[1-9][0-9]*)$ ]]; then - tempIni="$(grep "^\[Profile${REPLY}" -A 4 "${inifile}")" || { - echo -e "${RED}Profile${REPLY} does not exist!${NC}" && exit 1 - } - else - echo -e "${RED}Invalid selection!${NC}" && exit 1 - fi - fi - - # extracting 0 or 1 from the "IsRelative=" line - declare -r pathisrel=$(sed -n 's/^IsRelative=\([01]\)$/\1/p' <<< "${tempIni}") - - # extracting only the path itself, excluding "Path=" - PROFILE_PATH=$(sed -n 's/^Path=\(.*\)$/\1/p' <<< "${tempIni}") - # update global variable if path is relative - [[ ${pathisrel} == "1" ]] && PROFILE_PATH="$(dirname "${inifile}")/${PROFILE_PATH}" -} - -getProfilePath() { - declare -r f1=~/Library/Application\ Support/Firefox/profiles.ini - declare -r f2=~/.mozilla/firefox/profiles.ini - - if [ "$PROFILE_PATH" = false ]; then - PROFILE_PATH="$SCRIPT_DIR" - elif [ "$PROFILE_PATH" = 'list' ]; then - if [[ -f "$f1" ]]; then - readIniFile "$f1" # updates PROFILE_PATH or exits on error - elif [[ -f "$f2" ]]; then - readIniFile "$f2" - else - echo -e "${RED}Error: Sorry, -l is not supported for your OS${NC}" - exit 1 - fi - #else - # PROFILE_PATH already set by user with -p - fi -} - -######################### -# Update updater.sh # -######################### - -# Returns the version number of a updater.sh file -get_updater_version() { - echo "$(sed -n '5 s/.*[[:blank:]]\([[:digit:]]*\.[[:digit:]]*\)/\1/p' "$1")" -} - -# Update updater.sh -# Default: Check for update, if available, ask user if they want to execute it -# Args: -# -d: New version will not be looked for and update will not occur -# -u: Check for update, if available, execute without asking -update_updater() { - [ "$UPDATE" = 'no' ] && return 0 # User signified not to check for updates - - declare -r tmpfile="$(download_file 'https://raw.githubusercontent.com/arkenfox/user.js/master/updater.sh')" - [ -z "${tmpfile}" ] && echo -e "${RED}Error! Could not download updater.sh${NC}" && return 1 # check if download failed - - if [[ $(get_updater_version "$SCRIPT_FILE") < $(get_updater_version "${tmpfile}") ]]; then - if [ "$UPDATE" = 'check' ]; then - echo -e "There is a newer version of updater.sh available. ${RED}Update and execute Y/N?${NC}" - read -p "" -n 1 -r - echo -e "\n\n" - [[ $REPLY =~ ^[Yy]$ ]] || return 0 # Update available, but user chooses not to update - fi - else - return 0 # No update available - fi - mv "${tmpfile}" "$SCRIPT_FILE" - chmod u+x "$SCRIPT_FILE" - "$SCRIPT_FILE" "$@" -d - exit 0 -} - -######################### -# Update user.js # -######################### - -# Returns version number of a user.js file -get_userjs_version() { - [ -e "$1" ] && echo "$(sed -n '4p' "$1")" || echo "Not detected." -} - -add_override() { - input=$1 - if [ -f "$input" ]; then - echo "" >> user.js - cat "$input" >> user.js - echo -e "Status: ${GREEN}Override file appended:${NC} ${input}" - elif [ -d "$input" ]; then - SAVEIFS=$IFS - IFS=$'\n\b' # Set IFS - FILES="${input}"/*.js - for f in $FILES - do - add_override "$f" - done - IFS=$SAVEIFS # restore $IFS - else - echo -e "${ORANGE}Warning: Could not find override file:${NC} ${input}" - fi -} - -remove_comments() { # expects 2 arguments: from-file and to-file - sed -e '/^\/\*.*\*\/[[:space:]]*$/d' -e '/^\/\*/,/\*\//d' -e 's|^[[:space:]]*//.*$||' -e '/^[[:space:]]*$/d' -e 's|);[[:space:]]*//.*|);|' "$1" > "$2" -} - -# Applies latest version of user.js and any custom overrides -update_userjs() { - declare -r newfile="$(download_file 'https://raw.githubusercontent.com/arkenfox/user.js/master/user.js')" - [ -z "${newfile}" ] && echo -e "${RED}Error! Could not download user.js${NC}" && return 1 # check if download failed - - echo -e "Please observe the following information: - Firefox profile: ${ORANGE}$(pwd)${NC} - Available online: ${ORANGE}$(get_userjs_version "$newfile")${NC} - Currently using: ${ORANGE}$(get_userjs_version user.js)${NC}\n\n" - - if [ "$CONFIRM" = 'yes' ]; then - echo -e "This script will update to the latest user.js file and append any custom configurations from user-overrides.js. ${RED}Continue Y/N? ${NC}" - read -p "" -n 1 -r - echo -e "\n" - if ! [[ $REPLY =~ ^[Yy]$ ]]; then - echo -e "${RED}Process aborted${NC}" - rm "$newfile" - return 1 - fi - fi - - # Copy a version of user.js to diffs folder for later comparison - if [ "$COMPARE" = true ]; then - mkdir -p userjs_diffs - cp user.js userjs_diffs/past_user.js &>/dev/null - fi - - # backup user.js - mkdir -p userjs_backups - local bakname="userjs_backups/user.js.backup.$(date +"%Y-%m-%d_%H%M")" - [ "$BACKUP" = 'single' ] && bakname='userjs_backups/user.js.backup' - cp user.js "$bakname" &>/dev/null - - mv "${newfile}" user.js - echo -e "Status: ${GREEN}user.js has been backed up and replaced with the latest version!${NC}" - - if [ "$ESR" = true ]; then - sed -e 's/\/\* \(ESR[0-9]\{2,\}\.x still uses all.*\)/\/\/ \1/' user.js > user.js.tmp && mv user.js.tmp user.js - echo -e "Status: ${GREEN}ESR related preferences have been activated!${NC}" - fi - - # apply overrides - if [ "$SKIPOVERRIDE" = false ]; then - while IFS=',' read -ra FILES; do - for FILE in "${FILES[@]}"; do - add_override "$FILE" - done - done <<< "$OVERRIDE" - fi - - # create diff - if [ "$COMPARE" = true ]; then - pastuserjs='userjs_diffs/past_user.js' - past_nocomments='userjs_diffs/past_userjs.txt' - current_nocomments='userjs_diffs/current_userjs.txt' - - remove_comments "$pastuserjs" "$past_nocomments" - remove_comments user.js "$current_nocomments" - - diffname="userjs_diffs/diff_$(date +"%Y-%m-%d_%H%M").txt" - diff=$(diff -w -B -U 0 "$past_nocomments" "$current_nocomments") - if [ -n "$diff" ]; then - echo "$diff" > "$diffname" - echo -e "Status: ${GREEN}A diff file was created:${NC} ${PWD}/${diffname}" - else - echo -e "Warning: ${ORANGE}Your new user.js file appears to be identical. No diff file was created.${NC}" - [ "$BACKUP" = 'multiple' ] && rm "$bakname" &>/dev/null - fi - rm "$past_nocomments" "$current_nocomments" "$pastuserjs" &>/dev/null - fi - - [ "$VIEW" = true ] && open_file "${PWD}/user.js" -} - -######################### -# Execute # -######################### - -if [ $# != 0 ]; then - # Display usage if first argument is -help or --help - if [ "$1" = '--help' ] || [ "$1" = '-help' ]; then - usage - else - while getopts ":hp:ludsno:bcvre" opt; do - case $opt in - h) - usage - ;; - p) - PROFILE_PATH=${OPTARG} - ;; - l) - PROFILE_PATH='list' - ;; - u) - UPDATE='yes' - ;; - d) - UPDATE='no' - ;; - s) - CONFIRM='no' - ;; - n) - SKIPOVERRIDE=true - ;; - o) - OVERRIDE=${OPTARG} - ;; - b) - BACKUP='single' - ;; - c) - COMPARE=true - ;; - v) - VIEW=true - ;; - e) - ESR=true - ;; - r) - tfile="$(download_file 'https://raw.githubusercontent.com/arkenfox/user.js/master/user.js')" - [ -z "${tfile}" ] && echo -e "${RED}Error! Could not download user.js${NC}" && exit 1 # check if download failed - mv "$tfile" "${tfile}.js" - echo -e "${ORANGE}Warning: user.js was saved to temporary file ${tfile}.js${NC}" - open_file "${tfile}.js" - exit 0 - ;; - \?) - echo -e "${RED}\n Error! Invalid option: -$OPTARG${NC}" >&2 - usage - ;; - :) - echo -e "${RED}Error! Option -$OPTARG requires an argument.${NC}" >&2 - exit 2 - ;; - esac - done - fi -fi - -show_banner -update_updater "$@" - -getProfilePath # updates PROFILE_PATH or exits on error -cd "$PROFILE_PATH" || exit 1 - -# Check if any files have the owner as root/wheel. -if [ -n "$(find ./ -user 0)" ]; then - printf 'It looks like this script was previously run with elevated privileges, -you will need to change ownership of the following files to your user:\n' - find . -user 0 - cd "$CURRDIR" - exit 1 -fi - -update_userjs - -cd "$CURRDIR" diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/user-overrides.js b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/user-overrides.js deleted file mode 100644 index 98cc07d..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/user-overrides.js +++ /dev/null @@ -1,104 +0,0 @@ -//I read the wiki -//https://github.com/arkenfox/user.js/wiki/3.2-Overrides-%5BCommon%5D - -//DNS over HTTPS -//Protects web requests from an ISP -//Please pick a provider you trust. -//Disable if you use PiHole, but tools like pfBlocker work fine. -// Cloudflare (default in US & Canada). -//Quad 9: https://dns.quad9.net/dns-query -user_pref("network.trr.uri", "https://mozilla.cloudflare-dns.com/dns-query"); -user_pref("network.trr.mode", 2); - -//Disable Safe Browsing, this phones home to Google. -user_pref("browser.safebrowsing.malware.enabled", false); -user_pref("browser.safebrowsing.phishing.enabled", false); -user_pref("browser.safebrowsing.downloads.enabled", false); - -// Leave IPv6 enabled -user_pref("network.dns.disableIPv6", false); - -//Reenable search engines -user_pref("keyword.enabled", true); -//Enable Search Engine suggestion -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -// Disk caching, which might improve performance if enabled. -user_pref("browser.cache.disk.enable", false); -//Enable favicons, the icons in bookmarks -user_pref("browser.shell.shortcutFavicons", true); -//Enable Mozilla Container Tabs -//Redundant with Total Cookie Protection, but useful if you have multiple accounts -//with the same provider (e.g. a work Google account and a personal Google account) -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); - -// Strict third party requests, may cause images/video to break. -user_pref("network.http.referer.XOriginPolicy", 2); - -//WebRTC settings, things like video calls - // user_pref("media.peerconnection.enabled", false); -// Disable Media Plugins - // user_pref("media.gmp-provider.enabled", false); -// Disable DRM, FCKDRM - // user_pref("media.gmp-widevinecdm.enabled", false); -user_pref("media.eme.enabled", false); -//Autoplaying settings -//0=Allow all, 1=Block non-muted media (default), 5=Block all - // user_pref("media.autoplay.default", 5); -//If some websites REALLY need autoplaying... -//0=sticky (default), 1=transient, 2=user -user_pref("media.autoplay.blocking_policy", 2); - -//Use Disconnect's blocklist to block ads -user_pref("browser.contentblocking.category", "strict"); - -//Delete cookies on close, but see below to make exceptions -/* 2801: delete cookies and site data on exit - //* 0=keep until they expire (default), 2=keep until you close Firefox - * [NOTE] A "cookie" block permission also controls localStorage/sessionStorage, indexedDB, - * sharedWorkers and serviceWorkers. serviceWorkers require an "Allow" permission - * [SETTING] Privacy & Security>Cookies and Site Data>Delete cookies and site data when Firefox is closed - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("network.cookie.lifetimePolicy", 2); -//Disabling disk cache is better, but try this if you like performance - // user_pref("privacy.clearsitedata.cache.enabled", true); - -//Clear data on shutdown -user_pref("privacy.sanitize.sanitizeOnShutdown", true); -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.clearOnShutdown.cookies", false); - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -// Manual wiping, such as the forget-me-not button -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.passwords", false); // [DEFAULT: false] not listed - // user_pref("privacy.cpd.siteSettings", false); // [DEFAULT: false] -// Delete everything ever. -user_pref("privacy.sanitize.timeSpan", 0); -//Delete history, although might be security theater. -//Helps against forensic tools. -user_pref("places.history.enabled", false); - -//WebGL is a security risk, but sometimes breaks things like 23andMe -//or Google Maps (not always). -user_pref("webgl.disabled", true); - -//Firefox stores passwords in plain text and obsolete if you use a password manager. -//Mozilla also told people to stop using their password manager. -user_pref("signon.rememberSignons", false); -//Disable Pocket, it's proprietary trash -user_pref("extensions.pocket.enabled", false); -// Disable Mozilla account -user_pref("identity.fxaccounts.enabled", false); diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/user.js b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/user.js deleted file mode 100644 index c525c2c..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/user.js +++ /dev/null @@ -1,1372 +0,0 @@ -/****** -* name: arkenfox user.js -* date: 7 June 2024 -* version: 126 -* urls: https://github.com/arkenfox/user.js [repo] -* : https://arkenfox.github.io/gui/ [interactive] -* license: MIT: https://github.com/arkenfox/user.js/blob/master/LICENSE.txt - -* README: - - 1. Consider using Tor Browser if it meets your needs or fits your threat model - * https://2019.www.torproject.org/about/torusers.html - 2. Read the entire wiki - * https://github.com/arkenfox/user.js/wiki - 3. If you skipped step 2, return to step 2 - 4. Make changes in a user-overrides.js - * There are often trade-offs and conflicts between security vs privacy vs anti-tracking - and these need to be balanced against functionality & convenience & breakage - * Some site breakage and unintended consequences will happen. Everyone's experience will differ - e.g. some user data is erased on exit (section 2800), change this to suit your needs - * While not 100% definitive, search for "[SETUP" tags - 5. Some tag info - [SETUP-SECURITY] it's one item, read it - [SETUP-WEB] can cause some websites to break - [SETUP-CHROME] changes how Firefox itself behaves (i.e. not directly website related) - 6. Override Recipes: https://github.com/arkenfox/user.js/issues/1080 - -* RELEASES: https://github.com/arkenfox/user.js/releases - - * Use the arkenfox release that matches your Firefox version - - DON'T wait for arkenfox to update Firefox, nothing major changes these days - * Each release - - run prefsCleaner to reset prefs made inactive, including deprecated (9999) - * ESR - - It is recommended to not use the updater, or you will get a later version which may cause issues. - So you should manually append your overrides (and keep a copy), and manually update when you - change ESR releases (arkenfox is already past that release) - - If you decide to keep updating, then the onus is on you - also see section 9999 - -* INDEX: - - 0100: STARTUP - 0200: GEOLOCATION - 0300: QUIETER FOX - 0400: SAFE BROWSING - 0600: BLOCK IMPLICIT OUTBOUND - 0700: DNS / DoH / PROXY / SOCKS - 0800: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS - 0900: PASSWORDS - 1000: DISK AVOIDANCE - 1200: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - 1600: REFERERS - 1700: CONTAINERS - 2000: PLUGINS / MEDIA / WEBRTC - 2400: DOM (DOCUMENT OBJECT MODEL) - 2600: MISCELLANEOUS - 2700: ETP (ENHANCED TRACKING PROTECTION) - 2800: SHUTDOWN & SANITIZING - 4000: FPP (fingerprintingProtection) - 4500: RFP (resistFingerprinting) - 5000: OPTIONAL OPSEC - 5500: OPTIONAL HARDENING - 6000: DON'T TOUCH - 7000: DON'T BOTHER - 8000: DON'T BOTHER: FINGERPRINTING - 9000: NON-PROJECT RELATED - 9999: DEPRECATED / RENAMED - -******/ - -/* START: internal custom pref to test for syntax errors - * [NOTE] Not all syntax errors cause parsing to abort i.e. reaching the last debug pref - * no longer necessarily means that all prefs have been applied. Check the console right - * after startup for any warnings/error messages related to non-applied prefs - * [1] https://blog.mozilla.org/nnethercote/2018/03/09/a-new-preferences-parser-for-firefox/ ***/ -user_pref("_user.js.parrot", "START: Oh yes, the Norwegian Blue... what's wrong with it?"); - -/* 0000: disable about:config warning ***/ -user_pref("browser.aboutConfig.showWarning", false); - -/*** [SECTION 0100]: STARTUP ***/ -user_pref("_user.js.parrot", "0100 syntax error: the parrot's dead!"); -/* 0102: set startup page [SETUP-CHROME] - * 0=blank, 1=home, 2=last visited page, 3=resume previous session - * [NOTE] Session Restore is cleared with history (2811), and not used in Private Browsing mode - * [SETTING] General>Startup>Restore previous session ***/ -user_pref("browser.startup.page", 0); -/* 0103: set HOME+NEWWINDOW page - * about:home=Firefox Home (default, see 0105), custom URL, about:blank - * [SETTING] Home>New Windows and Tabs>Homepage and new windows ***/ -user_pref("browser.startup.homepage", "about:blank"); -/* 0104: set NEWTAB page - * true=Firefox Home (default, see 0105), false=blank page - * [SETTING] Home>New Windows and Tabs>New tabs ***/ -user_pref("browser.newtabpage.enabled", false); -/* 0105: disable sponsored content on Firefox Home (Activity Stream) - * [SETTING] Home>Firefox Home Content ***/ -user_pref("browser.newtabpage.activity-stream.showSponsored", false); // [FF58+] -user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // [FF83+] Shortcuts>Sponsored shortcuts -/* 0106: clear default topsites - * [NOTE] This does not block you from adding your own ***/ -user_pref("browser.newtabpage.activity-stream.default.sites", ""); - -/*** [SECTION 0200]: GEOLOCATION ***/ -user_pref("_user.js.parrot", "0200 syntax error: the parrot's definitely deceased!"); -/* 0201: use Mozilla geolocation service instead of Google if permission is granted [FF74+] - * Optionally enable logging to the console (defaults to false) ***/ -user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%"); - // user_pref("geo.provider.network.logging.enabled", true); // [HIDDEN PREF] -/* 0202: disable using the OS's geolocation service ***/ -user_pref("geo.provider.ms-windows-location", false); // [WINDOWS] -user_pref("geo.provider.use_corelocation", false); // [MAC] -user_pref("geo.provider.use_gpsd", false); // [LINUX] [HIDDEN PREF] -user_pref("geo.provider.use_geoclue", false); // [FF102+] [LINUX] - -/*** [SECTION 0300]: QUIETER FOX ***/ -user_pref("_user.js.parrot", "0300 syntax error: the parrot's not pinin' for the fjords!"); -/** RECOMMENDATIONS ***/ -/* 0320: disable recommendation pane in about:addons (uses Google Analytics) ***/ -user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF] -/* 0321: disable recommendations in about:addons' Extensions and Themes panes [FF68+] ***/ -user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); -/* 0322: disable personalized Extension Recommendations in about:addons and AMO [FF65+] - * [NOTE] This pref has no effect when Health Reports (0331) are disabled - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to make personalized extension recommendations - * [1] https://support.mozilla.org/kb/personalized-extension-recommendations ***/ -user_pref("browser.discovery.enabled", false); -/* 0323: disable shopping experience [FF116+] - * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0 ***/ -user_pref("browser.shopping.experience2023.enabled", false); // [DEFAULT: false] - -/** TELEMETRY ***/ -/* 0330: disable new data submission [FF41+] - * If disabled, no policy is shown or upload takes place, ever - * [1] https://bugzilla.mozilla.org/1195552 ***/ -user_pref("datareporting.policy.dataSubmissionEnabled", false); -/* 0331: disable Health Reports - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send technical... data ***/ -user_pref("datareporting.healthreport.uploadEnabled", false); -/* 0332: disable telemetry - * The "unified" pref affects the behavior of the "enabled" pref - * - If "unified" is false then "enabled" controls the telemetry module - * - If "unified" is true then "enabled" only controls whether to record extended data - * [NOTE] "toolkit.telemetry.enabled" is now LOCKED to reflect prerelease (true) or release builds (false) [2] - * [1] https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html - * [2] https://medium.com/georg-fritzsche/data-preference-changes-in-firefox-58-2d5df9c428b5 ***/ -user_pref("toolkit.telemetry.unified", false); -user_pref("toolkit.telemetry.enabled", false); // see [NOTE] -user_pref("toolkit.telemetry.server", "data:,"); -user_pref("toolkit.telemetry.archive.enabled", false); -user_pref("toolkit.telemetry.newProfilePing.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.shutdownPingSender.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.updatePing.enabled", false); // [FF56+] -user_pref("toolkit.telemetry.bhrPing.enabled", false); // [FF57+] Background Hang Reporter -user_pref("toolkit.telemetry.firstShutdownPing.enabled", false); // [FF57+] -/* 0333: disable Telemetry Coverage - * [1] https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/ ***/ -user_pref("toolkit.telemetry.coverage.opt-out", true); // [HIDDEN PREF] -user_pref("toolkit.coverage.opt-out", true); // [FF64+] [HIDDEN PREF] -user_pref("toolkit.coverage.endpoint.base", ""); -/* 0335: disable Firefox Home (Activity Stream) telemetry ***/ -user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); -user_pref("browser.newtabpage.activity-stream.telemetry", false); - -/** STUDIES ***/ -/* 0340: disable Studies - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to install and run studies ***/ -user_pref("app.shield.optoutstudies.enabled", false); -/* 0341: disable Normandy/Shield [FF60+] - * Shield is a telemetry system that can push and test "recipes" - * [1] https://mozilla.github.io/normandy/ ***/ -user_pref("app.normandy.enabled", false); -user_pref("app.normandy.api_url", ""); - -/** CRASH REPORTS ***/ -/* 0350: disable Crash Reports ***/ -user_pref("breakpad.reportURL", ""); -user_pref("browser.tabs.crashReporting.sendReport", false); // [FF44+] - // user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // [FF51+] [DEFAULT: false] -/* 0351: enforce no submission of backlogged Crash Reports [FF58+] - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send backlogged crash reports ***/ -user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); // [DEFAULT: false] - -/** OTHER ***/ -/* 0360: disable Captive Portal detection - * [1] https://www.eff.org/deeplinks/2017/08/how-captive-portals-interfere-wireless-security-and-privacy ***/ -user_pref("captivedetect.canonicalURL", ""); -user_pref("network.captive-portal-service.enabled", false); // [FF52+] -/* 0361: disable Network Connectivity checks [FF65+] - * [1] https://bugzilla.mozilla.org/1460537 ***/ -user_pref("network.connectivity-service.enabled", false); - -/*** [SECTION 0400]: SAFE BROWSING (SB) - SB has taken many steps to preserve privacy. If required, a full url is never sent - to Google, only a part-hash of the prefix, hidden with noise of other real part-hashes. - Firefox takes measures such as stripping out identifying parameters and since SBv4 (FF57+) - doesn't even use cookies. (#Turn on browser.safebrowsing.debug to monitor this activity) - - [1] https://feeding.cloud.geek.nz/posts/how-safe-browsing-works-in-firefox/ - [2] https://wiki.mozilla.org/Security/Safe_Browsing - [3] https://support.mozilla.org/kb/how-does-phishing-and-malware-protection-work - [4] https://educatedguesswork.org/posts/safe-browsing-privacy/ -***/ -user_pref("_user.js.parrot", "0400 syntax error: the parrot's passed on!"); -/* 0401: disable SB (Safe Browsing) - * [WARNING] Do this at your own risk! These are the master switches - * [SETTING] Privacy & Security>Security>... Block dangerous and deceptive content ***/ - // user_pref("browser.safebrowsing.malware.enabled", false); - // user_pref("browser.safebrowsing.phishing.enabled", false); -/* 0402: disable SB checks for downloads (both local lookups + remote) - * This is the master switch for the safebrowsing.downloads* prefs (0403, 0404) - * [SETTING] Privacy & Security>Security>... "Block dangerous downloads" ***/ - // user_pref("browser.safebrowsing.downloads.enabled", false); -/* 0403: disable SB checks for downloads (remote) - * To verify the safety of certain executable files, Firefox may submit some information about the - * file, including the name, origin, size and a cryptographic hash of the contents, to the Google - * Safe Browsing service which helps Firefox determine whether or not the file should be blocked - * [SETUP-SECURITY] If you do not understand this, or you want this protection, then override this ***/ -user_pref("browser.safebrowsing.downloads.remote.enabled", false); - // user_pref("browser.safebrowsing.downloads.remote.url", ""); // Defense-in-depth -/* 0404: disable SB checks for unwanted software - * [SETTING] Privacy & Security>Security>... "Warn you about unwanted and uncommon software" ***/ - // user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); - // user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); -/* 0405: disable "ignore this warning" on SB warnings [FF45+] - * If clicked, it bypasses the block for that session. This is a means for admins to enforce SB - * [TEST] see https://github.com/arkenfox/user.js/wiki/Appendix-A-Test-Sites#-mozilla - * [1] https://bugzilla.mozilla.org/1226490 ***/ - // user_pref("browser.safebrowsing.allowOverride", false); - -/*** [SECTION 0600]: BLOCK IMPLICIT OUTBOUND [not explicitly asked for - e.g. clicked on] ***/ -user_pref("_user.js.parrot", "0600 syntax error: the parrot's no more!"); -/* 0601: disable link prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Link_prefetching_FAQ ***/ -user_pref("network.prefetch-next", false); -/* 0602: disable DNS prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control ***/ -user_pref("network.dns.disablePrefetch", true); - // user_pref("network.dns.disablePrefetchFromHTTPS", true); // [DEFAULT: true] -/* 0603: disable predictor / prefetching ***/ -user_pref("network.predictor.enabled", false); -user_pref("network.predictor.enable-prefetch", false); // [FF48+] [DEFAULT: false] -/* 0604: disable link-mouseover opening connection to linked server - * [1] https://news.slashdot.org/story/15/08/14/2321202/how-to-quash-firefoxs-silent-requests ***/ -user_pref("network.http.speculative-parallel-limit", 0); -/* 0605: disable mousedown speculative connections on bookmarks and history [FF98+] ***/ -user_pref("browser.places.speculativeConnect.enabled", false); -/* 0610: enforce no "Hyperlink Auditing" (click tracking) - * [1] https://www.bleepingcomputer.com/news/software/major-browsers-to-prevent-disabling-of-click-tracking-privacy-risk/ ***/ - // user_pref("browser.send_pings", false); // [DEFAULT: false] - -/*** [SECTION 0700]: DNS / DoH / PROXY / SOCKS ***/ -user_pref("_user.js.parrot", "0700 syntax error: the parrot's given up the ghost!"); -/* 0702: set the proxy server to do any DNS lookups when using SOCKS - * e.g. in Tor, this stops your local DNS server from knowing your Tor destination - * as a remote Tor node will handle the DNS request - * [1] https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/WebBrowsers ***/ -user_pref("network.proxy.socks_remote_dns", true); -/* 0703: disable using UNC (Uniform Naming Convention) paths [FF61+] - * [SETUP-CHROME] Can break extensions for profiles on network shares - * [1] https://bugzilla.mozilla.org/1413868 ***/ -user_pref("network.file.disable_unc_paths", true); // [HIDDEN PREF] -/* 0704: disable GIO as a potential proxy bypass vector - * Gvfs/GIO has a set of supported protocols like obex, network, archive, computer, - * dav, cdda, gphoto2, trash, etc. From FF87-117, by default only sftp was accepted - * [1] https://bugzilla.mozilla.org/1433507 - * [2] https://en.wikipedia.org/wiki/GVfs - * [3] https://en.wikipedia.org/wiki/GIO_(software) ***/ -user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF] [DEFAULT: "" FF118+] -/* 0705: disable proxy direct failover for system requests [FF91+] - * [WARNING] Default true is a security feature against malicious extensions [1] - * [SETUP-CHROME] If you use a proxy and you trust your extensions - * [1] https://blog.mozilla.org/security/2021/10/25/securing-the-proxy-api-for-firefox-add-ons/ ***/ - // user_pref("network.proxy.failover_direct", false); -/* 0706: disable proxy bypass for system request failures [FF95+] - * RemoteSettings, UpdateService, Telemetry [1] - * [WARNING] If false, this will break the fallback for some security features - * [SETUP-CHROME] If you use a proxy and you understand the security impact - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1732792,1733994,1733481 ***/ - // user_pref("network.proxy.allow_bypass", false); -/* 0710: enable DNS-over-HTTPS (DoH) [FF60+] - * 0=default, 2=increased (TRR (Trusted Recursive Resolver) first), 3=max (TRR only), 5=off (no rollout) - * see "doh-rollout.home-region": USA 2019, Canada 2021, Russia/Ukraine 2022 [3] - * [SETTING] Privacy & Security>DNS over HTTPS - * [1] https://hacks.mozilla.org/2018/05/a-cartoon-intro-to-dns-over-https/ - * [2] https://wiki.mozilla.org/Security/DOH-resolver-policy - * [3] https://support.mozilla.org/en-US/kb/firefox-dns-over-https - * [4] https://www.eff.org/deeplinks/2020/12/dns-doh-and-odoh-oh-my-year-review-2020 ***/ - // user_pref("network.trr.mode", 3); -/* 0712: set DoH provider - * The custom uri is the value shown when you "Choose provider>Custom>" - * [NOTE] If you USE custom then "network.trr.uri" should be set the same - * [SETTING] Privacy & Security>DNS over HTTPS>Increased/Max>Choose provider ***/ - // user_pref("network.trr.uri", "https://example.dns"); - // user_pref("network.trr.custom_uri", "https://example.dns"); - -/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/ -user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!"); -/* 0801: disable location bar making speculative connections [FF56+] - * [1] https://bugzilla.mozilla.org/1348275 ***/ -user_pref("browser.urlbar.speculativeConnect.enabled", false); -/* 0802: disable location bar contextual suggestions - * [NOTE] The UI is controlled by the .enabled pref - * [SETTING] Search>Address Bar>Suggestions from... - * [1] https://blog.mozilla.org/data/2021/09/15/data-and-firefox-suggest/ ***/ - // user_pref("browser.urlbar.quicksuggest.enabled", false); // [FF92+] [DEFAULT: false] - // user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false); // [FF95+] [DEFAULT: false] - // user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false); // [FF92+] [DEFAULT: false] -/* 0803: disable live search suggestions - * [NOTE] Both must be true for live search to work in the location bar - * [SETUP-CHROME] Override these if you trust and use a privacy respecting search engine - * [SETTING] Search>Provide search suggestions | Show search suggestions in address bar results ***/ -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -/* 0805: disable urlbar trending search suggestions [FF118+] - * [SETTING] Search>Search Suggestions>Show trending search suggestions (FF119) ***/ -user_pref("browser.urlbar.trending.featureGate", false); -/* 0806: disable urlbar suggestions ***/ -user_pref("browser.urlbar.addons.featureGate", false); // [FF115+] -user_pref("browser.urlbar.mdn.featureGate", false); // [FF117+] [HIDDEN PREF] -user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false] -user_pref("browser.urlbar.weather.featureGate", false); // [FF108+] [DEFAULT: false] -user_pref("browser.urlbar.yelp.featureGate", false); // [FF124+] [DEFAULT: false] -/* 0807: disable urlbar clipboard suggestions [FF118+] ***/ - // user_pref("browser.urlbar.clipboard.featureGate", false); -/* 0810: disable search and form history - * [SETUP-WEB] Be aware that autocomplete form data can be read by third parties [1][2] - * [NOTE] We also clear formdata on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember search and form history - * [1] https://blog.mindedsecurity.com/2011/10/autocompleteagain.html - * [2] https://bugzilla.mozilla.org/381681 ***/ -user_pref("browser.formfill.enable", false); -/* 0815: disable tab-to-search [FF85+] - * Alternatively, you can exclude on a per-engine basis by unchecking them in Options>Search - * [SETTING] Search>Address Bar>When using the address bar, suggest>Search engines ***/ - // user_pref("browser.urlbar.suggest.engines", false); -/* 0820: disable coloring of visited links - * [SETUP-HARDEN] Bulk rapid history sniffing was mitigated in 2010 [1][2]. Slower and more expensive - * redraw timing attacks were largely mitigated in FF77+ [3]. Using RFP (4501) further hampers timing - * attacks. Don't forget clearing history on exit (2811). However, social engineering [2#limits][4][5] - * and advanced targeted timing attacks could still produce usable results - * [1] https://developer.mozilla.org/docs/Web/CSS/Privacy_and_the_:visited_selector - * [2] https://dbaron.org/mozilla/visited-privacy - * [3] https://bugzilla.mozilla.org/1632765 - * [4] https://earthlng.github.io/testpages/visited_links.html (see github wiki APPENDIX A on how to use) - * [5] https://lcamtuf.blogspot.com/2016/08/css-mix-blend-mode-is-bad-for-keeping.html ***/ - // user_pref("layout.css.visited_links_enabled", false); -/* 0830: enable separate default search engine in Private Windows and its UI setting - * [SETTING] Search>Default Search Engine>Choose a different default search engine for Private Windows only ***/ -user_pref("browser.search.separatePrivateDefault", true); // [FF70+] -user_pref("browser.search.separatePrivateDefault.ui.enabled", true); // [FF71+] - -/*** [SECTION 0900]: PASSWORDS - [1] https://support.mozilla.org/kb/use-primary-password-protect-stored-logins-and-pas -***/ -user_pref("_user.js.parrot", "0900 syntax error: the parrot's expired!"); -/* 0903: disable auto-filling username & password form fields - * can leak in cross-site forms *and* be spoofed - * [NOTE] Username & password is still available when you enter the field - * [SETTING] Privacy & Security>Logins and Passwords>Autofill logins and passwords - * [1] https://freedom-to-tinker.com/2017/12/27/no-boundaries-for-user-identities-web-trackers-exploit-browser-login-managers/ - * [2] https://homes.esat.kuleuven.be/~asenol/leaky-forms/ ***/ -user_pref("signon.autofillForms", false); -/* 0904: disable formless login capture for Password Manager [FF51+] ***/ -user_pref("signon.formlessCapture.enabled", false); -/* 0905: limit (or disable) HTTP authentication credentials dialogs triggered by sub-resources [FF41+] - * hardens against potential credentials phishing - * 0 = don't allow sub-resources to open HTTP authentication credentials dialogs - * 1 = don't allow cross-origin sub-resources to open HTTP authentication credentials dialogs - * 2 = allow sub-resources to open HTTP authentication credentials dialogs (default) ***/ -user_pref("network.auth.subresource-http-auth-allow", 1); -/* 0906: enforce no automatic authentication on Microsoft sites [FF91+] [WINDOWS 10+] - * [SETTING] Privacy & Security>Logins and Passwords>Allow Windows single sign-on for... - * [1] https://support.mozilla.org/kb/windows-sso ***/ - // user_pref("network.http.windows-sso.enabled", false); // [DEFAULT: false] - -/*** [SECTION 1000]: DISK AVOIDANCE ***/ -user_pref("_user.js.parrot", "1000 syntax error: the parrot's gone to meet 'is maker!"); -/* 1001: disable disk cache - * [SETUP-CHROME] If you think disk cache helps perf, then feel free to override this - * [NOTE] We also clear cache on exit (2811) ***/ -user_pref("browser.cache.disk.enable", false); -/* 1002: disable media cache from writing to disk in Private Browsing - * [NOTE] MSE (Media Source Extensions) are already stored in-memory in PB ***/ -user_pref("browser.privatebrowsing.forceMediaMemoryCache", true); // [FF75+] -user_pref("media.memory_cache_max_size", 65536); -/* 1003: disable storing extra session data [SETUP-CHROME] - * define on which sites to save extra session data such as form content, cookies and POST data - * 0=everywhere, 1=unencrypted sites, 2=nowhere ***/ -user_pref("browser.sessionstore.privacy_level", 2); -/* 1005: disable automatic Firefox start and session restore after reboot [FF62+] [WINDOWS] - * [1] https://bugzilla.mozilla.org/603903 ***/ -user_pref("toolkit.winRegisterApplicationRestart", false); -/* 1006: disable favicons in shortcuts [WINDOWS] - * URL shortcuts use a cached randomly named .ico file which is stored in your - * profile/shortcutCache directory. The .ico remains after the shortcut is deleted - * If set to false then the shortcuts use a generic Firefox icon ***/ -user_pref("browser.shell.shortcutFavicons", false); - -/*** [SECTION 1200]: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - Your cipher and other settings can be used in server side fingerprinting - [TEST] https://www.ssllabs.com/ssltest/viewMyClient.html - [TEST] https://browserleaks.com/ssl - [TEST] https://ja3er.com/ - [1] https://www.securityartwork.es/2017/02/02/tls-client-fingerprinting-with-bro/ -***/ -user_pref("_user.js.parrot", "1200 syntax error: the parrot's a stiff!"); -/** SSL (Secure Sockets Layer) / TLS (Transport Layer Security) ***/ -/* 1201: require safe negotiation - * Blocks connections to servers that don't support RFC 5746 [2] as they're potentially vulnerable to a - * MiTM attack [3]. A server without RFC 5746 can be safe from the attack if it disables renegotiations - * but the problem is that the browser can't know that. Setting this pref to true is the only way for the - * browser to ensure there will be no unsafe renegotiations on the channel between the browser and the server - * [SETUP-WEB] SSL_ERROR_UNSAFE_NEGOTIATION: is it worth overriding this for that one site? - * [STATS] SSL Labs (May 2024) reports over 99.7% of top sites have secure renegotiation [4] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://datatracker.ietf.org/doc/html/rfc5746 - * [3] https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555 - * [4] https://www.ssllabs.com/ssl-pulse/ ***/ -user_pref("security.ssl.require_safe_negotiation", true); -/* 1206: disable TLS1.3 0-RTT (round-trip time) [FF51+] - * This data is not forward secret, as it is encrypted solely under keys derived using - * the offered PSK. There are no guarantees of non-replay between connections - * [1] https://github.com/tlswg/tls13-spec/issues/1001 - * [2] https://www.rfc-editor.org/rfc/rfc9001.html#name-replay-attacks-with-0-rtt - * [3] https://blog.cloudflare.com/tls-1-3-overview-and-q-and-a/ ***/ -user_pref("security.tls.enable_0rtt_data", false); - -/** OCSP (Online Certificate Status Protocol) - [1] https://scotthelme.co.uk/revocation-is-broken/ - [2] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ -***/ -/* 1211: enforce OCSP fetching to confirm current validity of certificates - * 0=disabled, 1=enabled (default), 2=enabled for EV certificates only - * OCSP (non-stapled) leaks information about the sites you visit to the CA (cert authority) - * It's a trade-off between security (checking) and privacy (leaking info to the CA) - * [NOTE] This pref only controls OCSP fetching and does not affect OCSP stapling - * [SETTING] Privacy & Security>Security>Certificates>Query OCSP responder servers... - * [1] https://en.wikipedia.org/wiki/Ocsp ***/ -user_pref("security.OCSP.enabled", 1); // [DEFAULT: 1] -/* 1212: set OCSP fetch failures (non-stapled, see 1211) to hard-fail - * [SETUP-WEB] SEC_ERROR_OCSP_SERVER_ERROR - * When a CA cannot be reached to validate a cert, Firefox just continues the connection (=soft-fail) - * Setting this pref to true tells Firefox to instead terminate the connection (=hard-fail) - * It is pointless to soft-fail when an OCSP fetch fails: you cannot confirm a cert is still valid (it - * could have been revoked) and/or you could be under attack (e.g. malicious blocking of OCSP servers) - * [1] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ - * [2] https://www.imperialviolet.org/2014/04/19/revchecking.html ***/ -user_pref("security.OCSP.require", true); - -/** CERTS / HPKP (HTTP Public Key Pinning) ***/ -/* 1223: enable strict PKP (Public Key Pinning) - * 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict - * [SETUP-WEB] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE ***/ -user_pref("security.cert_pinning.enforcement_level", 2); -/* 1224: enable CRLite [FF73+] - * 0 = disabled - * 1 = consult CRLite but only collect telemetry - * 2 = consult CRLite and enforce both "Revoked" and "Not Revoked" results - * 3 = consult CRLite and enforce "Not Revoked" results, but defer to OCSP for "Revoked" (default) - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1429800,1670985,1753071 - * [2] https://blog.mozilla.org/security/tag/crlite/ ***/ -user_pref("security.remote_settings.crlite_filters.enabled", true); -user_pref("security.pki.crlite_mode", 2); - -/** MIXED CONTENT ***/ -/* 1241: disable insecure passive content (such as images) on https pages ***/ - // user_pref("security.mixed_content.block_display_content", true); // Defense-in-depth (see 1244) -/* 1244: enable HTTPS-Only mode in all windows - * When the top-level is HTTPS, insecure subresources are also upgraded (silent fail) - * [SETTING] to add site exceptions: Padlock>HTTPS-Only mode>On (after "Continue to HTTP Site") - * [SETTING] Privacy & Security>HTTPS-Only Mode (and manage exceptions) - * [TEST] http://example.com [upgrade] - * [TEST] http://httpforever.com/ | http://http.rip [no upgrade] ***/ -user_pref("dom.security.https_only_mode", true); // [FF76+] - // user_pref("dom.security.https_only_mode_pbm", true); // [FF80+] -/* 1245: enable HTTPS-Only mode for local resources [FF77+] ***/ - // user_pref("dom.security.https_only_mode.upgrade_local", true); -/* 1246: disable HTTP background requests [FF82+] - * When attempting to upgrade, if the server doesn't respond within 3 seconds, Firefox sends - * a top-level HTTP request without path in order to check if the server supports HTTPS or not - * This is done to avoid waiting for a timeout which takes 90 seconds - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1642387,1660945 ***/ -user_pref("dom.security.https_only_mode_send_http_background_request", false); - -/** UI (User Interface) ***/ -/* 1270: display warning on the padlock for "broken security" (if 1201 is false) - * Bug: warning padlock not indicated for subresources on a secure page! [2] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://bugzilla.mozilla.org/1353705 ***/ -user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); -/* 1272: display advanced information on Insecure Connection warning pages - * only works when it's possible to add an exception - * i.e. it doesn't work for HSTS discrepancies (https://subdomain.preloaded-hsts.badssl.com/) - * [TEST] https://expired.badssl.com/ ***/ -user_pref("browser.xul.error_pages.expert_bad_cert", true); - -/*** [SECTION 1600]: REFERERS - full URI: https://example.com:8888/foo/bar.html?id=1234 - scheme+host+port+path: https://example.com:8888/foo/bar.html - scheme+host+port: https://example.com:8888 - [1] https://feeding.cloud.geek.nz/posts/tweaking-referrer-for-privacy-in-firefox/ -***/ -user_pref("_user.js.parrot", "1600 syntax error: the parrot rests in peace!"); -/* 1602: control the amount of cross-origin information to send [FF52+] - * 0=send full URI (default), 1=scheme+host+port+path, 2=scheme+host+port ***/ -user_pref("network.http.referer.XOriginTrimmingPolicy", 2); - -/*** [SECTION 1700]: CONTAINERS ***/ -user_pref("_user.js.parrot", "1700 syntax error: the parrot's bit the dust!"); -/* 1701: enable Container Tabs and its UI setting [FF50+] - * [SETTING] General>Tabs>Enable Container Tabs - * https://wiki.mozilla.org/Security/Contextual_Identity_Project/Containers ***/ -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); -/* 1702: set behavior on "+ Tab" button to display container menu on left click [FF74+] - * [NOTE] The menu is always shown on long press and right click - * [SETTING] General>Tabs>Enable Container Tabs>Settings>Select a container for each new tab ***/ - // user_pref("privacy.userContext.newTabContainerOnLeftClick.enabled", true); -/* 1703: set external links to open in site-specific containers [FF123+] - * [SETUP-WEB] Depending on your container extension(s) and their settings - * true=Firefox will not choose a container (so your extension can) - * false=Firefox will choose the container/no-container (default) - * [1] https://bugzilla.mozilla.org/1874599 ***/ - // user_pref("browser.link.force_default_user_context_id_for_external_opens", true); - -/*** [SECTION 2000]: PLUGINS / MEDIA / WEBRTC ***/ -user_pref("_user.js.parrot", "2000 syntax error: the parrot's snuffed it!"); -/* 2002: force WebRTC inside the proxy [FF70+] ***/ -user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true); -/* 2003: force a single network interface for ICE candidates generation [FF42+] - * When using a system-wide proxy, it uses the proxy interface - * [1] https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate - * [2] https://wiki.mozilla.org/Media/WebRTC/Privacy ***/ -user_pref("media.peerconnection.ice.default_address_only", true); -/* 2004: force exclusion of private IPs from ICE candidates [FF51+] - * [SETUP-HARDEN] This will protect your private IP even in TRUSTED scenarios after you - * grant device access, but often results in breakage on video-conferencing platforms ***/ - // user_pref("media.peerconnection.ice.no_host", true); -/* 2020: disable GMP (Gecko Media Plugins) - * [1] https://wiki.mozilla.org/GeckoMediaPlugins ***/ - // user_pref("media.gmp-provider.enabled", false); - -/*** [SECTION 2400]: DOM (DOCUMENT OBJECT MODEL) ***/ -user_pref("_user.js.parrot", "2400 syntax error: the parrot's kicked the bucket!"); -/* 2402: prevent scripts from moving and resizing open windows ***/ -user_pref("dom.disable_window_move_resize", true); - -/*** [SECTION 2600]: MISCELLANEOUS ***/ -user_pref("_user.js.parrot", "2600 syntax error: the parrot's run down the curtain!"); -/* 2603: remove temp files opened from non-PB windows with an external application - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=302433,1738574 ***/ -user_pref("browser.download.start_downloads_in_tmp_dir", true); // [FF102+] -user_pref("browser.helperApps.deleteTempFileOnExit", true); -/* 2606: disable UITour backend so there is no chance that a remote page can use it ***/ -user_pref("browser.uitour.enabled", false); - // user_pref("browser.uitour.url", ""); // Defense-in-depth -/* 2608: reset remote debugging to disabled - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/16222 ***/ -user_pref("devtools.debugger.remote-enabled", false); // [DEFAULT: false] -/* 2615: disable websites overriding Firefox's keyboard shortcuts [FF58+] - * 0 (default) or 1=allow, 2=block - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Override Keyboard Shortcuts ***/ - // user_pref("permissions.default.shortcuts", 2); -/* 2616: remove special permissions for certain mozilla domains [FF35+] - * [1] resource://app/defaults/permissions ***/ -user_pref("permissions.manager.defaultsUrl", ""); -/* 2617: remove webchannel whitelist ***/ -user_pref("webchannel.allowObject.urlWhitelist", ""); -/* 2619: use Punycode in Internationalized Domain Names to eliminate possible spoofing - * [SETUP-WEB] Might be undesirable for non-latin alphabet users since legitimate IDN's are also punycoded - * [TEST] https://www.xn--80ak6aa92e.com/ (www.apple.com) - * [1] https://wiki.mozilla.org/IDN_Display_Algorithm - * [2] https://en.wikipedia.org/wiki/IDN_homograph_attack - * [3] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=punycode+firefox - * [4] https://www.xudongz.com/blog/2017/idn-phishing/ ***/ -user_pref("network.IDN_show_punycode", true); -/* 2620: enforce PDFJS, disable PDFJS scripting - * This setting controls if the option "Display in Firefox" is available in the setting below - * and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With") - * [WHY] pdfjs is lightweight, open source, and secure: the last exploit was June 2015 [1] - * It doesn't break "state separation" of browser content (by not sharing with OS, independent apps). - * It maintains disk avoidance and application data isolation. It's convenient. You can still save to disk. - * [NOTE] JS can still force a pdf to open in-browser by bundling its own code - * [SETUP-CHROME] You may prefer a different pdf reader for security/workflow reasons - * [SETTING] General>Applications>Portable Document Format (PDF) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=pdf.js+firefox ***/ -user_pref("pdfjs.disabled", false); // [DEFAULT: false] -user_pref("pdfjs.enableScripting", false); // [FF86+] -/* 2624: disable middle click on new tab button opening URLs or searches using clipboard [FF115+] */ -user_pref("browser.tabs.searchclipboardfor.middleclick", false); // [DEFAULT: false NON-LINUX] -/* 2630: disable content analysis by DLP (Data Loss Prevention) agents - * DLP agents are background processes on managed computers that allow enterprises to monitor locally running - * applications for data exfiltration events, which they can allow/block based on customer defined DLP policies. - * [1] https://github.com/chromium/content_analysis_sdk */ -user_pref("browser.contentanalysis.default_allow", false); // [FF124+] [DEFAULT: false] - -/** DOWNLOADS ***/ -/* 2651: enable user interaction for security by always asking where to download - * [SETUP-CHROME] On Android this blocks longtapping and saving images - * [SETTING] General>Downloads>Always ask you where to save files ***/ -user_pref("browser.download.useDownloadDir", false); -/* 2652: disable downloads panel opening on every download [FF96+] ***/ -user_pref("browser.download.alwaysOpenPanel", false); -/* 2653: disable adding downloads to the system's "recent documents" list ***/ -user_pref("browser.download.manager.addToRecentDocs", false); -/* 2654: enable user interaction for security by always asking how to handle new mimetypes [FF101+] - * [SETTING] General>Files and Applications>What should Firefox do with other files ***/ -user_pref("browser.download.always_ask_before_handling_new_types", true); - -/** EXTENSIONS ***/ -/* 2660: limit allowed extension directories - * 1=profile, 2=user, 4=application, 8=system, 16=temporary, 31=all - * The pref value represents the sum: e.g. 5 would be profile and application directories - * [SETUP-CHROME] Breaks usage of files which are installed outside allowed directories - * [1] https://archive.is/DYjAM ***/ -user_pref("extensions.enabledScopes", 5); // [HIDDEN PREF] - // user_pref("extensions.autoDisableScopes", 15); // [DEFAULT: 15] -/* 2661: disable bypassing 3rd party extension install prompts [FF82+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1659530,1681331 ***/ -user_pref("extensions.postDownloadThirdPartyPrompt", false); -/* 2662: disable webextension restrictions on certain mozilla domains (you also need 4503) [FF60+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ - // user_pref("extensions.webextensions.restrictedDomains", ""); - -/*** [SECTION 2700]: ETP (ENHANCED TRACKING PROTECTION) ***/ -user_pref("_user.js.parrot", "2700 syntax error: the parrot's joined the bleedin' choir invisible!"); -/* 2701: enable ETP Strict Mode [FF86+] - * ETP Strict Mode enables Total Cookie Protection (TCP) - * [NOTE] Adding site exceptions disables all ETP protections for that site and increases the risk of - * cross-site state tracking e.g. exceptions for SiteA and SiteB means PartyC on both sites is shared - * [1] https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/ - * [SETTING] to add site exceptions: Urlbar>ETP Shield - * [SETTING] to manage site exceptions: Options>Privacy & Security>Enhanced Tracking Protection>Manage Exceptions ***/ -user_pref("browser.contentblocking.category", "strict"); // [HIDDEN PREF] -/* 2702: disable ETP web compat features [FF93+] - * [SETUP-HARDEN] Includes skip lists, heuristics (SmartBlock) and automatic grants - * Opener and redirect heuristics are granted for 30 days, see [3] - * [1] https://blog.mozilla.org/security/2021/07/13/smartblock-v2/ - * [2] https://hg.mozilla.org/mozilla-central/rev/e5483fd469ab#l4.12 - * [3] https://developer.mozilla.org/en-US/docs/Web/Privacy/State_Partitioning#storage_access_heuristics ***/ - // user_pref("privacy.antitracking.enableWebcompat", false); - -/*** [SECTION 2800]: SHUTDOWN & SANITIZING ***/ -user_pref("_user.js.parrot", "2800 syntax error: the parrot's bleedin' demised!"); -/* 2810: enable Firefox to clear items on shutdown - * [SETTING] Privacy & Security>History>Custom Settings>Clear history when Firefox closes | Settings ***/ -user_pref("privacy.sanitize.sanitizeOnShutdown", true); - -/** SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS | v2 migration is FF128+ ***/ -/* 2811: set/enforce what items to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] If "history" is true, downloads will also be cleared ***/ -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown_v2.cache", true); // [FF128+] [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", true); // [FF128+] [DEFAULT: true] - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] - // user_pref("privacy.clearOnShutdown_v2.siteSettings", false); // [FF128+] [DEFAULT: false] -/* 2812: set Session Restore to clear on shutdown (if 2810 is true) [FF34+] - * [NOTE] Not needed if Session Restore is not used (0102) or it is already cleared with history (2811) - * [NOTE] If true, this prevents resuming from crashes (also see 5008) ***/ - // user_pref("privacy.clearOnShutdown.openWindows", true); - -/** SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ | v2 migration is FF128+ ***/ -/* 2815: set "Cookies" and "Site Data" to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] Exceptions: A "cookie" block permission also controls "offlineApps" (see note below). - * serviceWorkers require an "Allow" permission. For cross-domain logins, add exceptions for - * both sites e.g. https://www.youtube.com (site) + https://accounts.google.com (single sign on) - * [NOTE] "offlineApps": Offline Website Data: localStorage, service worker cache, QuotaManager (IndexedDB, asm-cache) - * [NOTE] "sessions": Active Logins (has no site exceptions): refers to HTTP Basic Authentication [1], not logins via cookies - * [WARNING] Be selective with what sites you "Allow", as they also disable partitioning (1767271) - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow (when on the website in question) - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings - * [1] https://en.wikipedia.org/wiki/Basic_access_authentication ***/ -user_pref("privacy.clearOnShutdown.cookies", true); // Cookies -user_pref("privacy.clearOnShutdown.offlineApps", true); // Site Data -user_pref("privacy.clearOnShutdown.sessions", true); // Active Logins [DEFAULT: true] -user_pref("privacy.clearOnShutdown_v2.cookiesAndStorage", true); // Cookies, Site Data, Active Logins [FF128+] - -/** SANITIZE SITE DATA: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2820: set manual "Clear Data" items [SETUP-CHROME] [FF128+] - * Firefox remembers your last choices. This will reset them when you start Firefox - * [SETTING] Privacy & Security>Browser Privacy>Cookies and Site Data>Clear Data ***/ -user_pref("privacy.clearSiteData.cache", true); -user_pref("privacy.clearSiteData.cookiesAndStorage", false); // keep false until it respects "allow" site exceptions -user_pref("privacy.clearSiteData.historyFormDataAndDownloads", true); - // user_pref("privacy.clearSiteData.siteSettings", false); - -/** SANITIZE HISTORY: IGNORES "ALLOW" SITE EXCEPTIONS | clearHistory migration is FF128+ ***/ -/* 2830: set manual "Clear History" items, also via Ctrl-Shift-Del [SETUP-CHROME] - * Firefox remembers your last choices. This will reset them when you start Firefox - * [NOTE] Regardless of what you set "downloads" to, as soon as the dialog - * for "Clear Recent History" is opened, it is synced to the same as "history" - * [SETTING] Privacy & Security>History>Custom Settings>Clear History ***/ -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.clearHistory.cache", true); -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] - // user_pref("privacy.cpd.downloads", true); // not used, see note above -user_pref("privacy.clearHistory.historyFormDataAndDownloads", true); -user_pref("privacy.cpd.cookies", false); -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.clearHistory.cookiesAndStorage", false); - // user_pref("privacy.cpd.openWindows", false); // Session Restore - // user_pref("privacy.cpd.passwords", false); - // user_pref("privacy.cpd.siteSettings", false); - // user_pref("privacy.clearHistory.siteSettings", false); - -/** SANITIZE MANUAL: TIMERANGE ***/ -/* 2840: set "Time range to clear" for "Clear Data" (2820) and "Clear History" (2830) - * Firefox remembers your last choice. This will reset the value when you start Firefox - * 0=everything, 1=last hour, 2=last two hours, 3=last four hours, 4=today - * [NOTE] Values 5 (last 5 minutes) and 6 (last 24 hours) are not listed in the dropdown, - * which will display a blank value, and are not guaranteed to work ***/ -user_pref("privacy.sanitize.timeSpan", 0); - -/*** [SECTION 4000]: FPP (fingerprintingProtection) - RFP (4501) overrides FPP - - In FF118+ FPP is on by default in private windows (4001) and in FF119+ is controlled - by ETP (2701). FPP will also use Remote Services in future to relax FPP protections - on a per site basis for compatibility (4003). - - 1826408 - restrict fonts to system (kBaseFonts + kLangPackFonts) (Windows, Mac, some Linux) - https://searchfox.org/mozilla-central/search?path=StandardFonts*.inc - 1858181 - subtly randomize canvas per eTLD+1, per session and per window-mode (FF120+) -***/ -user_pref("_user.js.parrot", "4000 syntax error: the parrot's bereft of life!"); -/* 4001: enable FPP in PB mode [FF114+] - * [NOTE] In FF119+, FPP for all modes (7016) is enabled with ETP Strict (2701) ***/ - // user_pref("privacy.fingerprintingProtection.pbmode", true); // [DEFAULT: true FF118+] -/* 4002: set global FPP overrides [FF114+] - * Controls what protections FPP uses globally, including "RFPTargets" (despite the name these are - * not used by RFP) e.g. "+AllTargets,-CSSPrefersColorScheme" or "-AllTargets,+CanvasRandomization" - * [NOTE] Be aware that not all RFP protections are necessarily in RFPTargets - * [WARNING] Not recommended. Either use RFP or FPP at defaults - * [1] https://searchfox.org/mozilla-central/source/toolkit/components/resistfingerprinting/RFPTargets.inc ***/ - // user_pref("privacy.fingerprintingProtection.overrides", ""); -/* 4003: disable remote FPP overrides [FF127+] ***/ - // user_pref("privacy.fingerprintingProtection.remoteOverrides.enabled", false); - -/*** [SECTION 4500]: RFP (resistFingerprinting) - RFP overrides FPP (4000) - - It is an all-or-nothing buy in: you cannot pick and choose what parts you want - [TEST] https://arkenfox.github.io/TZP/tzp.html - - [WARNING] DO NOT USE extensions to alter RFP protected metrics - - 418986 - limit window.screen & CSS media queries (FF41) - 1281949 - spoof screen orientation (FF50) - 1360039 - spoof navigator.hardwareConcurrency as 2 (FF55) - FF56 - 1333651 - spoof User Agent & Navigator API - version: android version spoofed as ESR (FF119 or lower) - OS: JS spoofed as Windows 10, OS 10.15, Android 10, or Linux | HTTP Headers spoofed as Windows or Android - 1369319 - disable device sensor API - 1369357 - disable site specific zoom - 1337161 - hide gamepads from content - 1372072 - spoof network information API as "unknown" when dom.netinfo.enabled = true - 1333641 - reduce fingerprinting in WebSpeech API - FF57 - 1369309 - spoof media statistics - 1382499 - reduce screen co-ordinate fingerprinting in Touch API - 1217290 & 1409677 - enable some fingerprinting resistance for WebGL - 1354633 - limit MediaError.message to a whitelist - FF58+ - 1372073 - spoof/block fingerprinting in MediaDevices API (FF59) - Spoof: enumerate devices as one "Internal Camera" and one "Internal Microphone" - Block: suppresses the ondevicechange event - 1039069 - warn when language prefs are not set to "en*" (FF59) - 1222285 & 1433592 - spoof keyboard events and suppress keyboard modifier events (FF59) - Spoofing mimics the content language of the document. Currently it only supports en-US. - Modifier events suppressed are SHIFT and both ALT keys. Chrome is not affected. - 1337157 - disable WebGL debug renderer info (FF60) - 1459089 - disable OS locale in HTTP Accept-Language headers (ANDROID) (FF62) - 1479239 - return "no-preference" with prefers-reduced-motion (FF63) - 1363508 - spoof/suppress Pointer Events (FF64) - 1492766 - spoof pointerEvent.pointerid (FF65) - 1485266 - disable exposure of system colors to CSS or canvas (FF67) - 1494034 - return "light" with prefers-color-scheme (FF67) - 1564422 - spoof audioContext outputLatency (FF70) - 1595823 - return audioContext sampleRate as 44100 (FF72) - 1607316 - spoof pointer as coarse and hover as none (ANDROID) (FF74) - 1621433 - randomize canvas (previously FF58+ returned an all-white canvas) (FF78) - 1506364 - return "no-preference" with prefers-contrast (FF80) - 1653987 - limit font visibility to bundled and "Base Fonts" (Windows, Mac, some Linux) (FF80) - 1461454 - spoof smooth=true and powerEfficient=false for supported media in MediaCapabilities (FF82) - 531915 - use fdlibm's sin, cos and tan in jsmath (FF93, ESR91.1) - 1756280 - enforce navigator.pdfViewerEnabled as true and plugins/mimeTypes as hard-coded values (FF100-115) - 1692609 - reduce JS timing precision to 16.67ms (previously FF55+ was 100ms) (FF102) - 1422237 - return "srgb" with color-gamut (FF110) - 1794628 - return "none" with inverted-colors (FF114) - 1554751 - return devicePixelRatio as 2 (previously FF41+ was 1) (FF127) - 1787790 - normalize system fonts (FF128) - 1835987 - spoof timezone as Atlantic/Reykjavik (previously FF55+ was UTC) (FF128) -***/ -user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs"); -/* 4501: enable RFP - * [SETUP-WEB] RFP can cause some website breakage: mainly canvas, use a canvas site exception via the urlbar. - * RFP also has a few side effects: mainly timezone is UTC, and websites will prefer light theme - * [NOTE] pbmode applies if true and the original pref is false - * [1] https://bugzilla.mozilla.org/418986 ***/ -user_pref("privacy.resistFingerprinting", true); // [FF41+] - // user_pref("privacy.resistFingerprinting.pbmode", true); // [FF114+] -/* 4502: set new window size rounding max values [FF55+] - * [SETUP-CHROME] sizes round down in hundreds: width to 200s and height to 100s, to fit your screen - * [1] https://bugzilla.mozilla.org/1330882 ***/ -user_pref("privacy.window.maxInnerWidth", 1600); -user_pref("privacy.window.maxInnerHeight", 900); -/* 4503: disable mozAddonManager Web API [FF57+] - * [NOTE] To allow extensions to work on AMO, you also need 2662 - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ -user_pref("privacy.resistFingerprinting.block_mozAddonManager", true); -/* 4504: enable RFP letterboxing [FF67+] - * Dynamically resizes the inner window by applying margins in stepped ranges [2] - * If you use the dimension pref, then it will only apply those resolutions. - * The format is "width1xheight1, width2xheight2, ..." (e.g. "800x600, 1000x1000") - * [SETUP-WEB] This is independent of RFP (4501). If you're not using RFP, or you are but - * dislike the margins, then flip this pref, keeping in mind that it is effectively fingerprintable - * [WARNING] DO NOT USE: the dimension pref is only meant for testing - * [1] https://bugzilla.mozilla.org/1407366 - * [2] https://hg.mozilla.org/mozilla-central/rev/6d2d7856e468#l2.32 ***/ -user_pref("privacy.resistFingerprinting.letterboxing", true); // [HIDDEN PREF] - // user_pref("privacy.resistFingerprinting.letterboxing.dimensions", ""); // [HIDDEN PREF] -/* 4505: experimental RFP [FF91+] - * [WARNING] DO NOT USE unless testing, see [1] comment 12 - * [1] https://bugzilla.mozilla.org/1635603 ***/ - // user_pref("privacy.resistFingerprinting.exemptedDomains", "*.example.invalid"); -/* 4506: disable RFP spoof english prompt [FF59+] - * 0=prompt, 1=disabled, 2=enabled (requires RFP) - * [NOTE] When changing from value 2, preferred languages ('intl.accept_languages') is not reset. - * [SETUP-WEB] when enabled, sets 'en-US, en' for displaying pages and 'en-US' as locale. - * [SETTING] General>Language>Choose your preferred language for displaying pages>Choose>Request English... ***/ -user_pref("privacy.spoof_english", 1); -/* 4510: disable using system colors - * [SETTING] General>Language and Appearance>Fonts and Colors>Colors>Use system colors ***/ -user_pref("browser.display.use_system_colors", false); // [DEFAULT: false NON-WINDOWS] -/* 4511: enforce non-native widget theme - * Security: removes/reduces system API calls, e.g. win32k API [1] - * Fingerprinting: provides a uniform look and feel across platforms [2] - * [1] https://bugzilla.mozilla.org/1381938 - * [2] https://bugzilla.mozilla.org/1411425 ***/ -user_pref("widget.non-native-theme.enabled", true); // [DEFAULT: true] -/* 4512: enforce links targeting new windows to open in a new tab instead - * 1=most recent window or tab, 2=new window, 3=new tab - * Stops malicious window sizes and some screen resolution leaks. - * You can still right-click a link and open in a new window - * [SETTING] General>Tabs>Open links in tabs instead of new windows - * [TEST] https://arkenfox.github.io/TZP/tzp.html#screen - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/9881 ***/ -user_pref("browser.link.open_newwindow", 3); // [DEFAULT: 3] -/* 4513: set all open window methods to abide by "browser.link.open_newwindow" (4512) - * [1] https://searchfox.org/mozilla-central/source/dom/tests/browser/browser_test_new_window_from_content.js ***/ -user_pref("browser.link.open_newwindow.restriction", 0); -/* 4520: disable WebGL (Web Graphics Library) - * [SETUP-WEB] If you need it then override it. RFP still randomizes canvas for naive scripts ***/ -user_pref("webgl.disabled", true); - -/*** [SECTION 5000]: OPTIONAL OPSEC - Disk avoidance, application data isolation, eyeballs... -***/ -user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow"); -/* 5001: start Firefox in PB (Private Browsing) mode - * [NOTE] In this mode all windows are "private windows" and the PB mode icon is not displayed - * [NOTE] The P in PB mode can be misleading: it means no "persistent" disk state such as history, - * caches, searches, cookies, localStorage, IndexedDB etc (which you can achieve in normal mode). - * In fact, PB mode limits or removes the ability to control some of these, and you need to quit - * Firefox to clear them. PB is best used as a one off window (Menu>New Private Window) to provide - * a temporary self-contained new session. Close all private windows to clear the PB session. - * [SETTING] Privacy & Security>History>Custom Settings>Always use private browsing mode - * [1] https://wiki.mozilla.org/Private_Browsing - * [2] https://support.mozilla.org/kb/common-myths-about-private-browsing ***/ - // user_pref("browser.privatebrowsing.autostart", true); -/* 5002: disable memory cache - * capacity: -1=determine dynamically (default), 0=none, n=memory capacity in kibibytes ***/ - // user_pref("browser.cache.memory.enable", false); - // user_pref("browser.cache.memory.capacity", 0); -/* 5003: disable saving passwords - * [NOTE] This does not clear any passwords already saved - * [SETTING] Privacy & Security>Logins and Passwords>Ask to save logins and passwords for websites ***/ - // user_pref("signon.rememberSignons", false); -/* 5004: disable permissions manager from writing to disk [FF41+] [RESTART] - * [NOTE] This means any permission changes are session only - * [1] https://bugzilla.mozilla.org/967812 ***/ - // user_pref("permissions.memory_only", true); // [HIDDEN PREF] -/* 5005: disable intermediate certificate caching [FF41+] [RESTART] - * [NOTE] This affects login/cert/key dbs. The effect is all credentials are session-only. - * Saved logins and passwords are not available. Reset the pref and restart to return them ***/ - // user_pref("security.nocertdb", true); -/* 5006: disable favicons in history and bookmarks - * [NOTE] Stored as data blobs in favicons.sqlite, these don't reveal anything that your - * actual history (and bookmarks) already do. Your history is more detailed, so - * control that instead; e.g. disable history, clear history on exit, use PB mode - * [NOTE] favicons.sqlite is sanitized on Firefox close ***/ - // user_pref("browser.chrome.site_icons", false); -/* 5007: exclude "Undo Closed Tabs" in Session Restore ***/ - // user_pref("browser.sessionstore.max_tabs_undo", 0); -/* 5008: disable resuming session from crash - * [TEST] about:crashparent ***/ - // user_pref("browser.sessionstore.resume_from_crash", false); -/* 5009: disable "open with" in download dialog [FF50+] - * Application data isolation [1] - * [1] https://bugzilla.mozilla.org/1281959 ***/ - // user_pref("browser.download.forbid_open_with", true); -/* 5010: disable location bar suggestion types - * [SETTING] Search>Address Bar>When using the address bar, suggest ***/ - // user_pref("browser.urlbar.suggest.history", false); - // user_pref("browser.urlbar.suggest.bookmark", false); - // user_pref("browser.urlbar.suggest.openpage", false); - // user_pref("browser.urlbar.suggest.topsites", false); // [FF78+] -/* 5011: disable location bar dropdown - * This value controls the total number of entries to appear in the location bar dropdown ***/ - // user_pref("browser.urlbar.maxRichResults", 0); -/* 5012: disable location bar autofill - * [1] https://support.mozilla.org/kb/address-bar-autocomplete-firefox#w_url-autocomplete ***/ - // user_pref("browser.urlbar.autoFill", false); -/* 5013: disable browsing and download history - * [NOTE] We also clear history and downloads on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember browsing and download history ***/ - // user_pref("places.history.enabled", false); -/* 5014: disable Windows jumplist [WINDOWS] ***/ - // user_pref("browser.taskbar.lists.enabled", false); - // user_pref("browser.taskbar.lists.frequent.enabled", false); - // user_pref("browser.taskbar.lists.recent.enabled", false); - // user_pref("browser.taskbar.lists.tasks.enabled", false); -/* 5016: discourage downloading to desktop - * 0=desktop, 1=downloads (default), 2=custom - * [SETTING] To set your custom default "downloads": General>Downloads>Save files to ***/ - // user_pref("browser.download.folderList", 2); -/* 5017: disable Form Autofill - * If .supportedCountries includes your region (browser.search.region) and .supported - * is "detect" (default), then the UI will show. Stored data is not secure, uses JSON - * [SETTING] Privacy & Security>Forms and Autofill>Autofill addresses - * [1] https://wiki.mozilla.org/Firefox/Features/Form_Autofill ***/ - // user_pref("extensions.formautofill.addresses.enabled", false); // [FF55+] - // user_pref("extensions.formautofill.creditCards.enabled", false); // [FF56+] -/* 5018: limit events that can cause a pop-up ***/ - // user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); -/* 5019: disable page thumbnail collection ***/ - // user_pref("browser.pagethumbnails.capturing_disabled", true); // [HIDDEN PREF] -/* 5020: disable Windows native notifications and use app notications instead [FF111+] [WINDOWS] ***/ - // user_pref("alerts.useSystemBackend.windows.notificationserver.enabled", false); -/* 5021: disable location bar using search - * Don't leak URL typos to a search engine, give an error message instead - * Examples: "secretplace,com", "secretplace/com", "secretplace com", "secret place.com" - * [NOTE] This does not affect explicit user action such as using search buttons in the - * dropdown, or using keyword search shortcuts you configure in options (e.g. "d" for DuckDuckGo) ***/ - // user_pref("keyword.enabled", false); - -/*** [SECTION 5500]: OPTIONAL HARDENING - Not recommended. Overriding these can cause breakage and performance issues, - they are mostly fingerprintable, and the threat model is practically nonexistent -***/ -user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!"); -/* 5501: disable MathML (Mathematical Markup Language) [FF51+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=mathml ***/ - // user_pref("mathml.disabled", true); // 1173199 -/* 5502: disable in-content SVG (Scalable Vector Graphics) [FF53+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+svg ***/ - // user_pref("svg.disabled", true); // 1216893 -/* 5503: disable graphite - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+graphite - * [2] https://en.wikipedia.org/wiki/Graphite_(SIL) ***/ - // user_pref("gfx.font_rendering.graphite.enabled", false); -/* 5504: disable asm.js [FF22+] - * [1] http://asmjs.org/ - * [2] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=asm.js - * [3] https://rh0dev.github.io/blog/2017/the-return-of-the-jit/ ***/ - // user_pref("javascript.options.asmjs", false); -/* 5505: disable Ion and baseline JIT to harden against JS exploits - * [NOTE] When both Ion and JIT are disabled, and trustedprincipals - * is enabled, then Ion can still be used by extensions (1599226) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+jit - * [2] https://microsoftedge.github.io/edgevr/posts/Super-Duper-Secure-Mode/ ***/ - // user_pref("javascript.options.ion", false); - // user_pref("javascript.options.baselinejit", false); - // user_pref("javascript.options.jit_trustedprincipals", true); // [FF75+] [HIDDEN PREF] -/* 5506: disable WebAssembly [FF52+] - * Vulnerabilities [1] have increasingly been found, including those known and fixed - * in native programs years ago [2]. WASM has powerful low-level access, making - * certain attacks (brute-force) and vulnerabilities more possible - * [STATS] ~0.2% of websites, about half of which are for cryptomining / malvertising [2][3] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=wasm - * [2] https://spectrum.ieee.org/tech-talk/telecom/security/more-worries-over-the-security-of-web-assembly - * [3] https://www.zdnet.com/article/half-of-the-websites-using-webassembly-use-it-for-malicious-purposes ***/ - // user_pref("javascript.options.wasm", false); -/* 5507: disable rendering of SVG OpenType fonts ***/ - // user_pref("gfx.font_rendering.opentype_svg.enabled", false); -/* 5508: disable all DRM content (EME: Encryption Media Extension) - * Optionally hide the UI setting which also disables the DRM prompt - * [SETTING] General>DRM Content>Play DRM-controlled content - * [TEST] https://bitmovin.com/demos/drm - * [1] https://www.eff.org/deeplinks/2017/10/drms-dead-canary-how-we-just-lost-web-what-we-learned-it-and-what-we-need-do-next ***/ - // user_pref("media.eme.enabled", false); - // user_pref("browser.eme.ui.enabled", false); -/* 5509: disable IPv6 if using a VPN - * This is an application level fallback. Disabling IPv6 is best done at an OS/network - * level, and/or configured properly in system wide VPN setups. - * [SETUP-WEB] PR_CONNECT_RESET_ERROR - * [NOTE] PHP defaults to IPv6 with "localhost". Use "php -S 127.0.0.1:PORT" - * [TEST] https://ipleak.org/ - * [1] https://www.internetsociety.org/tag/ipv6-security/ (Myths 2,4,5,6) ***/ - // user_pref("network.dns.disableIPv6", true); -/* 5510: control when to send a cross-origin referer - * 0=always (default), 1=only if base domains match, 2=only if hosts match - * [NOTE] Will cause breakage: older modems/routers and some sites e.g banks, vimeo, icloud, instagram ***/ - // user_pref("network.http.referer.XOriginPolicy", 2); -/* 5511: set DoH bootstrap address [FF89+] - * Firefox uses the system DNS to initially resolve the IP address of your DoH server. - * When set to a valid, working value that matches your "network.trr.uri" (0712) Firefox - * won't use the system DNS. If the IP doesn't match then DoH won't work ***/ - // user_pref("network.trr.bootstrapAddr", "10.0.0.1"); // [HIDDEN PREF] - -/*** [SECTION 6000]: DON'T TOUCH ***/ -user_pref("_user.js.parrot", "6000 syntax error: the parrot's 'istory!"); -/* 6001: enforce Firefox blocklist - * [WHY] It includes updates for "revoked certificates" - * [1] https://blog.mozilla.org/security/2015/03/03/revoking-intermediate-certificates-introducing-onecrl/ ***/ -user_pref("extensions.blocklist.enabled", true); // [DEFAULT: true] -/* 6002: enforce no referer spoofing - * [WHY] Spoofing can affect CSRF (Cross-Site Request Forgery) protections ***/ -user_pref("network.http.referer.spoofSource", false); // [DEFAULT: false] -/* 6004: enforce a security delay on some confirmation dialogs such as install, open/save - * [1] https://www.squarefree.com/2004/07/01/race-conditions-in-security-dialogs/ ***/ -user_pref("security.dialog_enable_delay", 1000); // [DEFAULT: 1000] -/* 6008: enforce no First Party Isolation [FF51+] - * [WARNING] Replaced with network partitioning (FF85+) and TCP (2701), and enabling FPI - * disables those. FPI is no longer maintained except at Tor Project for Tor Browser's config ***/ -user_pref("privacy.firstparty.isolate", false); // [DEFAULT: false] -/* 6009: enforce SmartBlock shims (about:compat) [FF81+] - * [1] https://blog.mozilla.org/security/2021/03/23/introducing-smartblock/ ***/ -user_pref("extensions.webcompat.enable_shims", true); // [HIDDEN PREF] [DEFAULT: true] -/* 6010: enforce no TLS 1.0/1.1 downgrades - * [TEST] https://tls-v1-1.badssl.com:1010/ ***/ -user_pref("security.tls.version.enable-deprecated", false); // [DEFAULT: false] -/* 6011: enforce disabling of Web Compatibility Reporter [FF56+] - * Web Compatibility Reporter adds a "Report Site Issue" button to send data to Mozilla - * [WHY] To prevent wasting Mozilla's time with a custom setup ***/ -user_pref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false] -/* 6012: enforce Quarantined Domains [FF115+] - * [WHY] https://support.mozilla.org/kb/quarantined-domains */ -user_pref("extensions.quarantinedDomains.enabled", true); // [DEFAULT: true] -/* 6050: prefsCleaner: previously active items removed from arkenfox 115-127 ***/ - // user_pref("accessibility.force_disabled", ""); - // user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", ""); - // user_pref("network.protocol-handler.external.ms-windows-store", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", ""); - // user_pref("privacy.partition.serviceWorkers", ""); - -/*** [SECTION 7000]: DON'T BOTHER ***/ -user_pref("_user.js.parrot", "7000 syntax error: the parrot's pushing up daisies!"); -/* 7001: disable APIs - * Location-Aware Browsing, Full Screen - * [WHY] The API state is easily fingerprintable. - * Geo is behind a prompt (7002). Full screen requires user interaction ***/ - // user_pref("geo.enabled", false); - // user_pref("full-screen-api.enabled", false); -/* 7002: set default permissions - * Location, Camera, Microphone, Notifications [FF58+] Virtual Reality [FF73+] - * 0=always ask (default), 1=allow, 2=block - * [WHY] These are fingerprintable via Permissions API, except VR. Just add site - * exceptions as allow/block for frequently visited/annoying sites: i.e. not global - * [SETTING] to add site exceptions: Ctrl+I>Permissions> - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ - // user_pref("permissions.default.geo", 0); - // user_pref("permissions.default.camera", 0); - // user_pref("permissions.default.microphone", 0); - // user_pref("permissions.default.desktop-notification", 0); - // user_pref("permissions.default.xr", 0); // Virtual Reality -/* 7003: disable non-modern cipher suites [1] - * [WHY] Passive fingerprinting. Minimal/non-existent threat of downgrade attacks - * [1] https://browserleaks.com/ssl ***/ - // user_pref("security.ssl3.ecdhe_ecdsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_ecdsa_aes_256_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_256_sha", false); - // user_pref("security.ssl3.rsa_aes_128_gcm_sha256", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_gcm_sha384", false); // no PFS - // user_pref("security.ssl3.rsa_aes_128_sha", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_sha", false); // no PFS -/* 7004: control TLS versions - * [WHY] Passive fingerprinting and security ***/ - // user_pref("security.tls.version.min", 3); // [DEFAULT: 3] - // user_pref("security.tls.version.max", 4); -/* 7005: disable SSL session IDs [FF36+] - * [WHY] Passive fingerprinting and perf costs. These are session-only - * and isolated with network partitioning (FF85+) and/or containers ***/ - // user_pref("security.ssl.disable_session_identifiers", true); -/* 7006: onions - * [WHY] Firefox doesn't support hidden services. Use Tor Browser ***/ - // user_pref("dom.securecontext.allowlist_onions", true); // [FF97+] 1382359/1744006 - // user_pref("network.http.referer.hideOnionSource", true); // 1305144 -/* 7007: referers - * [WHY] Only cross-origin referers (1602, 5510) matter ***/ - // user_pref("network.http.sendRefererHeader", 2); - // user_pref("network.http.referer.trimmingPolicy", 0); -/* 7008: set the default Referrer Policy [FF59+] - * 0=no-referer, 1=same-origin, 2=strict-origin-when-cross-origin, 3=no-referrer-when-downgrade - * [WHY] Defaults are fine. They can be overridden by a site-controlled Referrer Policy ***/ - // user_pref("network.http.referer.defaultPolicy", 2); // [DEFAULT: 2] - // user_pref("network.http.referer.defaultPolicy.pbmode", 2); // [DEFAULT: 2] -/* 7010: disable HTTP Alternative Services [FF37+] - * [WHY] Already isolated with network partitioning (FF85+) ***/ - // user_pref("network.http.altsvc.enabled", false); -/* 7011: disable website control over browser right-click context menu - * [WHY] Just use Shift-Right-Click ***/ - // user_pref("dom.event.contextmenu.enabled", false); -/* 7012: disable icon fonts (glyphs) and local fallback rendering - * [WHY] Breakage, font fallback is equivalency, also RFP - * [1] https://bugzilla.mozilla.org/789788 - * [2] https://gitlab.torproject.org/legacy/trac/-/issues/8455 ***/ - // user_pref("gfx.downloadable_fonts.enabled", false); // [FF41+] - // user_pref("gfx.downloadable_fonts.fallback_delay", -1); -/* 7013: disable Clipboard API - * [WHY] Fingerprintable. Breakage. Cut/copy/paste require user - * interaction, and paste is limited to focused editable fields ***/ - // user_pref("dom.event.clipboardevents.enabled", false); -/* 7014: disable System Add-on updates - * [WHY] It can compromise security. System addons ship with prefs, use those ***/ - // user_pref("extensions.systemAddon.update.enabled", false); // [FF62+] - // user_pref("extensions.systemAddon.update.url", ""); // [FF44+] -/* 7015: enable the DNT (Do Not Track) HTTP header - * [WHY] DNT is enforced with Tracking Protection which is used in ETP Strict (2701) ***/ - // user_pref("privacy.donottrackheader.enabled", true); -/* 7016: customize ETP settings - * [NOTE] FPP (fingerprintingProtection) is ignored when RFP (4501) is enabled - * [WHY] Arkenfox only supports strict (2701) which sets these at runtime ***/ - // user_pref("network.cookie.cookieBehavior", 5); // [DEFAULT: 5] - // user_pref("privacy.fingerprintingProtection", true); // [FF114+] [ETP FF119+] - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault", true); - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault.top_navigation", true); // [FF100+] - // user_pref("privacy.partition.network_state.ocsp_cache", true); // [DEFAULT: true FF123+] - // user_pref("privacy.query_stripping.enabled", true); // [FF101+] - // user_pref("privacy.trackingprotection.enabled", true); - // user_pref("privacy.trackingprotection.socialtracking.enabled", true); - // user_pref("privacy.trackingprotection.cryptomining.enabled", true); // [DEFAULT: true] - // user_pref("privacy.trackingprotection.fingerprinting.enabled", true); // [DEFAULT: true] -/* 7017: disable service workers - * [WHY] Already isolated with TCP (2701) behind a pref (2710) ***/ - // user_pref("dom.serviceWorkers.enabled", false); -/* 7018: disable Web Notifications [FF22+] - * [WHY] Web Notifications are behind a prompt (7002) - * [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ ***/ - // user_pref("dom.webnotifications.enabled", false); -/* 7019: disable Push Notifications [FF44+] - * [WHY] Website "push" requires subscription, and the API is required for CRLite (1224) - * [NOTE] To remove all subscriptions, reset "dom.push.userAgentID" - * [1] https://support.mozilla.org/kb/push-notifications-firefox ***/ - // user_pref("dom.push.enabled", false); -/* 7020: disable WebRTC (Web Real-Time Communication) - * [WHY] Firefox desktop uses mDNS hostname obfuscation and the private IP is never exposed until - * required in TRUSTED scenarios; i.e. after you grant device (microphone or camera) access - * [TEST] https://browserleaks.com/webrtc - * [1] https://groups.google.com/g/discuss-webrtc/c/6stQXi72BEU/m/2FwZd24UAQAJ - * [2] https://datatracker.ietf.org/doc/html/draft-ietf-mmusic-mdns-ice-candidates#section-3.1.1 ***/ - // user_pref("media.peerconnection.enabled", false); -/* 7021: enable GPC (Global Privacy Control) in non-PB windows - * [WHY] Passive and active fingerprinting. Mostly redundant with Tracking Protection - * in ETP Strict (2701) and sanitizing on close (2800s) ***/ - // user_pref("privacy.globalprivacycontrol.enabled", true); - -/*** [SECTION 8000]: DON'T BOTHER: FINGERPRINTING - [WHY] They are insufficient to help anti-fingerprinting and do more harm than good - [WARNING] DO NOT USE with RFP. RFP already covers these and they can interfere -***/ -user_pref("_user.js.parrot", "8000 syntax error: the parrot's crossed the Jordan"); -/* 8001: prefsCleaner: reset items useless for anti-fingerprinting ***/ - // user_pref("browser.display.use_document_fonts", ""); - // user_pref("browser.zoom.siteSpecific", ""); - // user_pref("device.sensors.enabled", ""); - // user_pref("dom.enable_performance", ""); - // user_pref("dom.enable_resource_timing", ""); - // user_pref("dom.gamepad.enabled", ""); - // user_pref("dom.maxHardwareConcurrency", ""); - // user_pref("dom.w3c_touch_events.enabled", ""); - // user_pref("dom.webaudio.enabled", ""); - // user_pref("font.system.whitelist", ""); - // user_pref("general.appname.override", ""); - // user_pref("general.appversion.override", ""); - // user_pref("general.buildID.override", ""); - // user_pref("general.oscpu.override", ""); - // user_pref("general.platform.override", ""); - // user_pref("general.useragent.override", ""); - // user_pref("media.navigator.enabled", ""); - // user_pref("media.ondevicechange.enabled", ""); - // user_pref("media.video_stats.enabled", ""); - // user_pref("media.webspeech.synth.enabled", ""); - // user_pref("ui.use_standins_for_native_colors", ""); - // user_pref("webgl.enable-debug-renderer-info", ""); - -/*** [SECTION 9000]: NON-PROJECT RELATED ***/ -user_pref("_user.js.parrot", "9000 syntax error: the parrot's cashed in 'is chips!"); -/* 9001: disable welcome notices ***/ -user_pref("browser.startup.homepage_override.mstone", "ignore"); // [HIDDEN PREF] -/* 9002: disable General>Browsing>Recommend extensions/features as you browse [FF67+] ***/ -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); -/* 9004: disable search terms [FF110+] - * [SETTING] Search>Search Bar>Use the address bar for search and navigation>Show search terms instead of URL... ***/ -user_pref("browser.urlbar.showSearchTerms.enabled", false); - -/*** [SECTION 9999]: DEPRECATED / RENAMED ***/ -user_pref("_user.js.parrot", "9999 syntax error: the parrot's shuffled off 'is mortal coil!"); -/* ESR115.x still uses all the following prefs -// [NOTE] replace the * with a slash in the line above to re-enable active ones -// FF116 -// 4506: set RFP's font visibility level (1402) [FF94+] - // [-] https://bugzilla.mozilla.org/1838415 - // user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1] -// FF117 -// 1221: disable Windows Microsoft Family Safety cert [FF50+] [WINDOWS] - // 0=disable detecting Family Safety mode and importing the root - // 1=only attempt to detect Family Safety mode (don't import the root) - // 2=detect Family Safety mode and import the root - // [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/21686 - // [-] https://bugzilla.mozilla.org/1844908 -user_pref("security.family_safety.mode", 0); -// 7018: disable service worker Web Notifications [FF44+] - // [WHY] Web Notifications are behind a prompt (7002) - // [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ - // [-] https://bugzilla.mozilla.org/1842457 - // user_pref("dom.webnotifications.serviceworker.enabled", false); -// FF118 -// 1402: limit font visibility (Windows, Mac, some Linux) [FF94+] - // Uses hardcoded lists with two parts: kBaseFonts + kLangPackFonts [1], bundled fonts are auto-allowed - // In normal windows: uses the first applicable: RFP over TP over Standard - // In Private Browsing windows: uses the most restrictive between normal and private - // 1=only base system fonts, 2=also fonts from optional language packs, 3=also user-installed fonts - // [1] https://searchfox.org/mozilla-central/search?path=StandardFonts*.inc - // [-] https://bugzilla.mozilla.org/1847599 - // user_pref("layout.css.font-visibility.private", 1); - // user_pref("layout.css.font-visibility.standard", 1); - // user_pref("layout.css.font-visibility.trackingprotection", 1); -// 2623: disable permissions delegation [FF73+] - // Currently applies to cross-origin geolocation, camera, mic and screen-sharing - // permissions, and fullscreen requests. Disabling delegation means any prompts - // for these will show/use their correct 3rd party origin - // [1] https://groups.google.com/forum/#!topic/mozilla.dev.platform/BdFOMAuCGW8/discussion - // [-] https://bugzilla.mozilla.org/1697151 - // user_pref("permissions.delegation.enabled", false); -// FF119 -// 0211: use en-US locale regardless of the system or region locale - // [SETUP-WEB] May break some input methods e.g xim/ibus for CJK languages [1] - // [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=867501,1629630 - // [-] https://bugzilla.mozilla.org/1846224 - // user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF] -// 0711: disable skipping DoH when parental controls are enabled [FF70+] - // [-] https://bugzilla.mozilla.org/1586941 -user_pref("network.dns.skipTRR-when-parental-control-enabled", false); -// FF123 -// 0334: disable PingCentre telemetry (used in several System Add-ons) [FF57+] - // Defense-in-depth: currently covered by 0331 - // [-] https://bugzilla.mozilla.org/1868988 -user_pref("browser.ping-centre.telemetry", false); -// FF126 -// 9003: disable What's New toolbar icon [FF69+] - // [-] https://bugzilla.mozilla.org/1724300 -user_pref("browser.messaging-system.whatsNewPanel.enabled", false); -// ***/ - -/* END: internal custom pref to test for syntax errors ***/ -user_pref("_user.js.parrot", "SUCCESS: No no he's not dead, he's, he's restin'!"); - -//I read the wiki -//https://github.com/arkenfox/user.js/wiki/3.2-Overrides-%5BCommon%5D - -//DNS over HTTPS -//Protects web requests from an ISP -//Please pick a provider you trust. -//Disable if you use PiHole, but tools like pfBlocker work fine. -// Cloudflare (default in US & Canada). -//Quad 9: https://dns.quad9.net/dns-query -user_pref("network.trr.uri", "https://mozilla.cloudflare-dns.com/dns-query"); -user_pref("network.trr.mode", 2); - -//Disable Safe Browsing, this phones home to Google. -user_pref("browser.safebrowsing.malware.enabled", false); -user_pref("browser.safebrowsing.phishing.enabled", false); -user_pref("browser.safebrowsing.downloads.enabled", false); - -// Leave IPv6 enabled -user_pref("network.dns.disableIPv6", false); - -//Reenable search engines -user_pref("keyword.enabled", true); -//Enable Search Engine suggestion -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -// Disk caching, which might improve performance if enabled. -user_pref("browser.cache.disk.enable", false); -//Enable favicons, the icons in bookmarks -user_pref("browser.shell.shortcutFavicons", true); -//Enable Mozilla Container Tabs -//Redundant with Total Cookie Protection, but useful if you have multiple accounts -//with the same provider (e.g. a work Google account and a personal Google account) -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); - -// Strict third party requests, may cause images/video to break. -user_pref("network.http.referer.XOriginPolicy", 2); - -//WebRTC settings, things like video calls - // user_pref("media.peerconnection.enabled", false); -// Disable Media Plugins - // user_pref("media.gmp-provider.enabled", false); -// Disable DRM, FCKDRM - // user_pref("media.gmp-widevinecdm.enabled", false); -user_pref("media.eme.enabled", false); -//Autoplaying settings -//0=Allow all, 1=Block non-muted media (default), 5=Block all - // user_pref("media.autoplay.default", 5); -//If some websites REALLY need autoplaying... -//0=sticky (default), 1=transient, 2=user -user_pref("media.autoplay.blocking_policy", 2); - -//Use Disconnect's blocklist to block ads -user_pref("browser.contentblocking.category", "strict"); - -//Delete cookies on close, but see below to make exceptions -/* 2801: delete cookies and site data on exit - //* 0=keep until they expire (default), 2=keep until you close Firefox - * [NOTE] A "cookie" block permission also controls localStorage/sessionStorage, indexedDB, - * sharedWorkers and serviceWorkers. serviceWorkers require an "Allow" permission - * [SETTING] Privacy & Security>Cookies and Site Data>Delete cookies and site data when Firefox is closed - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("network.cookie.lifetimePolicy", 2); -//Disabling disk cache is better, but try this if you like performance - // user_pref("privacy.clearsitedata.cache.enabled", true); - -//Clear data on shutdown -user_pref("privacy.sanitize.sanitizeOnShutdown", true); -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.clearOnShutdown.cookies", false); - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -// Manual wiping, such as the forget-me-not button -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.passwords", false); // [DEFAULT: false] not listed - // user_pref("privacy.cpd.siteSettings", false); // [DEFAULT: false] -// Delete everything ever. -user_pref("privacy.sanitize.timeSpan", 0); -//Delete history, although might be security theater. -//Helps against forensic tools. -user_pref("places.history.enabled", false); - -//WebGL is a security risk, but sometimes breaks things like 23andMe -//or Google Maps (not always). -user_pref("webgl.disabled", true); - -//Firefox stores passwords in plain text and obsolete if you use a password manager. -//Mozilla also told people to stop using their password manager. -user_pref("signon.rememberSignons", false); -//Disable Pocket, it's proprietary trash -user_pref("extensions.pocket.enabled", false); -// Disable Mozilla account -user_pref("identity.fxaccounts.enabled", false); diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/.parentlock b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/.parentlock deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/AlternateServices.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/AlternateServices.bin deleted file mode 100644 index 66b5263..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/AlternateServices.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/ExperimentStoreData.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/ExperimentStoreData.json deleted file mode 100644 index e06276e..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/ExperimentStoreData.json +++ /dev/null @@ -1 +0,0 @@ -{"csv-import-release-rollout":{"slug":"csv-import-release-rollout","branch":{"slug":"enable-csv-import","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"csvImport":true},"enabled":true,"featureId":"cm-csv-import"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"CSV Import (Release Rollout)","userFacingDescription":"This rollout enables users to import logins from a CSV file from the about:logins page.","lastSeen":"2024-09-01T18:34:46.323Z","featureIds":["cm-csv-import"],"prefs":[{"name":"signon.management.page.fileImport.enabled","branch":"default","featureId":"cm-csv-import","variable":"csvImport","originalValue":true}],"isRollout":true},"upgrade-spotlight-rollout":{"slug":"upgrade-spotlight-rollout","branch":{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":false},"enabled":true,"featureId":"upgradeDialog"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Upgrade Spotlight Rollout","userFacingDescription":"Experimenting on onboarding content when you upgrade Firefox.","lastSeen":"2024-09-01T18:34:46.327Z","featureIds":["upgradeDialog"],"prefs":[],"isRollout":true},"address-autofill-desktop-pref-release-rollout":{"slug":"address-autofill-desktop-pref-release-rollout","branch":{"slug":"enable-address-autofill","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"status":true},"enabled":true,"featureId":"address-autofill-feature"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Address Autofill Desktop ( Pref, Release Rollout )","userFacingDescription":"Enable address autofill feature.","lastSeen":"2024-09-01T18:34:46.330Z","featureIds":["address-autofill-feature"],"prefs":[{"name":"extensions.formautofill.addresses.experiments.enabled","branch":"default","featureId":"address-autofill-feature","variable":"status","originalValue":false}],"isRollout":true},"highlighting-in-pdfs-rollout":{"slug":"highlighting-in-pdfs-rollout","branch":{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"addHighlight":true},"enabled":true,"featureId":"pdfjs"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Highlighting in PDFs - Rollout","userFacingDescription":"Feature to highlight text and other content in PDFs","lastSeen":"2024-09-01T18:34:46.333Z","featureIds":["pdfjs"],"prefs":[{"name":"pdfjs.enableHighlightEditor","branch":"default","featureId":"pdfjs","variable":"addHighlight","originalValue":true}],"isRollout":true},"consolidated-search-configuration-row-desktop-relaunch":{"slug":"consolidated-search-configuration-row-desktop-relaunch","branch":{"slug":"rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"newSearchConfigEnabled":true},"enabled":true,"featureId":"search"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Consolidated Search Configuration (ROW) [Desktop] Relaunch","userFacingDescription":"Consolidated search configuration for desktop and mobile Firefox","lastSeen":"2024-09-01T18:34:46.334Z","featureIds":["search"],"prefs":[{"name":"browser.search.newSearchConfig.enabled","branch":"user","featureId":"search","variable":"newSearchConfigEnabled","originalValue":null}],"isRollout":true},"long-term-holdback-2024-h2-velocity-desktop":{"slug":"long-term-holdback-2024-h2-velocity-desktop","branch":{"slug":"delivery","ratio":19,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{},"enabled":true,"featureId":"no-feature-firefox-desktop"}]},"active":true,"experimentType":"nimbus","source":"rs-loader","userFacingName":"Long term holdback 2024 H2 Velocity Desktop","userFacingDescription":"Long-term holdback for H2 Velocity experiments","lastSeen":"2024-09-01T18:34:46.337Z","featureIds":["no-feature-firefox-desktop"],"prefs":[],"isRollout":false},"disable-redirects-for-authretries":{"slug":"disable-redirects-for-authretries","branch":{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"redirectForAuthRetriesEnabled":false},"enabled":true,"featureId":"networkingAuth"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Disable Redirects for Authretries","userFacingDescription":"Rollback Redirection of the http channel for Authentication retries.","lastSeen":"2024-09-01T18:34:46.340Z","featureIds":["networkingAuth"],"prefs":[{"name":"network.auth.use_redirect_for_retries","branch":"default","featureId":"networkingAuth","variable":"redirectForAuthRetriesEnabled","originalValue":false}],"isRollout":true},"fpp-floating-point-protection-rollout":{"slug":"fpp-floating-point-protection-rollout","branch":{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"fdlibm_math":true},"enabled":true,"featureId":"fingerprintingProtection"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"FPP: Floating Point Protection Rollout (Mac Only)","userFacingDescription":"This is a rollout of FPP Floating Point Value protections on Desktop for Linux and Mac so that floating point values cannot be used as a fingerprinting vector between platforms.","lastSeen":"2024-09-01T18:34:46.341Z","featureIds":["fingerprintingProtection"],"prefs":[{"name":"javascript.options.use_fdlibm_for_sin_cos_tan","branch":"default","featureId":"fingerprintingProtection","variable":"fdlibm_math","originalValue":false}],"isRollout":true},"home-and-newtab-wallpapers-v1-rollout-us-and-ca":{"slug":"home-and-newtab-wallpapers-v1-rollout-us-and-ca","branch":{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"wallpapers":true,"wallpapersV2":true,"regionWeatherConfig":"US, CA","weatherLocationSearch":true},"enabled":true,"featureId":"pocketNewtab"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Home and newtab wallpapers v2 Rollout -- US and CA","userFacingDescription":"Rollout of New Tab wallpaper selection.","lastSeen":"2024-09-01T18:34:46.346Z","featureIds":["pocketNewtab"],"prefs":[{"name":"browser.newtabpage.activity-stream.newtabWallpapers.enabled","branch":"user","featureId":"pocketNewtab","variable":"wallpapers","originalValue":null},{"name":"browser.newtabpage.activity-stream.newtabWallpapers.v2.enabled","branch":"user","featureId":"pocketNewtab","variable":"wallpapersV2","originalValue":null},{"name":"browser.newtabpage.activity-stream.weather.locationSearchEnabled","branch":"user","featureId":"pocketNewtab","variable":"weatherLocationSearch","originalValue":null}],"isRollout":true},"tab-hover-preview-release-rollout":{"slug":"tab-hover-preview-release-rollout","branch":{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"tabPreviewsEnabled":true},"enabled":true,"featureId":"tabPreview"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Tab Hover Preview Release Rollout","userFacingDescription":"Enable Tab Hover Preview.","lastSeen":"2024-09-01T18:34:46.351Z","featureIds":["tabPreview"],"prefs":[{"name":"browser.tabs.hoverPreview.enabled","branch":"default","featureId":"tabPreview","variable":"tabPreviewsEnabled","originalValue":false}],"isRollout":true},"encrypted-client-hello-fallback-mechanism":{"slug":"encrypted-client-hello-fallback-mechanism","branch":{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"insecureFallback":true},"enabled":true,"featureId":"echPrefs"}]},"active":true,"experimentType":"rollout","source":"rs-loader","userFacingName":"Encrypted Client Hello - Fallback Mechanism","userFacingDescription":"This experiment enables a fallback mechanism for Encrypted Client Hello. This feature maximizes compatibility with websites that have misconfigured or unexpected DNS configurations.","lastSeen":"2024-09-01T18:34:46.359Z","featureIds":["echPrefs"],"prefs":[{"name":"network.dns.echconfig.fallback_to_origin_when_all_failed","branch":"default","featureId":"echPrefs","variable":"insecureFallback","originalValue":false}],"isRollout":true}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/SiteSecurityServiceState.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/SiteSecurityServiceState.bin deleted file mode 100644 index 388c932..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/SiteSecurityServiceState.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.discovery_stream.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.discovery_stream.json deleted file mode 100644 index b9be782..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.discovery_stream.json +++ /dev/null @@ -1 +0,0 @@ -{"feeds":{"https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30":{"lastUpdated":1725215686469,"personalized":false,"data":{"settings":{},"recommendations":[{"id":1237673593164797,"url":"https://www.zdnet.com/article/why-the-nsa-advises-you-to-turn-off-your-phone-once-a-week/?utm_source=pocket-newtab-en-us","title":"Why the NSA Advises You to Turn Off Your Phone Once a Week","excerpt":"Powering off your phone regularly, disabling Bluetooth, and using only trusted accessories are just a few of the NSA’s security recommendations. Here’s what else to know.","publisher":"ZDNet","raw_image_src":"https://www.zdnet.com/a/img/resize/153728d5f66ee0fb01cca3dccdf01af11307c9b9/2024/08/26/8f6e1cdd-c037-48f5-a932-e7e1d5f09e66/gettyimages-1977127901.jpg?auto=webp&fit=crop&height=675&width=1200","recommendation_id":"54844477-0bab-4a1b-b00d-2f9cc04e11a6","score":1},{"id":2806006005551800,"url":"https://getpocket.com/explore/item/inside-the-unsolved-murder-of-jfk-s-mistress-mary-pinchot-meyer?utm_source=pocket-newtab-en-us","title":"Inside the Unsolved Murder of JFK’s Mistress Mary Pinchot Meyer","excerpt":"A true crime podcast revisits the mysterious 1964 murder of the Washington, D.C. socialite.","publisher":"Town & Country Magazine","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/47161f47-f9ba-46bc-9172-eaf152256cd9.jpeg","recommendation_id":"d0f2aa71-f4c5-4b75-b652-c535e988dbb3","score":1},{"id":8305955701842621,"url":"https://www.cntraveler.com/story/golden-rules-of-road-trips?utm_source=pocket-newtab-en-us","title":"The Golden Rules of Road Tripping","excerpt":"Veteran road trippers (including a gas station food evangelist) share their savviest tips and tricks.","publisher":"Condé Nast Traveler","raw_image_src":"https://media.cntraveler.com/photos/66d0cab1759c2a9f11040cac/16:9/w_1280,c_limit/GettyImages-1588291549.jpg","recommendation_id":"048badb3-8552-409a-b945-483621fcffdb","score":1},{"id":7740724110986131,"url":"https://daily.jstor.org/the-shrewd-business-logic-of-immigrant-cooks/?utm_source=pocket-newtab-en-us","title":"The Shrewd Business Logic of Immigrant Cooks","excerpt":"Savvy observers, immigrant restaurateurs operate as amateur anthropologists who analyze their potential customers to determine how to best attract them.","publisher":"JStor Daily","raw_image_src":"https://daily.jstor.org/wp-content/uploads/2024/08/the_shrewd_business_logic_of_immigrant_cooks_1050x700.jpg","recommendation_id":"f652a7e8-4276-4313-8f4f-85c8dfc1a1d8","score":1},{"id":385574474559666,"url":"https://www.npr.org/2024/08/30/g-s1-20058/signs-of-codependency-how-to-overcome-unhealthy-relationships?utm_source=pocket-newtab-en-us","title":"How I Broke Free From Codependency — and Learned the Meaning of Loving Relationships","excerpt":"“I thought: if I just helped my friends, colleagues and neighbors, maybe I’d get the connection I craved in love, work and life,” writes journalist Gina Ryder. ","publisher":"NPR","raw_image_src":"https://npr.brightspotcdn.com/dims3/default/strip/false/crop/4500x2531+0+0/resize/1400/quality/100/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2F71%2F71%2Fd2c5dc9248cba5375baa2d277339%2Ffinal-copy-b-wide-a076df3e37ddefc91e27ecaaae796f158b8388af.jpg","recommendation_id":"b3ed0a59-7ea7-4553-8c64-8dc925e02806","score":1},{"id":6353226517752388,"url":"https://www.cnbc.com/2024/08/28/37percent-of-hiring-managers-say-job-hopping-is-a-red-flag-how-to-explain-it.html?utm_source=pocket-newtab-en-us","title":"37% of Hiring Managers Say Job-Hopping Is a Red Flag: ‘Don’t Make Apologies for It,’ Says LinkedIn Career Expert","excerpt":"Job hopping and a lack of direction give hiring managers pause when reading a resume, says LinkedIn. Here’s how to make those work for you. ","publisher":"CNBC","raw_image_src":"https://image.cnbcfm.com/api/v1/image/108024975-1724430221608-gettyimages-1381569694-dsc05823.jpeg?v=1724430524&w=1920&h=1080","recommendation_id":"f26e6e10-8d63-4c5c-a5b2-aeda05f9785b","score":1},{"id":2639946232487271,"url":"https://www.popsci.com/science/why-are-we-ticklish/?utm_source=pocket-newtab-en-us","title":"Why Are We Ticklish?","excerpt":"The science of tickling is full of mysteries, but there are some playful theories.","publisher":"Popular Science","raw_image_src":"https://www.popsci.com/wp-content/uploads/2024/08/tickling-hands.jpg?quality=85","recommendation_id":"f0217821-8028-45dd-9581-3adc75f17b71","score":1},{"id":5331020961960890,"url":"https://www.washingtonpost.com/business/2024/08/30/401k-millionaires-secret/?utm_source=pocket-newtab-en-us","title":"The 401(K) Millionaires Club Hit a New Record. What’s Their Secret?","excerpt":"While this elite group benefited from surging stock prices, their gains are markers of steady investing over time and having the patience to ride out the rough patches.","publisher":"The Washington Post","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/319ba9ad-86f7-42f7-b9d5-a710e005af91.png","recommendation_id":"c2f72737-c17a-42a3-aa10-fd1120ce594f","score":1},{"id":5705530850067820,"url":"https://www.cnn.com/2024/08/30/health/weekend-sleep-lower-heart-disease-risk-wellness/index.html?utm_source=pocket-newtab-en-us","title":" What a Weekend Snooze Could Do for Your Heart Health, According to New Research ","excerpt":"Getting extra sleep on the weekends to compensate for lost rest during the week may benefit your heart health, new research suggests.","publisher":"CNN","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/bbf99e22-d18f-473b-b486-9181ceeafd1d.png","recommendation_id":"66ebfc60-e7ef-4486-a7e9-13d8840edb26","score":1},{"id":8961269824482220,"url":"https://www.newyorker.com/culture/the-front-row/the-giddy-delights-of-1941?utm_source=pocket-newtab-en-us","title":"The Giddy Delights of “1941”","excerpt":"Steven Spielberg gave free rein to his anarchic inner child in this Second World War comedy—and paid the price.","publisher":"The New Yorker","raw_image_src":"https://media.newyorker.com/photos/66d0d25e6fdde2d32f124f4f/16:9/w_1280,c_limit/Brody01-1941.jpg","recommendation_id":"890f05ef-a6cc-49ae-8c70-7ae9034ffd15","score":1},{"id":8017352545460819,"url":"https://www.discovermagazine.com/the-sciences/ancient-romans-were-some-of-the-first-obnoxious-tourists?utm_source=pocket-newtab-en-us","title":"Ancient Romans Were Some of the First Obnoxious Tourists","excerpt":"Archaeologists reveal traces of early tourism. From graffitied buildings to rowdy beach resorts, learn how ancient travelers shaped modern tourism.","publisher":"Discover Magazine","raw_image_src":"https://images.ctfassets.net/cnu0m8re1exe/6s1aSjTwLDrfUYAZrZ27ly/fd770ca5a5ed689ec3b982876eccfca8/shutterstock_2434319603.jpg?fm=jpg&fl=progressive&w=660&h=433&fit=fill","recommendation_id":"f31ab5b8-6140-405d-88c7-f739dc2dea37","score":1},{"id":8585537236724587,"url":"https://hbr.org/2024/08/how-to-craft-a-memorable-message-according-to-science?utm_source=pocket-newtab-en-us","title":"How to Craft a Memorable Message, According to Science","excerpt":"Imagine sitting in a meeting where someone is giving a presentation. You’re somewhat interested in the topic, and the speaker seems to be doing a good job. The meeting ends, and 30 minutes later, you try to recall what was discussed.","publisher":"Harvard Business Review","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/c5b2dedc-0ca3-4240-988a-264ce58b151a.jpeg","recommendation_id":"9ab969a6-6490-463f-9bf2-90a47b29a742","score":1},{"id":2600415718993677,"url":"https://www.bustle.com/wellness/functional-freeze-tiktok?utm_source=pocket-newtab-en-us","title":"Feeling Tired & Stuck? Blame It on “Functional Freeze”","excerpt":"Experts explain “functional freeze” and tips for getting out of it.","publisher":"Bustle","raw_image_src":"https://imgix.bustle.com/uploads/getty/2024/8/28/ded05894/exhausted-young-asian-woman.jpg?w=1200&h=630&fit=crop&crop=faces&fm=jpg","recommendation_id":"45136e3c-cfcf-4b27-9043-288343a4984a","score":1},{"id":3815514097256825,"url":"https://www.context.news/digital-rights/why-is-telegram-in-trouble-with-the-law?utm_source=pocket-newtab-en-us","title":"Why Is Telegram in Trouble With the Law?","excerpt":"Telegram, whose boss Durov was arrested in France, has few moderators and refuses to hand over data but how exactly does it work?","publisher":"Context News","raw_image_src":"https://ddc514qh7t05d.cloudfront.net/dA/1a97132cafbba867ce6c84e92317e107/1200w/Jpeg","recommendation_id":"f509e631-487f-4da0-9bdf-4ec48b832e52","score":1},{"id":3368948738226282,"url":"https://www.theatlantic.com/technology/archive/2024/08/venmo-social-media/679665/?utm_source=pocket-newtab-en-us","title":"The Last Social Network","excerpt":"Venmo has become the best way to see what the people you know are up to.","publisher":"The Atlantic","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/3bd44da5-2c15-49ca-b138-64c654152dc6.jpeg","recommendation_id":"b46de81e-d41c-44b8-996f-e3ae19e4ebd4","score":1},{"id":2718235349382233,"url":"https://www.cnbc.com/2024/08/30/mortgage-rates-are-falling-is-this-the-right-time-to-buy-a-home.html?utm_source=pocket-newtab-en-us","title":"Mortgage Rates Are Falling, Improving Home Buying Conditions. Here’s What to Know Before You Act","excerpt":"Experts give their best advice for navigating the housing market in the months ahead.","publisher":"CNBC","raw_image_src":"https://image.cnbcfm.com/api/v1/image/107418725-1716399817877-gettyimages-1347125095-120_0821_125794.jpeg?v=1721742352&w=1920&h=1080","recommendation_id":"ab954c84-9d06-4558-bb81-3a5b1428a2d9","score":1},{"id":5756898452464831,"url":"https://www.wired.com/story/waymo-is-picking-up-at-phoenix-airport/?utm_source=pocket-newtab-en-us","title":"Waymo Is Picking up at the Airport. That’s a Big Deal","excerpt":"Self-driving cars have started all-day pickups and drop-offs in Phoenix, Arizona. It’s great news for Alphabet’s bottom line, and a step forward for robotaxis.","publisher":"WIRED","raw_image_src":"https://media.wired.com/photos/66ce36f04bed518556513e05/191:100/w_1280,c_limit/Airport-Waymo-transport-1497020112.jpg","recommendation_id":"7cb13068-8df9-4ff1-a557-da8e681b476a","score":1},{"id":341596945613700,"url":"https://time.com/7015189/most-anticipated-tv-shows-fall-2024/?utm_source=pocket-newtab-en-us","title":"The 34 Most Anticipated TV Shows of Fall 2024","excerpt":"Including a bevy of new Ryan Murphy shows, some fond farewells, and new shows from Alfonso Cuarón and Mike Schur.","publisher":"Time","raw_image_src":"https://api.time.com/wp-content/uploads/2024/08/fall-preview-tv-2024.jpg?quality=85&w=1200&h=628&crop=1","recommendation_id":"86453c33-aee5-4d25-b507-975a49db0af0","score":1},{"id":4637722453319065,"url":"https://www.theringer.com/nfl/2024/8/29/24231064/2024-nfl-worst-to-first-candidates-ranking?utm_source=pocket-newtab-en-us","title":"Ranking the NFL’s Worst-to-First Candidates for 2024","excerpt":"It’s inevitable: One team during an NFL season will come out of nowhere and land in first place. Which teams have the best chance to shock the rest of the league, and who is bound to remain at the bottom?","publisher":"The Ringer","raw_image_src":"https://cdn.vox-cdn.com/thumbor/O52keaRsbI7Eb1QiYvY-0KjG-fI=/0x0:1200x628/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25593828/DabbundoWorstToFirst_AP_Ringer.jpg","recommendation_id":"ae8f6c55-a6ef-43ca-995b-58788f1340b0","score":1},{"id":4744553102394205,"url":"https://www.sportico.com/leagues/football/2024/how-nfl-teams-owners-make-money-1234795113/?utm_source=pocket-newtab-en-us","title":"How NFL Teams and Owners Make Their Money","excerpt":"The NFL’s 32 teams generated an estimated $20.5 billion in revenue last year, 70% higher than what NBA and MLB teams made. TV is the driving force.","publisher":"Sportico","raw_image_src":"https://www.sportico.com/wp-content/uploads/2024/08/GettyImages-2168767155-e1724784926728.jpg?w=1024","recommendation_id":"1fee66b0-b352-4fe4-a461-9809f1fae480","score":1},{"id":4951008296652531,"url":"https://apnews.com/article/us-open-swiatek-calendar-811e0deff257faad9a5f55fa82e28c2a?utm_source=pocket-newtab-en-us","title":"Iga Swiatek and Other Tennis Players Say Their Mental and Physical Health Are Ignored","excerpt":"It’s nothing new for tennis players to worry aloud about their sport’s overcrowded calendar, too-tough season and too-short offseason.","publisher":"The Associated Press","raw_image_src":"https://dims.apnews.com/dims4/default/8557ad3/2147483647/strip/true/crop/2000x1125+0+104/resize/1440x810!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fe3%2F68%2Ffa9e59870523584ab445f87e94e1%2Fa9f9577cfbff40cdb282c00f6bd1bc5c","recommendation_id":"d264fe5b-9c76-4302-aaf2-c27bd232c2fc","score":1},{"id":5148614590207024,"url":"https://www.eater.com/24225596/best-zucchini-bread-recipe-ranking?utm_source=pocket-newtab-en-us","title":"Which Zucchini Bread Recipe Makes the Most Out of Summer Abundance?","excerpt":"Zucchini bread is a great way to use up an excess of summer squash, but not all recipes are created equal.","publisher":"Eater","raw_image_src":"https://cdn.vox-cdn.com/thumbor/Xz7DzXyi89bgkdLySKAngF8AmNo=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25583421/lede__1_.png","recommendation_id":"9f1b20ab-a721-4cd4-9a34-cd6751ec58bc","score":1},{"id":1669887505274605,"url":"https://www.usatoday.com/story/life/pets/2024/08/29/what-do-dogs-dream-about/74865197007/?utm_source=pocket-newtab-en-us","title":"Do Dogs Dream? It’s No Surprise – the Answer Is Pretty Cute.","excerpt":"Dogs can dream just like humans can, and while researchers aren’t certain, here’s what they likely picture when they twitch or growl in their sleep.","publisher":"USA Today","raw_image_src":"https://www.usatoday.com/gcdn/-mm-/9e1f6e2ee20f44aa1f3be4f71e9f3e52b6ae2c7e/c=0-110-2121-1303/local/-/media/2021/10/25/USATODAY/usatsports/dogecoin-sleeping-shiba-inu.jpg?width=2121&height=1193&fit=crop&format=pjpg&auto=webp","recommendation_id":"3b28f1dc-c0f5-4f59-9a93-e6cdcdf90358","score":1},{"id":6458913960373998,"url":"https://getpocket.com/collections/how-to-be-more-creative?utm_source=pocket-newtab-en-us","title":"How To Be More Creative","excerpt":"Twenty-one great articles and resources about the art and science of cultivating creativity.","publisher":"Pocket Collections","raw_image_src":"https://s3.amazonaws.com/pocket-curatedcorpusapi-prod-images/822a4805-7f11-4769-b434-22798a3233ac.jpeg","recommendation_id":"b0263acf-5419-4da5-bb7a-6fad9b470c00","score":1},{"id":1025053198112710,"url":"https://www.sfgate.com/sf-culture/article/emergency-burning-man-airlift-service-19731550.php?utm_source=pocket-newtab-en-us","title":"This Emergency Burning Man Service Costs $20, and Thousands Sign up for It","excerpt":"Like any city, Black Rock City has its share of accidents, injuries and even deaths. ","publisher":"SFGate","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/12be72dc-d364-4a39-887f-7fb453d19381.png","recommendation_id":"e11e4df7-231c-46b0-95cc-6324f6e4ef54","score":1},{"id":6140350244852717,"url":"https://www.theatlantic.com/health/archive/2024/08/our-houses-are-fuel-for-fires/679649/?utm_source=pocket-newtab-en-us","title":"The Wildfire Risk in America’s Front Yards","excerpt":"If we really want to keep communities safe, we need to think about where we build, and with what.","publisher":"The Atlantic","raw_image_src":"https://cdn.theatlantic.com/thumbor/vK7P14SS5IpfP3if3pzJ6Prnjkk=/0x61:2876x1559/1200x625/media/img/mt/2024/08/GettyImages_1059684446/original.jpg","recommendation_id":"d855d896-ccc7-4dc3-b475-a2b76a311cbb","score":1},{"id":207858574713052,"url":"https://www.washingtonpost.com/travel/2024/08/29/passport-photos-makeup-security-tiktok/?utm_source=pocket-newtab-en-us","title":"Your ‘Hot’ Passport Photo Could Be a Problem at the Airport","excerpt":"The passport photos are glam — some might say aspirational — and created with a multistep, multi-product process. They also might be a cautionary tale.","publisher":"The Washington Post","raw_image_src":"https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/f88c668b-c07e-4d08-83f5-e4e6c6a38f5e.png","recommendation_id":"65e39884-83f7-490e-a943-f69e05ff75e2","score":1},{"id":6548513307998425,"url":"https://www.theverge.com/24230813/demure-mindful-trademark-uspto-explainer-jools-lebron?utm_source=pocket-newtab-en-us","title":"A Demure and Mindful Trademark Investigation","excerpt":"See how I wrote this legal explainer?","publisher":"The Verge","raw_image_src":"https://cdn.vox-cdn.com/thumbor/ghzs2dc_aNWjDEzhmbN0h9I8u0U=/0x0:2040x1360/1200x628/filters:focal(1020x680:1021x681)/cdn.vox-cdn.com/uploads/chorus_asset/file/25593501/247230_Demure_Mindful_TM_CVirginia_4.jpg","recommendation_id":"3da69809-498d-4525-a7e5-c250cc5f68a2","score":1},{"id":5986195010620404,"url":"https://www.eater.com/24224470/shrimp-corn-calabrian-chile-butter-for-one-recipe?utm_source=pocket-newtab-en-us","title":"A Buttery Corn and Shrimp Dish Ideal for the End of Summer","excerpt":"This dinner for one showcases ingredients that reach peak deliciousness in mere minutes.","publisher":"Eater","raw_image_src":"https://cdn.vox-cdn.com/thumbor/gmn0qDUIO7EvHQabAodf8FB4RPw=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25581236/Lede.png","recommendation_id":"a5c517c8-6921-4c17-8fde-a0828bc677eb","score":1},{"id":6428931032359864,"url":"https://www.npr.org/2024/08/29/nx-s1-5090967/birds-build-nests-tradition-culture-architecture?utm_source=pocket-newtab-en-us","title":"When Birds Build Nests, They’re Also Building a Culture","excerpt":"Nest-building isn’t just instinct. Birds can learn from others, letting groups within one species develop their own distinctive nest-building traditions.","publisher":"NPR","raw_image_src":"https://npr.brightspotcdn.com/dims3/default/strip/false/crop/1698x955+36+0/resize/1400/quality/100/format/png/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fe8%2Fb9%2Fb9aa4cf34256bf30765476f6631b%2Fbird-three.png","recommendation_id":"e0c903c2-83ce-4dd5-afb7-578462e937bb","score":1}],"status":"success"}}},"spocs":{"lastUpdated":1725215686352,"spocs":{"settings":{"feature_flags":{"collections":false,"spoc_v2":true},"spocsPerNewTabs":1,"domainAffinityParameterSets":{"default":{"combinedDomainFactor":0.5,"frequencyFactor":0.5,"itemScoreFactor":1,"multiDomainBoost":0,"perfectCombinedDomainScore":2,"perfectFrequencyVisits":10,"recencyFactor":0.5},"fully-personalized":{"combinedDomainFactor":0.5,"frequencyFactor":0.5,"itemScoreFactor":0.01,"multiDomainBoost":0,"perfectCombinedDomainScore":2,"perfectFrequencyVisits":10,"recencyFactor":0.5},"fully-personalized-domains":{"combinedDomainFactor":0.5,"frequencyFactor":0.5,"itemScoreFactor":0.01,"multiDomainBoost":0,"perfectCombinedDomainScore":10,"perfectFrequencyVisits":1,"recencyFactor":0.5}},"timeSegments":[{"id":"week-1","startTime":432000,"endTime":0,"weightPosition":1},{"id":"week-2","startTime":864000,"endTime":432000,"weightPosition":1},{"id":"week-3","startTime":1296000,"endTime":864000,"weightPosition":1},{"id":"week-4","startTime":1728000,"endTime":1296000,"weightPosition":1},{"id":"week-5","startTime":2160000,"endTime":1728000,"weightPosition":1},{"id":"week-6","startTime":2592000,"endTime":2160000,"weightPosition":1}]},"sponsored-topsites":{"title":"","context":"","items":[]}}},"sov":{}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.personalization.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.personalization.json deleted file mode 100644 index d0c38bd..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.personalization.json +++ /dev/null @@ -1 +0,0 @@ -{"personalization":{"scores":{"interestConfig":{"history_required_fields":["title","description","url","frecency"],"history_limit_secs":2592000,"history_item_builder":[{"function":"nb_tag","fields":["title","description"]},{"function":"copy_value","src":"nb_tags","dest":"tags"},{"function":"make_boolean","field":"tags","threshold":-1},{"function":"allow_fields","fields":["tags"]}],"interest_combiner":[{"function":"combiner_add","field":"tags"}],"interest_finalizer":[{"function":"set_default","field":"tags","value":{}},{"function":"l2_normalize","field":"tags"}],"item_to_rank_builder":[{"function":"nb_tag","fields":["title","excerpt"]},{"function":"copy_value","src":"nb_tags","dest":"item_tags"},{"function":"make_boolean","field":"item_tags","threshold":-1},{"function":"set_default","field":"item_score","value":0},{"function":"set_default","field":"sort_id","value":0},{"function":"copy_value","dest":"item_sort_id","src":"sort_id"},{"function":"scalar_add","field":"item_sort_id","k":1},{"function":"set_default","field":"item_tags","value":{}},{"function":"l2_normalize","field":"item_tags"},{"function":"allow_fields","fields":["id","item_tags","item_score","item_sort_id"]}],"item_ranker":[{"function":"vector_multiply","left":"tags","right":"item_tags","dest":"tag_sim"},{"function":"copy_to_map","src":"tag_sim","dest_key":"tag_sim","dest_map":"final_features"},{"function":"copy_to_map","src":"item_sort_id","dest_key":"item_sort_id","dest_map":"final_features"},{"function":"set_default","field":"coeffs","value":{"tag_sim":1,"item_sort_id":-0.00001}},{"function":"allow_fields","fields":["final_features","coeffs"]},{"function":"vector_multiply","left":"final_features","right":"coeffs","dest":"score"}],"recordKey":"default-interest-config"},"interestVector":{"tags":{"business_and_industrial":0.5773502691896258,"online_communities":0.5773502691896258,"internet_and_telecom":0.5773502691896258}}},"_timestamp":1725216053746}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.weather_feed.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.weather_feed.json deleted file mode 100644 index 89f47d1..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/activity-stream.weather_feed.json +++ /dev/null @@ -1 +0,0 @@ -{"weather":{}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/addonStartup.json.lz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/addonStartup.json.lz4 deleted file mode 100644 index ee9d8b6..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/addonStartup.json.lz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/addons.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/addons.json deleted file mode 100644 index 203de05..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/addons.json +++ /dev/null @@ -1 +0,0 @@ -{"schema":6,"addons":[]} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/bookmarkbackups/bookmarks-2024-09-01_11_ycPkV1AOFAclO0pDkCXO4odH0k_0iiSVn1IhTUv6pfI=.jsonlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/bookmarkbackups/bookmarks-2024-09-01_11_ycPkV1AOFAclO0pDkCXO4odH0k_0iiSVn1IhTUv6pfI=.jsonlz4 deleted file mode 100644 index e8e1342..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/bookmarkbackups/bookmarks-2024-09-01_11_ycPkV1AOFAclO0pDkCXO4odH0k_0iiSVn1IhTUv6pfI=.jsonlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/bounce-tracking-protection.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/bounce-tracking-protection.sqlite deleted file mode 100644 index 35086b7..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/bounce-tracking-protection.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/broadcast-listeners.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/broadcast-listeners.json deleted file mode 100644 index 771d13f..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/broadcast-listeners.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1725202629204\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.sys.mjs","symbolName":"remoteSettingsBroadcastHandler"}}}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/doomed/1034473119 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/doomed/1034473119 deleted file mode 100644 index 985078c..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/doomed/1034473119 +++ /dev/null @@ -1,1681 +0,0 @@ - - - - - - - - - - - - - - - - - - -
- -
- - - - - -window.__FROM_STARTUP_CACHE__ = true; -window.__STARTUP_STATE__ = { - "TopSites": { - "initialized": true, - "rows": [ - { - "isDefault": true, - "url": "https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm", - "hostname": "amazon", - "sendAttributionRequest": false, - "label": "Amazon", - "show_sponsored_label": true, - "sponsored_position": 1, - "sponsored_click_url": "https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr", - "sponsored_tile_id": 74357, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "expedia", - "sendAttributionRequest": false, - "label": "Expedia", - "show_sponsored_label": true, - "sponsored_position": 2, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy", - "sponsored_tile_id": 74925, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "ca.hotels", - "sendAttributionRequest": false, - "label": "Hotels.com", - "show_sponsored_label": true, - "sponsored_position": 3, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm", - "sponsored_tile_id": 74038, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.youtube.com/", - "hostname": "youtube", - "sendAttributionRequest": false, - "label": "YouTube", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/youtube-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/youtube-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.facebook.com/", - "hostname": "facebook", - "sendAttributionRequest": false, - "label": "Facebook", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/facebook-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/facebook-com.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.reddit.com/", - "hostname": "reddit", - "sendAttributionRequest": false, - "label": "Reddit", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/reddit-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/reddit-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.wikipedia.org/", - "hostname": "wikipedia", - "sendAttributionRequest": false, - "label": "Wikipedia", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://twitter.com/", - "hostname": "twitter", - "sendAttributionRequest": false, - "label": "Twitter", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/twitter-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/twitter-com.ico", - "typedBonus": true - } - ], - "editForm": null, - "showSearchShortcutsForm": false, - "searchShortcuts": [ - { - "keyword": "@google", - "shortURL": "google", - "url": "https://google.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/google-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/google-com.ico" - }, - { - "keyword": "@bing", - "shortURL": "bing", - "url": "https://bing.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/bing-com@2x.svg", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/bing-com.ico" - }, - { - "keyword": "@duckduckgo", - "shortURL": "duckduckgo", - "url": "https://duckduckgo.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/duckduckgo-com@2x.svg", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/duckduckgo-com.ico" - }, - { - "keyword": "@ebay", - "shortURL": "ebay", - "url": "https://ebay.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/ebay@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/ebay.ico" - }, - { - "keyword": "@wikipedia", - "shortURL": "wikipedia", - "url": "https://wikipedia.org", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico" - } - ], - "sov": { - "ready": true, - "positions": [ - { - "position": 1, - "assignedPartner": "amp" - }, - { - "position": 2, - "assignedPartner": "amp" - }, - { - "position": 3, - "assignedPartner": "amp" - } - ] - }, - "pref": { - "collapsed": false - } - }, - "App": { - "initialized": true, - "locale": "en-CA", - "isForStartupCache": true, - "customizeMenuVisible": false, - "links": [ - { - "isDefault": true, - "url": "https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm", - "hostname": "amazon", - "sendAttributionRequest": false, - "label": "Amazon", - "show_sponsored_label": true, - "sponsored_position": 1, - "sponsored_click_url": "https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr", - "sponsored_tile_id": 74357, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "expedia", - "sendAttributionRequest": false, - "label": "Expedia", - "show_sponsored_label": true, - "sponsored_position": 2, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy", - "sponsored_tile_id": 74925, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "ca.hotels", - "sendAttributionRequest": false, - "label": "Hotels.com", - "show_sponsored_label": true, - "sponsored_position": 3, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm", - "sponsored_tile_id": 74038, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.youtube.com/", - "hostname": "youtube", - "sendAttributionRequest": false, - "label": "YouTube", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/youtube-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/youtube-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.facebook.com/", - "hostname": "facebook", - "sendAttributionRequest": false, - "label": "Facebook", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/facebook-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/facebook-com.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.reddit.com/", - "hostname": "reddit", - "sendAttributionRequest": false, - "label": "Reddit", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/reddit-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/reddit-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.wikipedia.org/", - "hostname": "wikipedia", - "sendAttributionRequest": false, - "label": "Wikipedia", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://twitter.com/", - "hostname": "twitter", - "sendAttributionRequest": false, - "label": "Twitter", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/twitter-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/twitter-com.ico", - "typedBonus": true - } - ], - "pref": { - "collapsed": false - } - }, - "Prefs": { - "initialized": true, - "values": { - "default.sites": "https://www.youtube.com/,https://www.facebook.com/,https://www.reddit.com/,https://www.wikipedia.org/,https://www.amazon.ca/,https://twitter.com/", - "feeds.section.topstories.options": "{\"api_key_pref\":\"extensions.pocket.oAuthConsumerKey\",\"hidden\":false,\"provider_icon\":\"chrome://global/skin/icons/pocket.svg\",\"provider_name\":\"Pocket\",\"read_more_endpoint\":\"https://getpocket.com/explore/trending?src=fx_new_tab\",\"stories_endpoint\":\"https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=$apiKey&locale_lang=en-CA&feed_variant=default_spocs_on\",\"stories_referrer\":\"https://getpocket.com/recommendations\",\"topics_endpoint\":\"https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=en-CA\",\"show_spocs\":true}", - "feeds.topsites": true, - "hideTopSitesTitle": false, - "showSponsored": true, - "system.showSponsored": true, - "showSponsoredTopSites": true, - "system.showWeather": false, - "showWeather": true, - "weather.query": "", - "weather.locationSearchEnabled": true, - "weather.temperatureUnits": "c", - "weather.display": "simple", - "pocketCta": "{\"cta_button\":\"\",\"cta_text\":\"\",\"cta_url\":\"\",\"use_cta\":false}", - "showSearch": true, - "topSitesRows": 1, - "telemetry": true, - "telemetry.ut.events": false, - "telemetry.structuredIngestion.endpoint": "https://incoming.telemetry.mozilla.org/submit", - "section.highlights.includeVisited": true, - "section.highlights.includeBookmarks": true, - "section.highlights.includePocket": true, - "section.highlights.includeDownloads": true, - "section.highlights.rows": 1, - "section.topstories.rows": 1, - "sectionOrder": "topsites,topstories,highlights", - "newtabWallpapers.enabled": true, - "newtabWallpapers.v2.enabled": true, - "newtabWallpapers.highlightEnabled": false, - "newtabWallpapers.highlightDismissed": false, - "newtabWallpapers.highlightSeenCounter": 0, - "newtabWallpapers.highlightHeaderText": "", - "newtabWallpapers.highlightContentText": "", - "newtabWallpapers.highlightCtaText": "", - "newtabWallpapers.wallpaper-light": "", - "newtabWallpapers.wallpaper-dark": "", - "newtabWallpapers.wallpaper": "", - "improvesearch.noDefaultSearchTile": true, - "improvesearch.topSiteSearchShortcuts.searchEngines": "google", - "improvesearch.topSiteSearchShortcuts.havePinned": "", - "asrouter.devtoolsEnabled": false, - "discoverystream.flight.blocks": "{}", - "discoverystream.config": "{\"api_key_pref\":\"extensions.pocket.oAuthConsumerKey\",\"collapsible\":true,\"enabled\":true}", - "discoverystream.endpoints": "https://getpocket.cdn.mozilla.net/,https://firefox-api-proxy.cdn.mozilla.net/,https://spocs.getpocket.com/,https://merino.services.mozilla.com/", - "discoverystream.isCollectionDismissible": true, - "discoverystream.onboardingExperience.dismissed": false, - "discoverystream.thumbsUpDown.enabled": false, - "discoverystream.thumbsUpDown.searchTopsitesCompact": false, - "discoverystream.region-basic-layout": false, - "discoverystream.spoc.impressions": "{}", - "discoverystream.endpointSpocsClear": "https://spocs.getpocket.com/user", - "discoverystream.rec.impressions": "{}", - "discoverystream.topicSelection.enabled": false, - "showRecentSaves": true, - "feeds.aboutpreferences": true, - "feeds.newtabinit": true, - "feeds.places": true, - "feeds.prefs": true, - "feeds.sections": true, - "feeds.section.highlights": false, - "feeds.system.topstories": true, - "feeds.systemtick": true, - "feeds.telemetry": true, - "feeds.favicon": true, - "feeds.system.topsites": true, - "feeds.recommendationprovider": true, - "feeds.discoverystreamfeed": true, - "feeds.wallpaperfeed": true, - "feeds.weatherfeed": true, - "isPrivateBrowsingEnabled": true, - "platform": "macosx", - "fxa_endpoint": "https://accounts.firefox.com/", - "appUpdateChannel": "release", - "improvesearch.topSiteSearchShortcuts": true, - "mayHaveSponsoredTopSites": true, - "improvesearch.handoffToAwesomebar": true, - "featureConfig": { - "customizationMenuEnabled": null, - "topSitesContileEnabled": true - }, - "pocketConfig": { - "spocPositions": "1,5,7,11,18,20", - "spocTopsitesPositions": "2", - "contileTopsitesPositions": "0,1,2", - "spocAdTypes": "", - "spocZoneIds": "", - "spocTopsitesAdTypes": "", - "spocTopsitesZoneIds": "", - "spocTopsitesPlacementEnabled": true, - "spocSiteId": "", - "widgetPositions": "", - "hybridLayout": false, - "hideCardBackground": false, - "fourCardLayout": false, - "newFooterSection": false, - "saveToPocketCard": true, - "saveToPocketCardRegions": "", - "hideDescriptions": false, - "hideDescriptionsRegions": "", - "compactGrid": false, - "compactImages": false, - "imageGradient": false, - "titleLines": 3, - "descLines": 3, - "onboardingExperience": false, - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "recentSavesEnabled": false, - "readTime": true, - "newSponsoredLabel": false, - "sendToPocket": true, - "recsPersonalized": false, - "spocsPersonalized": true, - "topicSelectionEnabled": false, - "spocsCacheTimeout": null, - "ctaButtonSponsors": "", - "ctaButtonVariant": "", - "spocMessageVariant": "", - "regionStoriesConfig": "US,DE,CA,GB,IE,CH,AT,BE,IN,FR,IT,ES", - "regionBffConfig": "US,DE,CA,GB,IE,CH,AT,BE,IN,FR,IT,ES", - "merinoProviderEnabled": false, - "merinoProviderEndpoint": "merino.services.mozilla.com", - "regionStoriesBlock": "", - "localeListConfig": "", - "regionSpocsConfig": "US,CA,DE,GB,FR,IT,ES", - "regionWeatherConfig": "US, CA", - "localeWeatherConfig": "en-US,en-GB,en-CA", - "topSitesContileSovEnabled": true, - "pocketFeedParameters": "", - "wallpapers": true, - "wallpapersV2": true, - "weatherLocationSearch": true - }, - "logowordmark.alwaysVisible": true, - "feeds.section.topstories": true, - "discoverystream.enabled": true, - "discoverystream.sponsored-collections.enabled": false, - "discoverystream.hardcoded-basic-layout": false, - "discoverystream.personalization.enabled": true, - "discoverystream.personalization.override": false, - "discoverystream.personalization.modelKeys": "nb_model_arts_and_entertainment, nb_model_autos_and_vehicles, nb_model_beauty_and_fitness, nb_model_blogging_resources_and_services, nb_model_books_and_literature, nb_model_business_and_industrial, nb_model_computers_and_electronics, nb_model_finance, nb_model_food_and_drink, nb_model_games, nb_model_health, nb_model_hobbies_and_leisure, nb_model_home_and_garden, nb_model_internet_and_telecom, nb_model_jobs_and_education, nb_model_law_and_government, nb_model_online_communities, nb_model_people_and_society, nb_model_pets_and_animals, nb_model_real_estate, nb_model_reference, nb_model_science, nb_model_shopping, nb_model_sports, nb_model_travel", - "discoverystream.spocs-endpoint": "", - "discoverystream.spocs-endpoint-query": "", - "newNewtabExperience.colors": "#0090ED,#FF4F5F,#2AC3A2,#FF7139,#A172FF,#FFA437,#FF2A8A", - "region": "CA" - } - }, - "Dialog": { - "visible": false, - "data": {} - }, - "Sections": [ - { - "title": { - "id": "newtab-section-header-stories" - }, - "rows": [], - "enabled": true, - "id": "topstories", - "pref": { - "titleString": { - "id": "home-prefs-recommended-by-header-generic" - }, - "descString": { - "id": "home-prefs-recommended-by-description-generic" - }, - "nestedPrefs": [ - { - "name": "showSponsored", - "titleString": "home-prefs-recommended-by-option-sponsored-stories", - "icon": "icon-info", - "eventSource": "POCKET_SPOCS" - } - ], - "learnMore": { - "link": { - "href": "https://getpocket.com/firefox/new_tab_learn_more", - "id": "home-prefs-recommended-by-learn-more" - } - }, - "collapsed": false, - "feed": "feeds.section.topstories" - }, - "shouldHidePref": false, - "eventSource": "TOP_STORIES", - "icon": "chrome://global/skin/icons/pocket.svg", - "learnMore": { - "link": { - "href": "https://getpocket.com/firefox/new_tab_learn_more", - "message": { - "id": "newtab-pocket-learn-more" - } - } - }, - "compactCards": false, - "rowsPref": "section.topstories.rows", - "maxRows": 4, - "availableLinkMenuOptions": [ - "CheckBookmarkOrArchive", - "CheckSavedToPocket", - "Separator", - "OpenInNewWindow", - "OpenInPrivateWindow", - "Separator", - "BlockUrl" - ], - "emptyState": { - "message": { - "id": "newtab-empty-section-topstories-generic" - }, - "icon": "check" - }, - "shouldSendImpressionStats": true, - "dedupeFrom": [ - "highlights" - ], - "options": { - "api_key_pref": "extensions.pocket.oAuthConsumerKey", - "hidden": false, - "provider_icon": "chrome://global/skin/icons/pocket.svg", - "provider_name": "Pocket", - "read_more_endpoint": "https://getpocket.com/explore/trending?src=fx_new_tab", - "stories_endpoint": "https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=$apiKey&locale_lang=en-CA&feed_variant=default_spocs_on", - "stories_referrer": "https://getpocket.com/recommendations", - "topics_endpoint": "https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=en-CA", - "show_spocs": true - }, - "contextMenuOptions": [ - "CheckBookmarkOrArchive", - "CheckSavedToPocket", - "Separator", - "OpenInNewWindow", - "OpenInPrivateWindow", - "Separator", - "BlockUrl" - ], - "initialized": false, - "dedupeConfigurations": [ - { - "id": "topstories", - "dedupeFrom": [ - "highlights" - ] - } - ] - }, - { - "title": { - "id": "newtab-section-header-recent-activity" - }, - "rows": [], - "enabled": false, - "id": "highlights", - "pref": { - "titleString": { - "id": "home-prefs-recent-activity-header" - }, - "descString": { - "id": "home-prefs-recent-activity-description" - }, - "nestedPrefs": [ - { - "name": "section.highlights.includeVisited", - "titleString": "home-prefs-highlights-option-visited-pages" - }, - { - "name": "section.highlights.includeBookmarks", - "titleString": "home-prefs-highlights-options-bookmarks" - }, - { - "name": "section.highlights.includeDownloads", - "titleString": "home-prefs-highlights-option-most-recent-download" - }, - { - "name": "section.highlights.includePocket", - "titleString": "home-prefs-highlights-option-saved-to-pocket", - "hidden": false - } - ], - "collapsed": false, - "feed": "feeds.section.highlights" - }, - "shouldHidePref": false, - "eventSource": "HIGHLIGHTS", - "icon": "chrome://global/skin/icons/highlights.svg", - "compactCards": true, - "rowsPref": "section.highlights.rows", - "maxRows": 4, - "emptyState": { - "message": { - "id": "newtab-empty-section-highlights" - }, - "icon": "chrome://global/skin/icons/highlights.svg" - }, - "shouldSendImpressionStats": false, - "options": {}, - "initialized": false - } - ], - "Notifications": { - "showNotifications": false, - "toastCounter": 0, - "toastId": "", - "toastQueue": [] - }, - "Pocket": { - "isUserLoggedIn": null, - "pocketCta": {}, - "waitingForSpoc": true - }, - "Personalization": { - "lastUpdated": null, - "initialized": false - }, - "DiscoveryStream": { - "config": { - "api_key_pref": "extensions.pocket.oAuthConsumerKey", - "collapsible": true, - "enabled": true - }, - "layout": [ - { - "width": 12, - "components": [ - { - "type": "TopSites", - "header": { - "title": { - "id": "newtab-section-header-topsites" - } - }, - "placement": { - "name": "sponsored-topsites", - "ad_types": [ - 3120 - ], - "zone_ids": [ - 280143 - ] - }, - "spocs": { - "probability": 1, - "prefs": [ - "showSponsoredTopSites" - ], - "positions": [ - { - "index": 2 - } - ] - }, - "properties": {} - }, - { - "type": "Message", - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "header": { - "title": { - "id": "newtab-section-header-stories" - }, - "subtitle": "", - "link_text": { - "id": "newtab-pocket-learn-more" - }, - "link_url": "https://getpocket.com/firefox/new_tab_learn_more", - "icon": "chrome://global/skin/icons/pocket.svg" - }, - "properties": { - "spocMessageVariant": "" - }, - "styles": { - ".ds-message": "margin-bottom: -20px" - } - }, - { - "type": "CardGrid", - "properties": { - "items": 21, - "hybridLayout": false, - "hideCardBackground": false, - "fourCardLayout": false, - "compactGrid": false, - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "onboardingExperience": false, - "ctaButtonSponsors": [ - "" - ], - "ctaButtonVariant": "", - "spocMessageVariant": "" - }, - "widgets": { - "positions": [], - "data": [ - { - "type": "TopicsWidget" - } - ] - }, - "cta_variant": "link", - "header": { - "title": "" - }, - "placement": { - "name": "spocs", - "ad_types": [ - 3617 - ], - "zone_ids": [ - 217758, - 217995 - ] - }, - "feed": { - "embed_reference": null, - "url": "https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30" - }, - "spocs": { - "probability": 1, - "positions": [ - { - "index": 1 - }, - { - "index": 5 - }, - { - "index": 7 - }, - { - "index": 11 - }, - { - "index": 18 - }, - { - "index": 20 - } - ] - } - }, - { - "type": "Navigation", - "newFooterSection": false, - "properties": { - "alignment": "left-align", - "links": [ - { - "name": "Self improvement", - "url": "https://getpocket.com/explore/self-improvement?utm_source=pocket-newtab" - }, - { - "name": "Food", - "url": "https://getpocket.com/explore/food?utm_source=pocket-newtab" - }, - { - "name": "Entertainment", - "url": "https://getpocket.com/explore/entertainment?utm_source=pocket-newtab" - }, - { - "name": "Health & fitness", - "url": "https://getpocket.com/explore/health?utm_source=pocket-newtab" - }, - { - "name": "Science", - "url": "https://getpocket.com/explore/science?utm_source=pocket-newtab" - }, - { - "name": "More recommendations ›", - "url": "https://getpocket.com/explore?utm_source=pocket-newtab" - } - ], - "extraLinks": [ - { - "name": "Career", - "url": "https://getpocket.com/explore/career?utm_source=pocket-newtab" - }, - { - "name": "Technology", - "url": "https://getpocket.com/explore/technology?utm_source=pocket-newtab" - } - ], - "privacyNoticeURL": { - "url": "https://www.mozilla.org/privacy/firefox/#recommend-relevant-content", - "title": { - "id": "newtab-section-menu-privacy-notice" - } - } - }, - "header": { - "title": { - "id": "newtab-pocket-read-more" - } - }, - "styles": { - ".ds-navigation": "margin-top: -10px;" - } - } - ] - } - ], - "isPrivacyInfoModalVisible": false, - "isCollectionDismissible": true, - "feeds": { - "data": { - "https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30": { - "lastUpdated": 1725215686469, - "personalized": false, - "data": { - "settings": {}, - "recommendations": [ - { - "id": 1237673593164797, - "url": "https://www.zdnet.com/article/why-the-nsa-advises-you-to-turn-off-your-phone-once-a-week/?utm_source=pocket-newtab-en-us", - "title": "Why the NSA Advises You to Turn Off Your Phone Once a Week", - "excerpt": "Powering off your phone regularly, disabling Bluetooth, and using only trusted accessories are just a few of the NSA’s security recommendations. Here’s what else to know.", - "publisher": "ZDNet", - "raw_image_src": "https://www.zdnet.com/a/img/resize/153728d5f66ee0fb01cca3dccdf01af11307c9b9/2024/08/26/8f6e1cdd-c037-48f5-a932-e7e1d5f09e66/gettyimages-1977127901.jpg?auto=webp&fit=crop&height=675&width=1200", - "recommendation_id": "54844477-0bab-4a1b-b00d-2f9cc04e11a6", - "score": 1 - }, - { - "id": 2806006005551800, - "url": "https://getpocket.com/explore/item/inside-the-unsolved-murder-of-jfk-s-mistress-mary-pinchot-meyer?utm_source=pocket-newtab-en-us", - "title": "Inside the Unsolved Murder of JFK’s Mistress Mary Pinchot Meyer", - "excerpt": "A true crime podcast revisits the mysterious 1964 murder of the Washington, D.C. socialite.", - "publisher": "Town & Country Magazine", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/47161f47-f9ba-46bc-9172-eaf152256cd9.jpeg", - "recommendation_id": "d0f2aa71-f4c5-4b75-b652-c535e988dbb3", - "score": 1 - }, - { - "id": 8305955701842621, - "url": "https://www.cntraveler.com/story/golden-rules-of-road-trips?utm_source=pocket-newtab-en-us", - "title": "The Golden Rules of Road Tripping", - "excerpt": "Veteran road trippers (including a gas station food evangelist) share their savviest tips and tricks.", - "publisher": "Condé Nast Traveler", - "raw_image_src": "https://media.cntraveler.com/photos/66d0cab1759c2a9f11040cac/16:9/w_1280,c_limit/GettyImages-1588291549.jpg", - "recommendation_id": "048badb3-8552-409a-b945-483621fcffdb", - "score": 1 - }, - { - "id": 7740724110986131, - "url": "https://daily.jstor.org/the-shrewd-business-logic-of-immigrant-cooks/?utm_source=pocket-newtab-en-us", - "title": "The Shrewd Business Logic of Immigrant Cooks", - "excerpt": "Savvy observers, immigrant restaurateurs operate as amateur anthropologists who analyze their potential customers to determine how to best attract them.", - "publisher": "JStor Daily", - "raw_image_src": "https://daily.jstor.org/wp-content/uploads/2024/08/the_shrewd_business_logic_of_immigrant_cooks_1050x700.jpg", - "recommendation_id": "f652a7e8-4276-4313-8f4f-85c8dfc1a1d8", - "score": 1 - }, - { - "id": 385574474559666, - "url": "https://www.npr.org/2024/08/30/g-s1-20058/signs-of-codependency-how-to-overcome-unhealthy-relationships?utm_source=pocket-newtab-en-us", - "title": "How I Broke Free From Codependency — and Learned the Meaning of Loving Relationships", - "excerpt": "“I thought: if I just helped my friends, colleagues and neighbors, maybe I’d get the connection I craved in love, work and life,” writes journalist Gina Ryder. ", - "publisher": "NPR", - "raw_image_src": "https://npr.brightspotcdn.com/dims3/default/strip/false/crop/4500x2531+0+0/resize/1400/quality/100/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2F71%2F71%2Fd2c5dc9248cba5375baa2d277339%2Ffinal-copy-b-wide-a076df3e37ddefc91e27ecaaae796f158b8388af.jpg", - "recommendation_id": "b3ed0a59-7ea7-4553-8c64-8dc925e02806", - "score": 1 - }, - { - "id": 6353226517752388, - "url": "https://www.cnbc.com/2024/08/28/37percent-of-hiring-managers-say-job-hopping-is-a-red-flag-how-to-explain-it.html?utm_source=pocket-newtab-en-us", - "title": "37% of Hiring Managers Say Job-Hopping Is a Red Flag: ‘Don’t Make Apologies for It,’ Says LinkedIn Career Expert", - "excerpt": "Job hopping and a lack of direction give hiring managers pause when reading a resume, says LinkedIn. Here’s how to make those work for you. ", - "publisher": "CNBC", - "raw_image_src": "https://image.cnbcfm.com/api/v1/image/108024975-1724430221608-gettyimages-1381569694-dsc05823.jpeg?v=1724430524&w=1920&h=1080", - "recommendation_id": "f26e6e10-8d63-4c5c-a5b2-aeda05f9785b", - "score": 1 - }, - { - "id": 2639946232487271, - "url": "https://www.popsci.com/science/why-are-we-ticklish/?utm_source=pocket-newtab-en-us", - "title": "Why Are We Ticklish?", - "excerpt": "The science of tickling is full of mysteries, but there are some playful theories.", - "publisher": "Popular Science", - "raw_image_src": "https://www.popsci.com/wp-content/uploads/2024/08/tickling-hands.jpg?quality=85", - "recommendation_id": "f0217821-8028-45dd-9581-3adc75f17b71", - "score": 1 - }, - { - "id": 5331020961960890, - "url": "https://www.washingtonpost.com/business/2024/08/30/401k-millionaires-secret/?utm_source=pocket-newtab-en-us", - "title": "The 401(K) Millionaires Club Hit a New Record. What’s Their Secret?", - "excerpt": "While this elite group benefited from surging stock prices, their gains are markers of steady investing over time and having the patience to ride out the rough patches.", - "publisher": "The Washington Post", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/319ba9ad-86f7-42f7-b9d5-a710e005af91.png", - "recommendation_id": "c2f72737-c17a-42a3-aa10-fd1120ce594f", - "score": 1 - }, - { - "id": 5705530850067820, - "url": "https://www.cnn.com/2024/08/30/health/weekend-sleep-lower-heart-disease-risk-wellness/index.html?utm_source=pocket-newtab-en-us", - "title": " What a Weekend Snooze Could Do for Your Heart Health, According to New Research ", - "excerpt": "Getting extra sleep on the weekends to compensate for lost rest during the week may benefit your heart health, new research suggests.", - "publisher": "CNN", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/bbf99e22-d18f-473b-b486-9181ceeafd1d.png", - "recommendation_id": "66ebfc60-e7ef-4486-a7e9-13d8840edb26", - "score": 1 - }, - { - "id": 8961269824482220, - "url": "https://www.newyorker.com/culture/the-front-row/the-giddy-delights-of-1941?utm_source=pocket-newtab-en-us", - "title": "The Giddy Delights of “1941”", - "excerpt": "Steven Spielberg gave free rein to his anarchic inner child in this Second World War comedy—and paid the price.", - "publisher": "The New Yorker", - "raw_image_src": "https://media.newyorker.com/photos/66d0d25e6fdde2d32f124f4f/16:9/w_1280,c_limit/Brody01-1941.jpg", - "recommendation_id": "890f05ef-a6cc-49ae-8c70-7ae9034ffd15", - "score": 1 - }, - { - "id": 8017352545460819, - "url": "https://www.discovermagazine.com/the-sciences/ancient-romans-were-some-of-the-first-obnoxious-tourists?utm_source=pocket-newtab-en-us", - "title": "Ancient Romans Were Some of the First Obnoxious Tourists", - "excerpt": "Archaeologists reveal traces of early tourism. From graffitied buildings to rowdy beach resorts, learn how ancient travelers shaped modern tourism.", - "publisher": "Discover Magazine", - "raw_image_src": "https://images.ctfassets.net/cnu0m8re1exe/6s1aSjTwLDrfUYAZrZ27ly/fd770ca5a5ed689ec3b982876eccfca8/shutterstock_2434319603.jpg?fm=jpg&fl=progressive&w=660&h=433&fit=fill", - "recommendation_id": "f31ab5b8-6140-405d-88c7-f739dc2dea37", - "score": 1 - }, - { - "id": 8585537236724587, - "url": "https://hbr.org/2024/08/how-to-craft-a-memorable-message-according-to-science?utm_source=pocket-newtab-en-us", - "title": "How to Craft a Memorable Message, According to Science", - "excerpt": "Imagine sitting in a meeting where someone is giving a presentation. You’re somewhat interested in the topic, and the speaker seems to be doing a good job. The meeting ends, and 30 minutes later, you try to recall what was discussed.", - "publisher": "Harvard Business Review", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/c5b2dedc-0ca3-4240-988a-264ce58b151a.jpeg", - "recommendation_id": "9ab969a6-6490-463f-9bf2-90a47b29a742", - "score": 1 - }, - { - "id": 2600415718993677, - "url": "https://www.bustle.com/wellness/functional-freeze-tiktok?utm_source=pocket-newtab-en-us", - "title": "Feeling Tired & Stuck? Blame It on “Functional Freeze”", - "excerpt": "Experts explain “functional freeze” and tips for getting out of it.", - "publisher": "Bustle", - "raw_image_src": "https://imgix.bustle.com/uploads/getty/2024/8/28/ded05894/exhausted-young-asian-woman.jpg?w=1200&h=630&fit=crop&crop=faces&fm=jpg", - "recommendation_id": "45136e3c-cfcf-4b27-9043-288343a4984a", - "score": 1 - }, - { - "id": 3815514097256825, - "url": "https://www.context.news/digital-rights/why-is-telegram-in-trouble-with-the-law?utm_source=pocket-newtab-en-us", - "title": "Why Is Telegram in Trouble With the Law?", - "excerpt": "Telegram, whose boss Durov was arrested in France, has few moderators and refuses to hand over data but how exactly does it work?", - "publisher": "Context News", - "raw_image_src": "https://ddc514qh7t05d.cloudfront.net/dA/1a97132cafbba867ce6c84e92317e107/1200w/Jpeg", - "recommendation_id": "f509e631-487f-4da0-9bdf-4ec48b832e52", - "score": 1 - }, - { - "id": 3368948738226282, - "url": "https://www.theatlantic.com/technology/archive/2024/08/venmo-social-media/679665/?utm_source=pocket-newtab-en-us", - "title": "The Last Social Network", - "excerpt": "Venmo has become the best way to see what the people you know are up to.", - "publisher": "The Atlantic", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/3bd44da5-2c15-49ca-b138-64c654152dc6.jpeg", - "recommendation_id": "b46de81e-d41c-44b8-996f-e3ae19e4ebd4", - "score": 1 - }, - { - "id": 2718235349382233, - "url": "https://www.cnbc.com/2024/08/30/mortgage-rates-are-falling-is-this-the-right-time-to-buy-a-home.html?utm_source=pocket-newtab-en-us", - "title": "Mortgage Rates Are Falling, Improving Home Buying Conditions. Here’s What to Know Before You Act", - "excerpt": "Experts give their best advice for navigating the housing market in the months ahead.", - "publisher": "CNBC", - "raw_image_src": "https://image.cnbcfm.com/api/v1/image/107418725-1716399817877-gettyimages-1347125095-120_0821_125794.jpeg?v=1721742352&w=1920&h=1080", - "recommendation_id": "ab954c84-9d06-4558-bb81-3a5b1428a2d9", - "score": 1 - }, - { - "id": 5756898452464831, - "url": "https://www.wired.com/story/waymo-is-picking-up-at-phoenix-airport/?utm_source=pocket-newtab-en-us", - "title": "Waymo Is Picking up at the Airport. That’s a Big Deal", - "excerpt": "Self-driving cars have started all-day pickups and drop-offs in Phoenix, Arizona. It’s great news for Alphabet’s bottom line, and a step forward for robotaxis.", - "publisher": "WIRED", - "raw_image_src": "https://media.wired.com/photos/66ce36f04bed518556513e05/191:100/w_1280,c_limit/Airport-Waymo-transport-1497020112.jpg", - "recommendation_id": "7cb13068-8df9-4ff1-a557-da8e681b476a", - "score": 1 - }, - { - "id": 341596945613700, - "url": "https://time.com/7015189/most-anticipated-tv-shows-fall-2024/?utm_source=pocket-newtab-en-us", - "title": "The 34 Most Anticipated TV Shows of Fall 2024", - "excerpt": "Including a bevy of new Ryan Murphy shows, some fond farewells, and new shows from Alfonso Cuarón and Mike Schur.", - "publisher": "Time", - "raw_image_src": "https://api.time.com/wp-content/uploads/2024/08/fall-preview-tv-2024.jpg?quality=85&w=1200&h=628&crop=1", - "recommendation_id": "86453c33-aee5-4d25-b507-975a49db0af0", - "score": 1 - }, - { - "id": 4637722453319065, - "url": "https://www.theringer.com/nfl/2024/8/29/24231064/2024-nfl-worst-to-first-candidates-ranking?utm_source=pocket-newtab-en-us", - "title": "Ranking the NFL’s Worst-to-First Candidates for 2024", - "excerpt": "It’s inevitable: One team during an NFL season will come out of nowhere and land in first place. Which teams have the best chance to shock the rest of the league, and who is bound to remain at the bottom?", - "publisher": "The Ringer", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/O52keaRsbI7Eb1QiYvY-0KjG-fI=/0x0:1200x628/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25593828/DabbundoWorstToFirst_AP_Ringer.jpg", - "recommendation_id": "ae8f6c55-a6ef-43ca-995b-58788f1340b0", - "score": 1 - }, - { - "id": 4744553102394205, - "url": "https://www.sportico.com/leagues/football/2024/how-nfl-teams-owners-make-money-1234795113/?utm_source=pocket-newtab-en-us", - "title": "How NFL Teams and Owners Make Their Money", - "excerpt": "The NFL’s 32 teams generated an estimated $20.5 billion in revenue last year, 70% higher than what NBA and MLB teams made. TV is the driving force.", - "publisher": "Sportico", - "raw_image_src": "https://www.sportico.com/wp-content/uploads/2024/08/GettyImages-2168767155-e1724784926728.jpg?w=1024", - "recommendation_id": "1fee66b0-b352-4fe4-a461-9809f1fae480", - "score": 1 - }, - { - "id": 4951008296652531, - "url": "https://apnews.com/article/us-open-swiatek-calendar-811e0deff257faad9a5f55fa82e28c2a?utm_source=pocket-newtab-en-us", - "title": "Iga Swiatek and Other Tennis Players Say Their Mental and Physical Health Are Ignored", - "excerpt": "It’s nothing new for tennis players to worry aloud about their sport’s overcrowded calendar, too-tough season and too-short offseason.", - "publisher": "The Associated Press", - "raw_image_src": "https://dims.apnews.com/dims4/default/8557ad3/2147483647/strip/true/crop/2000x1125+0+104/resize/1440x810!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fe3%2F68%2Ffa9e59870523584ab445f87e94e1%2Fa9f9577cfbff40cdb282c00f6bd1bc5c", - "recommendation_id": "d264fe5b-9c76-4302-aaf2-c27bd232c2fc", - "score": 1 - }, - { - "id": 5148614590207024, - "url": "https://www.eater.com/24225596/best-zucchini-bread-recipe-ranking?utm_source=pocket-newtab-en-us", - "title": "Which Zucchini Bread Recipe Makes the Most Out of Summer Abundance?", - "excerpt": "Zucchini bread is a great way to use up an excess of summer squash, but not all recipes are created equal.", - "publisher": "Eater", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/Xz7DzXyi89bgkdLySKAngF8AmNo=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25583421/lede__1_.png", - "recommendation_id": "9f1b20ab-a721-4cd4-9a34-cd6751ec58bc", - "score": 1 - }, - { - "id": 1669887505274605, - "url": "https://www.usatoday.com/story/life/pets/2024/08/29/what-do-dogs-dream-about/74865197007/?utm_source=pocket-newtab-en-us", - "title": "Do Dogs Dream? It’s No Surprise – the Answer Is Pretty Cute.", - "excerpt": "Dogs can dream just like humans can, and while researchers aren’t certain, here’s what they likely picture when they twitch or growl in their sleep.", - "publisher": "USA Today", - "raw_image_src": "https://www.usatoday.com/gcdn/-mm-/9e1f6e2ee20f44aa1f3be4f71e9f3e52b6ae2c7e/c=0-110-2121-1303/local/-/media/2021/10/25/USATODAY/usatsports/dogecoin-sleeping-shiba-inu.jpg?width=2121&height=1193&fit=crop&format=pjpg&auto=webp", - "recommendation_id": "3b28f1dc-c0f5-4f59-9a93-e6cdcdf90358", - "score": 1 - }, - { - "id": 6458913960373998, - "url": "https://getpocket.com/collections/how-to-be-more-creative?utm_source=pocket-newtab-en-us", - "title": "How To Be More Creative", - "excerpt": "Twenty-one great articles and resources about the art and science of cultivating creativity.", - "publisher": "Pocket Collections", - "raw_image_src": "https://s3.amazonaws.com/pocket-curatedcorpusapi-prod-images/822a4805-7f11-4769-b434-22798a3233ac.jpeg", - "recommendation_id": "b0263acf-5419-4da5-bb7a-6fad9b470c00", - "score": 1 - }, - { - "id": 1025053198112710, - "url": "https://www.sfgate.com/sf-culture/article/emergency-burning-man-airlift-service-19731550.php?utm_source=pocket-newtab-en-us", - "title": "This Emergency Burning Man Service Costs $20, and Thousands Sign up for It", - "excerpt": "Like any city, Black Rock City has its share of accidents, injuries and even deaths. ", - "publisher": "SFGate", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/12be72dc-d364-4a39-887f-7fb453d19381.png", - "recommendation_id": "e11e4df7-231c-46b0-95cc-6324f6e4ef54", - "score": 1 - }, - { - "id": 6140350244852717, - "url": "https://www.theatlantic.com/health/archive/2024/08/our-houses-are-fuel-for-fires/679649/?utm_source=pocket-newtab-en-us", - "title": "The Wildfire Risk in America’s Front Yards", - "excerpt": "If we really want to keep communities safe, we need to think about where we build, and with what.", - "publisher": "The Atlantic", - "raw_image_src": "https://cdn.theatlantic.com/thumbor/vK7P14SS5IpfP3if3pzJ6Prnjkk=/0x61:2876x1559/1200x625/media/img/mt/2024/08/GettyImages_1059684446/original.jpg", - "recommendation_id": "d855d896-ccc7-4dc3-b475-a2b76a311cbb", - "score": 1 - }, - { - "id": 207858574713052, - "url": "https://www.washingtonpost.com/travel/2024/08/29/passport-photos-makeup-security-tiktok/?utm_source=pocket-newtab-en-us", - "title": "Your ‘Hot’ Passport Photo Could Be a Problem at the Airport", - "excerpt": "The passport photos are glam — some might say aspirational — and created with a multistep, multi-product process. They also might be a cautionary tale.", - "publisher": "The Washington Post", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/f88c668b-c07e-4d08-83f5-e4e6c6a38f5e.png", - "recommendation_id": "65e39884-83f7-490e-a943-f69e05ff75e2", - "score": 1 - }, - { - "id": 6548513307998425, - "url": "https://www.theverge.com/24230813/demure-mindful-trademark-uspto-explainer-jools-lebron?utm_source=pocket-newtab-en-us", - "title": "A Demure and Mindful Trademark Investigation", - "excerpt": "See how I wrote this legal explainer?", - "publisher": "The Verge", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/ghzs2dc_aNWjDEzhmbN0h9I8u0U=/0x0:2040x1360/1200x628/filters:focal(1020x680:1021x681)/cdn.vox-cdn.com/uploads/chorus_asset/file/25593501/247230_Demure_Mindful_TM_CVirginia_4.jpg", - "recommendation_id": "3da69809-498d-4525-a7e5-c250cc5f68a2", - "score": 1 - }, - { - "id": 5986195010620404, - "url": "https://www.eater.com/24224470/shrimp-corn-calabrian-chile-butter-for-one-recipe?utm_source=pocket-newtab-en-us", - "title": "A Buttery Corn and Shrimp Dish Ideal for the End of Summer", - "excerpt": "This dinner for one showcases ingredients that reach peak deliciousness in mere minutes.", - "publisher": "Eater", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/gmn0qDUIO7EvHQabAodf8FB4RPw=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25581236/Lede.png", - "recommendation_id": "a5c517c8-6921-4c17-8fde-a0828bc677eb", - "score": 1 - }, - { - "id": 6428931032359864, - "url": "https://www.npr.org/2024/08/29/nx-s1-5090967/birds-build-nests-tradition-culture-architecture?utm_source=pocket-newtab-en-us", - "title": "When Birds Build Nests, They’re Also Building a Culture", - "excerpt": "Nest-building isn’t just instinct. Birds can learn from others, letting groups within one species develop their own distinctive nest-building traditions.", - "publisher": "NPR", - "raw_image_src": "https://npr.brightspotcdn.com/dims3/default/strip/false/crop/1698x955+36+0/resize/1400/quality/100/format/png/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fe8%2Fb9%2Fb9aa4cf34256bf30765476f6631b%2Fbird-three.png", - "recommendation_id": "e0c903c2-83ce-4dd5-afb7-578462e937bb", - "score": 1 - } - ], - "status": "success" - } - } - }, - "loaded": true - }, - "spocs": { - "spocs_endpoint": "https://spocs.getpocket.com/spocs", - "lastUpdated": 1725215686352, - "data": { - "settings": { - "feature_flags": { - "collections": false, - "spoc_v2": true - }, - "spocsPerNewTabs": 1, - "domainAffinityParameterSets": { - "default": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 1, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 2, - "perfectFrequencyVisits": 10, - "recencyFactor": 0.5 - }, - "fully-personalized": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 0.01, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 2, - "perfectFrequencyVisits": 10, - "recencyFactor": 0.5 - }, - "fully-personalized-domains": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 0.01, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 10, - "perfectFrequencyVisits": 1, - "recencyFactor": 0.5 - } - }, - "timeSegments": [ - { - "id": "week-1", - "startTime": 432000, - "endTime": 0, - "weightPosition": 1 - }, - { - "id": "week-2", - "startTime": 864000, - "endTime": 432000, - "weightPosition": 1 - }, - { - "id": "week-3", - "startTime": 1296000, - "endTime": 864000, - "weightPosition": 1 - }, - { - "id": "week-4", - "startTime": 1728000, - "endTime": 1296000, - "weightPosition": 1 - }, - { - "id": "week-5", - "startTime": 2160000, - "endTime": 1728000, - "weightPosition": 1 - }, - { - "id": "week-6", - "startTime": 2592000, - "endTime": 2160000, - "weightPosition": 1 - } - ] - }, - "sponsored-topsites": { - "title": "", - "context": "", - "items": [] - } - }, - "loaded": true, - "frequency_caps": [], - "blocked": [], - "placements": [ - { - "name": "sponsored-topsites", - "ad_types": [ - 3120 - ], - "zone_ids": [ - 280143 - ] - }, - { - "name": "spocs", - "ad_types": [ - 3617 - ], - "zone_ids": [ - 217758, - 217995 - ] - } - ] - }, - "experimentData": { - "utmSource": "pocket-newtab", - "utmCampaign": "home-and-newtab-wallpapers-v1-rollout-us-and-ca", - "utmContent": "control" - }, - "recentSavesData": [], - "isUserLoggedIn": false, - "recentSavesEnabled": false, - "pocketButtonEnabled": true, - "saveToPocketCard": true, - "hideDescriptions": false, - "compactImages": false, - "imageGradient": false, - "newSponsoredLabel": false, - "titleLines": 3, - "descLines": 3, - "readTime": true - }, - "Search": { - "fakeFocus": false, - "hide": false - }, - "Wallpapers": { - "wallpaperList": [ - { - "theme": "light", - "title": "light-panda", - "schema": 1713902028543, - "fluent_id": "newtab-wallpaper-light-red-panda", - "attachment": { - "hash": "f9a34f02573401aea9366a9e97a4cdc92f925ad6ac8d56d0bedfaf0dff9e86b1", - "size": 531549, - "filename": "light-panda.avif", - "location": "main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@_melsayed", - "string": "Mohamed Elsayed" - }, - "webpage": { - "url": "https://unsplash.com/photos/red-panda-on-snow-covered-ground-during-daytime-DWpR-BpKlw0", - "string": "Unsplash" - } - }, - "id": "0294a982-05f7-4b73-846a-ae2ffca24b43", - "last_modified": 1713908231354, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-landscape", - "schema": 1713905326229, - "fluent_id": "newtab-wallpaper-dark-aurora", - "attachment": { - "hash": "dba39dab685c2bc6978354537c1bc8218a0abc455d0dd49c134c031264cfcd47", - "size": 437288, - "filename": "dark-aurora.avif", - "location": "main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@lightscape", - "string": "Lightscape" - }, - "webpage": { - "url": "https://unsplash.com/photos/northern-lights-over-snow-capped-mountian-LtnPejWDSAY", - "string": "Unsplash" - } - }, - "id": "2f32ee82-69b0-4b75-851c-917d57b59f0b", - "last_modified": 1713908231356, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-sky", - "schema": 1712696771636, - "fluent_id": "newtab-wallpaper-light-sky", - "attachment": { - "hash": "40a84002cfaf92fd38300e3987146f7b2ec3f5255e0427afbd30a52d7830c0e8", - "size": 100634, - "filename": "light-sky.avif", - "location": "main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@frostroomhead", - "string": "Rodion Kutsaiev" - }, - "webpage": { - "url": "https://unsplash.com/photos/cloudy-sky-8P-uQaTd8rw", - "string": "Unsplash" - } - }, - "id": "3547b1db-e72d-4b42-ba8c-a45c59a58eb4", - "last_modified": 1712759416279, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-color", - "schema": 1713902013746, - "fluent_id": "newtab-wallpaper-light-color", - "attachment": { - "hash": "cd28bc282ba8dda5f6660389eb2a7ba66a57691504de2eba3405ec20eeddd5a0", - "size": 288837, - "filename": "light-color.avif", - "location": "main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif", - "mimetype": "image/avif" - }, - "id": "395f6e0c-c66d-4209-a6bf-6c329cea90bb", - "last_modified": 1713908231352, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-mountain", - "schema": 1713901986092, - "fluent_id": "newtab-wallpaper-light-mountain", - "attachment": { - "hash": "f9fdf49580f9221ba2583d0a818d60ae79b9fd50246ef36798a264e6645b6709", - "size": 541196, - "filename": "light-mountain.avif", - "location": "main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@daesign?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash", - "string": "Sead Dedić" - }, - "webpage": { - "url": "https://unsplash.com/photos/mountain-covered-with-snow-under-white-clouds-si8OYpuLVBY?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash", - "string": "Unsplash" - } - }, - "id": "95a51610-48fc-482e-ac01-7e3319ae7108", - "last_modified": 1713908231350, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-panda", - "schema": 1712744600151, - "fluent_id": "newtab-wallpaper-dark-panda", - "attachment": { - "hash": "359ec1d08b10aec1ea6d5cb50ddb0ccbd7660301407ee2eb602cf877b1ab857a", - "size": 391823, - "filename": "dark-panda.avif", - "location": "main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@willrust", - "string": "Will Rust" - }, - "webpage": { - "url": "https://unsplash.com/photos/a-red-panda-yawns-in-a-tree-ERm7haDBW8k", - "string": "Unsplash" - } - }, - "id": "a6fbb3dd-cbbf-4a70-83b4-207943ff985b", - "last_modified": 1712759416259, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-color", - "schema": 1712696637182, - "fluent_id": "newtab-wallpaper-dark-color", - "attachment": { - "hash": "c433865edcc1eae2911f30caa95783adfe5642ec24e8bd41fcfc661276f93752", - "size": 206755, - "filename": "dark-color.avif", - "location": "main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@martz90", - "string": "Martin Martz" - }, - "webpage": { - "url": "https://unsplash.com/photos/a-close-up-of-a-cell-phone-with-a-blurry-background-uuNCR2NpiNE", - "string": "Unsplash" - } - }, - "id": "ac09202d-958f-4f8b-b47a-1d32ac79bc56", - "last_modified": 1712759416261, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-landscape", - "schema": 1712696741112, - "fluent_id": "newtab-wallpaper-light-landscape", - "attachment": { - "hash": "e03ad82c9a5c6da8873cbdd21a5186a61c2eab9fe582f68e8da84cbb79b97885", - "size": 223179, - "filename": "light-landscape.avif", - "location": "main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@caroliniecavalli", - "string": "Carolinie Cavalli" - }, - "webpage": { - "url": "https://unsplash.com/photos/birds-eye-view-photography-of-mountain-Qw3w0oBH63s", - "string": "Unsplash" - } - }, - "id": "ad655cd6-8b30-4b62-bc3b-8306f43074ed", - "last_modified": 1712759416281, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-sky", - "schema": 1716395853204, - "fluent_id": "newtab-wallpaper-dark-sky", - "attachment": { - "hash": "6ab2a71c1d5866c10f6c8bb555b019ed6127a48112e410694bedf6fe8d5cdab9", - "size": 461323, - "filename": "dark-sky.avif", - "location": "main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@felix_mittermeier", - "string": "Felix Mittermeier" - }, - "webpage": { - "url": "https://unsplash.com/photos/lightning-strike-under-cloudy-sky-WLGHjbC0Cq4", - "string": "Unsplash" - } - }, - "id": "ae0890cf-35a3-419f-8f2f-a8f824e387e4", - "last_modified": 1716487426093, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-mountain", - "schema": 1712697075672, - "fluent_id": "newtab-wallpaper-dark-mountain", - "attachment": { - "hash": "f5933a35945f5103ff98892f45ce03c59b2c3c1be35455faf45b10355492fd95", - "size": 308468, - "filename": "dark-mountain.avif", - "location": "main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@heytowner", - "string": "John Towner" - }, - "webpage": { - "url": "https://unsplash.com/photos/aerial-photo-of-brown-moutains-JgOeRuGD_Y4", - "string": "Unsplash" - } - }, - "id": "cb4752dc-cccb-4756-9232-f81af25ac7ea", - "last_modified": 1712759416272, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-beach", - "schema": 1716396166554, - "fluent_id": "newtab-wallpaper-dark-city", - "attachment": { - "hash": "7272b542d0b28513daa9c1bdb27ae09d606c189d1c144bc6d5b550b5020c67de", - "size": 713257, - "filename": "dark-beach.avif", - "location": "main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@yespanioly", - "string": "Yousef Espanioly" - }, - "webpage": { - "url": "https://unsplash.com/photos/seashore-DA_tplYgTow", - "string": "Unsplash" - } - }, - "id": "e85ffed2-658d-4e3e-a990-e54a1fb59f0a", - "last_modified": 1716487426090, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-beach", - "schema": 1716281724721, - "fluent_id": "newtab-wallpaper-light-beach", - "attachment": { - "hash": "ad65944319e9bb3fa4261e93d465cc51be35873608dfa71d46fe734ae4517c2a", - "size": 465893, - "filename": "light-beach-1.avif", - "location": "main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@oulashin", - "string": "Sean Oulashin" - }, - "webpage": { - "url": "https://unsplash.com/photos/seashore-during-golden-hour-KMn4VEeEPR8", - "string": "Unsplash" - } - }, - "id": "eaf8ffb0-66bf-44c9-a79c-1a185aacea5f", - "last_modified": 1716487426088, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif", - "category": "" - } - ], - "highlightSeenCounter": { - "value": 0 - }, - "categories": [] - }, - "Weather": { - "initialized": false, - "lastUpdated": null, - "query": "", - "suggestions": [], - "locationData": { - "city": "", - "adminArea": "", - "country": "" - }, - "searchActive": false, - "locationSearchString": "", - "suggestedLocations": [] - } -}; - -HrfԴGFx :about:homealt-data1;80261,scriptversion20240819150008^ \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/doomed/982127842 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/doomed/982127842 deleted file mode 100644 index e5385c7..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/doomed/982127842 +++ /dev/null @@ -1,1681 +0,0 @@ - - - - - - - - - - - - - - - - - - -
- -
- - - - - -window.__FROM_STARTUP_CACHE__ = true; -window.__STARTUP_STATE__ = { - "TopSites": { - "initialized": true, - "rows": [ - { - "isDefault": true, - "url": "https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm", - "hostname": "amazon", - "sendAttributionRequest": false, - "label": "Amazon", - "show_sponsored_label": true, - "sponsored_position": 1, - "sponsored_click_url": "https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr", - "sponsored_tile_id": 74357, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "expedia", - "sendAttributionRequest": false, - "label": "Expedia", - "show_sponsored_label": true, - "sponsored_position": 2, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy", - "sponsored_tile_id": 74925, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "ca.hotels", - "sendAttributionRequest": false, - "label": "Hotels.com", - "show_sponsored_label": true, - "sponsored_position": 3, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm", - "sponsored_tile_id": 74038, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.youtube.com/", - "hostname": "youtube", - "sendAttributionRequest": false, - "label": "YouTube", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/youtube-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/youtube-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.facebook.com/", - "hostname": "facebook", - "sendAttributionRequest": false, - "label": "Facebook", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/facebook-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/facebook-com.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.reddit.com/", - "hostname": "reddit", - "sendAttributionRequest": false, - "label": "Reddit", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/reddit-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/reddit-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.wikipedia.org/", - "hostname": "wikipedia", - "sendAttributionRequest": false, - "label": "Wikipedia", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://twitter.com/", - "hostname": "twitter", - "sendAttributionRequest": false, - "label": "Twitter", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/twitter-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/twitter-com.ico", - "typedBonus": true - } - ], - "editForm": null, - "showSearchShortcutsForm": false, - "searchShortcuts": [ - { - "keyword": "@google", - "shortURL": "google", - "url": "https://google.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/google-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/google-com.ico" - }, - { - "keyword": "@bing", - "shortURL": "bing", - "url": "https://bing.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/bing-com@2x.svg", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/bing-com.ico" - }, - { - "keyword": "@duckduckgo", - "shortURL": "duckduckgo", - "url": "https://duckduckgo.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/duckduckgo-com@2x.svg", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/duckduckgo-com.ico" - }, - { - "keyword": "@ebay", - "shortURL": "ebay", - "url": "https://ebay.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/ebay@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/ebay.ico" - }, - { - "keyword": "@wikipedia", - "shortURL": "wikipedia", - "url": "https://wikipedia.org", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico" - } - ], - "sov": { - "ready": true, - "positions": [ - { - "position": 1, - "assignedPartner": "amp" - }, - { - "position": 2, - "assignedPartner": "amp" - }, - { - "position": 3, - "assignedPartner": "amp" - } - ] - }, - "pref": { - "collapsed": false - } - }, - "App": { - "initialized": true, - "locale": "en-CA", - "isForStartupCache": true, - "customizeMenuVisible": false, - "links": [ - { - "isDefault": true, - "url": "https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm", - "hostname": "amazon", - "sendAttributionRequest": false, - "label": "Amazon", - "show_sponsored_label": true, - "sponsored_position": 1, - "sponsored_click_url": "https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr", - "sponsored_tile_id": 74357, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "expedia", - "sendAttributionRequest": false, - "label": "Expedia", - "show_sponsored_label": true, - "sponsored_position": 2, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy", - "sponsored_tile_id": 74925, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "ca.hotels", - "sendAttributionRequest": false, - "label": "Hotels.com", - "show_sponsored_label": true, - "sponsored_position": 3, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm", - "sponsored_tile_id": 74038, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.youtube.com/", - "hostname": "youtube", - "sendAttributionRequest": false, - "label": "YouTube", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/youtube-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/youtube-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.facebook.com/", - "hostname": "facebook", - "sendAttributionRequest": false, - "label": "Facebook", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/facebook-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/facebook-com.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.reddit.com/", - "hostname": "reddit", - "sendAttributionRequest": false, - "label": "Reddit", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/reddit-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/reddit-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.wikipedia.org/", - "hostname": "wikipedia", - "sendAttributionRequest": false, - "label": "Wikipedia", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://twitter.com/", - "hostname": "twitter", - "sendAttributionRequest": false, - "label": "Twitter", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/twitter-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/twitter-com.ico", - "typedBonus": true - } - ], - "pref": { - "collapsed": false - } - }, - "Prefs": { - "initialized": true, - "values": { - "default.sites": "https://www.youtube.com/,https://www.facebook.com/,https://www.reddit.com/,https://www.wikipedia.org/,https://www.amazon.ca/,https://twitter.com/", - "feeds.section.topstories.options": "{\"api_key_pref\":\"extensions.pocket.oAuthConsumerKey\",\"hidden\":false,\"provider_icon\":\"chrome://global/skin/icons/pocket.svg\",\"provider_name\":\"Pocket\",\"read_more_endpoint\":\"https://getpocket.com/explore/trending?src=fx_new_tab\",\"stories_endpoint\":\"https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=$apiKey&locale_lang=en-CA&feed_variant=default_spocs_on\",\"stories_referrer\":\"https://getpocket.com/recommendations\",\"topics_endpoint\":\"https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=en-CA\",\"show_spocs\":true}", - "feeds.topsites": true, - "hideTopSitesTitle": false, - "showSponsored": true, - "system.showSponsored": true, - "showSponsoredTopSites": true, - "system.showWeather": false, - "showWeather": true, - "weather.query": "", - "weather.locationSearchEnabled": true, - "weather.temperatureUnits": "c", - "weather.display": "simple", - "pocketCta": "{\"cta_button\":\"\",\"cta_text\":\"\",\"cta_url\":\"\",\"use_cta\":false}", - "showSearch": true, - "topSitesRows": 1, - "telemetry": true, - "telemetry.ut.events": false, - "telemetry.structuredIngestion.endpoint": "https://incoming.telemetry.mozilla.org/submit", - "section.highlights.includeVisited": true, - "section.highlights.includeBookmarks": true, - "section.highlights.includePocket": true, - "section.highlights.includeDownloads": true, - "section.highlights.rows": 1, - "section.topstories.rows": 1, - "sectionOrder": "topsites,topstories,highlights", - "newtabWallpapers.enabled": true, - "newtabWallpapers.v2.enabled": true, - "newtabWallpapers.highlightEnabled": false, - "newtabWallpapers.highlightDismissed": false, - "newtabWallpapers.highlightSeenCounter": 0, - "newtabWallpapers.highlightHeaderText": "", - "newtabWallpapers.highlightContentText": "", - "newtabWallpapers.highlightCtaText": "", - "newtabWallpapers.wallpaper-light": "", - "newtabWallpapers.wallpaper-dark": "", - "newtabWallpapers.wallpaper": "", - "improvesearch.noDefaultSearchTile": true, - "improvesearch.topSiteSearchShortcuts.searchEngines": "google", - "improvesearch.topSiteSearchShortcuts.havePinned": "", - "asrouter.devtoolsEnabled": false, - "discoverystream.flight.blocks": "{}", - "discoverystream.config": "{\"api_key_pref\":\"extensions.pocket.oAuthConsumerKey\",\"collapsible\":true,\"enabled\":true}", - "discoverystream.endpoints": "https://getpocket.cdn.mozilla.net/,https://firefox-api-proxy.cdn.mozilla.net/,https://spocs.getpocket.com/,https://merino.services.mozilla.com/", - "discoverystream.isCollectionDismissible": true, - "discoverystream.onboardingExperience.dismissed": false, - "discoverystream.thumbsUpDown.enabled": false, - "discoverystream.thumbsUpDown.searchTopsitesCompact": false, - "discoverystream.region-basic-layout": false, - "discoverystream.spoc.impressions": "{}", - "discoverystream.endpointSpocsClear": "https://spocs.getpocket.com/user", - "discoverystream.rec.impressions": "{}", - "discoverystream.topicSelection.enabled": false, - "showRecentSaves": true, - "feeds.aboutpreferences": true, - "feeds.newtabinit": true, - "feeds.places": true, - "feeds.prefs": true, - "feeds.sections": true, - "feeds.section.highlights": false, - "feeds.system.topstories": true, - "feeds.systemtick": true, - "feeds.telemetry": true, - "feeds.favicon": true, - "feeds.system.topsites": true, - "feeds.recommendationprovider": true, - "feeds.discoverystreamfeed": true, - "feeds.wallpaperfeed": true, - "feeds.weatherfeed": true, - "isPrivateBrowsingEnabled": true, - "platform": "macosx", - "fxa_endpoint": "https://accounts.firefox.com/", - "appUpdateChannel": "release", - "improvesearch.topSiteSearchShortcuts": true, - "mayHaveSponsoredTopSites": true, - "improvesearch.handoffToAwesomebar": true, - "featureConfig": { - "customizationMenuEnabled": null, - "topSitesContileEnabled": true - }, - "pocketConfig": { - "spocPositions": "1,5,7,11,18,20", - "spocTopsitesPositions": "2", - "contileTopsitesPositions": "0,1,2", - "spocAdTypes": "", - "spocZoneIds": "", - "spocTopsitesAdTypes": "", - "spocTopsitesZoneIds": "", - "spocTopsitesPlacementEnabled": true, - "spocSiteId": "", - "widgetPositions": "", - "hybridLayout": false, - "hideCardBackground": false, - "fourCardLayout": false, - "newFooterSection": false, - "saveToPocketCard": true, - "saveToPocketCardRegions": "", - "hideDescriptions": false, - "hideDescriptionsRegions": "", - "compactGrid": false, - "compactImages": false, - "imageGradient": false, - "titleLines": 3, - "descLines": 3, - "onboardingExperience": false, - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "recentSavesEnabled": false, - "readTime": true, - "newSponsoredLabel": false, - "sendToPocket": true, - "recsPersonalized": false, - "spocsPersonalized": true, - "topicSelectionEnabled": false, - "spocsCacheTimeout": null, - "ctaButtonSponsors": "", - "ctaButtonVariant": "", - "spocMessageVariant": "", - "regionStoriesConfig": "US,DE,CA,GB,IE,CH,AT,BE,IN,FR,IT,ES", - "regionBffConfig": "US,DE,CA,GB,IE,CH,AT,BE,IN,FR,IT,ES", - "merinoProviderEnabled": false, - "merinoProviderEndpoint": "merino.services.mozilla.com", - "regionStoriesBlock": "", - "localeListConfig": "", - "regionSpocsConfig": "US,CA,DE,GB,FR,IT,ES", - "regionWeatherConfig": "US, CA", - "localeWeatherConfig": "en-US,en-GB,en-CA", - "topSitesContileSovEnabled": true, - "pocketFeedParameters": "", - "wallpapers": true, - "wallpapersV2": true, - "weatherLocationSearch": true - }, - "logowordmark.alwaysVisible": true, - "feeds.section.topstories": true, - "discoverystream.enabled": true, - "discoverystream.sponsored-collections.enabled": false, - "discoverystream.hardcoded-basic-layout": false, - "discoverystream.personalization.enabled": true, - "discoverystream.personalization.override": false, - "discoverystream.personalization.modelKeys": "nb_model_arts_and_entertainment, nb_model_autos_and_vehicles, nb_model_beauty_and_fitness, nb_model_blogging_resources_and_services, nb_model_books_and_literature, nb_model_business_and_industrial, nb_model_computers_and_electronics, nb_model_finance, nb_model_food_and_drink, nb_model_games, nb_model_health, nb_model_hobbies_and_leisure, nb_model_home_and_garden, nb_model_internet_and_telecom, nb_model_jobs_and_education, nb_model_law_and_government, nb_model_online_communities, nb_model_people_and_society, nb_model_pets_and_animals, nb_model_real_estate, nb_model_reference, nb_model_science, nb_model_shopping, nb_model_sports, nb_model_travel", - "discoverystream.spocs-endpoint": "", - "discoverystream.spocs-endpoint-query": "", - "newNewtabExperience.colors": "#0090ED,#FF4F5F,#2AC3A2,#FF7139,#A172FF,#FFA437,#FF2A8A", - "region": "CA" - } - }, - "Dialog": { - "visible": false, - "data": {} - }, - "Sections": [ - { - "title": { - "id": "newtab-section-header-stories" - }, - "rows": [], - "enabled": true, - "id": "topstories", - "pref": { - "titleString": { - "id": "home-prefs-recommended-by-header-generic" - }, - "descString": { - "id": "home-prefs-recommended-by-description-generic" - }, - "nestedPrefs": [ - { - "name": "showSponsored", - "titleString": "home-prefs-recommended-by-option-sponsored-stories", - "icon": "icon-info", - "eventSource": "POCKET_SPOCS" - } - ], - "learnMore": { - "link": { - "href": "https://getpocket.com/firefox/new_tab_learn_more", - "id": "home-prefs-recommended-by-learn-more" - } - }, - "collapsed": false, - "feed": "feeds.section.topstories" - }, - "shouldHidePref": false, - "eventSource": "TOP_STORIES", - "icon": "chrome://global/skin/icons/pocket.svg", - "learnMore": { - "link": { - "href": "https://getpocket.com/firefox/new_tab_learn_more", - "message": { - "id": "newtab-pocket-learn-more" - } - } - }, - "compactCards": false, - "rowsPref": "section.topstories.rows", - "maxRows": 4, - "availableLinkMenuOptions": [ - "CheckBookmarkOrArchive", - "CheckSavedToPocket", - "Separator", - "OpenInNewWindow", - "OpenInPrivateWindow", - "Separator", - "BlockUrl" - ], - "emptyState": { - "message": { - "id": "newtab-empty-section-topstories-generic" - }, - "icon": "check" - }, - "shouldSendImpressionStats": true, - "dedupeFrom": [ - "highlights" - ], - "options": { - "api_key_pref": "extensions.pocket.oAuthConsumerKey", - "hidden": false, - "provider_icon": "chrome://global/skin/icons/pocket.svg", - "provider_name": "Pocket", - "read_more_endpoint": "https://getpocket.com/explore/trending?src=fx_new_tab", - "stories_endpoint": "https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=$apiKey&locale_lang=en-CA&feed_variant=default_spocs_on", - "stories_referrer": "https://getpocket.com/recommendations", - "topics_endpoint": "https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=en-CA", - "show_spocs": true - }, - "contextMenuOptions": [ - "CheckBookmarkOrArchive", - "CheckSavedToPocket", - "Separator", - "OpenInNewWindow", - "OpenInPrivateWindow", - "Separator", - "BlockUrl" - ], - "initialized": false, - "dedupeConfigurations": [ - { - "id": "topstories", - "dedupeFrom": [ - "highlights" - ] - } - ] - }, - { - "title": { - "id": "newtab-section-header-recent-activity" - }, - "rows": [], - "enabled": false, - "id": "highlights", - "pref": { - "titleString": { - "id": "home-prefs-recent-activity-header" - }, - "descString": { - "id": "home-prefs-recent-activity-description" - }, - "nestedPrefs": [ - { - "name": "section.highlights.includeVisited", - "titleString": "home-prefs-highlights-option-visited-pages" - }, - { - "name": "section.highlights.includeBookmarks", - "titleString": "home-prefs-highlights-options-bookmarks" - }, - { - "name": "section.highlights.includeDownloads", - "titleString": "home-prefs-highlights-option-most-recent-download" - }, - { - "name": "section.highlights.includePocket", - "titleString": "home-prefs-highlights-option-saved-to-pocket", - "hidden": false - } - ], - "collapsed": false, - "feed": "feeds.section.highlights" - }, - "shouldHidePref": false, - "eventSource": "HIGHLIGHTS", - "icon": "chrome://global/skin/icons/highlights.svg", - "compactCards": true, - "rowsPref": "section.highlights.rows", - "maxRows": 4, - "emptyState": { - "message": { - "id": "newtab-empty-section-highlights" - }, - "icon": "chrome://global/skin/icons/highlights.svg" - }, - "shouldSendImpressionStats": false, - "options": {}, - "initialized": false - } - ], - "Notifications": { - "showNotifications": false, - "toastCounter": 0, - "toastId": "", - "toastQueue": [] - }, - "Pocket": { - "isUserLoggedIn": null, - "pocketCta": {}, - "waitingForSpoc": true - }, - "Personalization": { - "lastUpdated": 1725216053746, - "initialized": true - }, - "DiscoveryStream": { - "config": { - "api_key_pref": "extensions.pocket.oAuthConsumerKey", - "collapsible": true, - "enabled": true - }, - "layout": [ - { - "width": 12, - "components": [ - { - "type": "TopSites", - "header": { - "title": { - "id": "newtab-section-header-topsites" - } - }, - "placement": { - "name": "sponsored-topsites", - "ad_types": [ - 3120 - ], - "zone_ids": [ - 280143 - ] - }, - "spocs": { - "probability": 1, - "prefs": [ - "showSponsoredTopSites" - ], - "positions": [ - { - "index": 2 - } - ] - }, - "properties": {} - }, - { - "type": "Message", - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "header": { - "title": { - "id": "newtab-section-header-stories" - }, - "subtitle": "", - "link_text": { - "id": "newtab-pocket-learn-more" - }, - "link_url": "https://getpocket.com/firefox/new_tab_learn_more", - "icon": "chrome://global/skin/icons/pocket.svg" - }, - "properties": { - "spocMessageVariant": "" - }, - "styles": { - ".ds-message": "margin-bottom: -20px" - } - }, - { - "type": "CardGrid", - "properties": { - "items": 21, - "hybridLayout": false, - "hideCardBackground": false, - "fourCardLayout": false, - "compactGrid": false, - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "onboardingExperience": false, - "ctaButtonSponsors": [ - "" - ], - "ctaButtonVariant": "", - "spocMessageVariant": "" - }, - "widgets": { - "positions": [], - "data": [ - { - "type": "TopicsWidget" - } - ] - }, - "cta_variant": "link", - "header": { - "title": "" - }, - "placement": { - "name": "spocs", - "ad_types": [ - 3617 - ], - "zone_ids": [ - 217758, - 217995 - ] - }, - "feed": { - "embed_reference": null, - "url": "https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30" - }, - "spocs": { - "probability": 1, - "positions": [ - { - "index": 1 - }, - { - "index": 5 - }, - { - "index": 7 - }, - { - "index": 11 - }, - { - "index": 18 - }, - { - "index": 20 - } - ] - } - }, - { - "type": "Navigation", - "newFooterSection": false, - "properties": { - "alignment": "left-align", - "links": [ - { - "name": "Self improvement", - "url": "https://getpocket.com/explore/self-improvement?utm_source=pocket-newtab" - }, - { - "name": "Food", - "url": "https://getpocket.com/explore/food?utm_source=pocket-newtab" - }, - { - "name": "Entertainment", - "url": "https://getpocket.com/explore/entertainment?utm_source=pocket-newtab" - }, - { - "name": "Health & fitness", - "url": "https://getpocket.com/explore/health?utm_source=pocket-newtab" - }, - { - "name": "Science", - "url": "https://getpocket.com/explore/science?utm_source=pocket-newtab" - }, - { - "name": "More recommendations ›", - "url": "https://getpocket.com/explore?utm_source=pocket-newtab" - } - ], - "extraLinks": [ - { - "name": "Career", - "url": "https://getpocket.com/explore/career?utm_source=pocket-newtab" - }, - { - "name": "Technology", - "url": "https://getpocket.com/explore/technology?utm_source=pocket-newtab" - } - ], - "privacyNoticeURL": { - "url": "https://www.mozilla.org/privacy/firefox/#recommend-relevant-content", - "title": { - "id": "newtab-section-menu-privacy-notice" - } - } - }, - "header": { - "title": { - "id": "newtab-pocket-read-more" - } - }, - "styles": { - ".ds-navigation": "margin-top: -10px;" - } - } - ] - } - ], - "isPrivacyInfoModalVisible": false, - "isCollectionDismissible": true, - "feeds": { - "data": { - "https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30": { - "lastUpdated": 1725215686469, - "personalized": false, - "data": { - "settings": {}, - "recommendations": [ - { - "id": 1237673593164797, - "url": "https://www.zdnet.com/article/why-the-nsa-advises-you-to-turn-off-your-phone-once-a-week/?utm_source=pocket-newtab-en-us", - "title": "Why the NSA Advises You to Turn Off Your Phone Once a Week", - "excerpt": "Powering off your phone regularly, disabling Bluetooth, and using only trusted accessories are just a few of the NSA’s security recommendations. Here’s what else to know.", - "publisher": "ZDNet", - "raw_image_src": "https://www.zdnet.com/a/img/resize/153728d5f66ee0fb01cca3dccdf01af11307c9b9/2024/08/26/8f6e1cdd-c037-48f5-a932-e7e1d5f09e66/gettyimages-1977127901.jpg?auto=webp&fit=crop&height=675&width=1200", - "recommendation_id": "54844477-0bab-4a1b-b00d-2f9cc04e11a6", - "score": 1 - }, - { - "id": 2806006005551800, - "url": "https://getpocket.com/explore/item/inside-the-unsolved-murder-of-jfk-s-mistress-mary-pinchot-meyer?utm_source=pocket-newtab-en-us", - "title": "Inside the Unsolved Murder of JFK’s Mistress Mary Pinchot Meyer", - "excerpt": "A true crime podcast revisits the mysterious 1964 murder of the Washington, D.C. socialite.", - "publisher": "Town & Country Magazine", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/47161f47-f9ba-46bc-9172-eaf152256cd9.jpeg", - "recommendation_id": "d0f2aa71-f4c5-4b75-b652-c535e988dbb3", - "score": 1 - }, - { - "id": 8305955701842621, - "url": "https://www.cntraveler.com/story/golden-rules-of-road-trips?utm_source=pocket-newtab-en-us", - "title": "The Golden Rules of Road Tripping", - "excerpt": "Veteran road trippers (including a gas station food evangelist) share their savviest tips and tricks.", - "publisher": "Condé Nast Traveler", - "raw_image_src": "https://media.cntraveler.com/photos/66d0cab1759c2a9f11040cac/16:9/w_1280,c_limit/GettyImages-1588291549.jpg", - "recommendation_id": "048badb3-8552-409a-b945-483621fcffdb", - "score": 1 - }, - { - "id": 7740724110986131, - "url": "https://daily.jstor.org/the-shrewd-business-logic-of-immigrant-cooks/?utm_source=pocket-newtab-en-us", - "title": "The Shrewd Business Logic of Immigrant Cooks", - "excerpt": "Savvy observers, immigrant restaurateurs operate as amateur anthropologists who analyze their potential customers to determine how to best attract them.", - "publisher": "JStor Daily", - "raw_image_src": "https://daily.jstor.org/wp-content/uploads/2024/08/the_shrewd_business_logic_of_immigrant_cooks_1050x700.jpg", - "recommendation_id": "f652a7e8-4276-4313-8f4f-85c8dfc1a1d8", - "score": 1 - }, - { - "id": 385574474559666, - "url": "https://www.npr.org/2024/08/30/g-s1-20058/signs-of-codependency-how-to-overcome-unhealthy-relationships?utm_source=pocket-newtab-en-us", - "title": "How I Broke Free From Codependency — and Learned the Meaning of Loving Relationships", - "excerpt": "“I thought: if I just helped my friends, colleagues and neighbors, maybe I’d get the connection I craved in love, work and life,” writes journalist Gina Ryder. ", - "publisher": "NPR", - "raw_image_src": "https://npr.brightspotcdn.com/dims3/default/strip/false/crop/4500x2531+0+0/resize/1400/quality/100/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2F71%2F71%2Fd2c5dc9248cba5375baa2d277339%2Ffinal-copy-b-wide-a076df3e37ddefc91e27ecaaae796f158b8388af.jpg", - "recommendation_id": "b3ed0a59-7ea7-4553-8c64-8dc925e02806", - "score": 1 - }, - { - "id": 6353226517752388, - "url": "https://www.cnbc.com/2024/08/28/37percent-of-hiring-managers-say-job-hopping-is-a-red-flag-how-to-explain-it.html?utm_source=pocket-newtab-en-us", - "title": "37% of Hiring Managers Say Job-Hopping Is a Red Flag: ‘Don’t Make Apologies for It,’ Says LinkedIn Career Expert", - "excerpt": "Job hopping and a lack of direction give hiring managers pause when reading a resume, says LinkedIn. Here’s how to make those work for you. ", - "publisher": "CNBC", - "raw_image_src": "https://image.cnbcfm.com/api/v1/image/108024975-1724430221608-gettyimages-1381569694-dsc05823.jpeg?v=1724430524&w=1920&h=1080", - "recommendation_id": "f26e6e10-8d63-4c5c-a5b2-aeda05f9785b", - "score": 1 - }, - { - "id": 2639946232487271, - "url": "https://www.popsci.com/science/why-are-we-ticklish/?utm_source=pocket-newtab-en-us", - "title": "Why Are We Ticklish?", - "excerpt": "The science of tickling is full of mysteries, but there are some playful theories.", - "publisher": "Popular Science", - "raw_image_src": "https://www.popsci.com/wp-content/uploads/2024/08/tickling-hands.jpg?quality=85", - "recommendation_id": "f0217821-8028-45dd-9581-3adc75f17b71", - "score": 1 - }, - { - "id": 5331020961960890, - "url": "https://www.washingtonpost.com/business/2024/08/30/401k-millionaires-secret/?utm_source=pocket-newtab-en-us", - "title": "The 401(K) Millionaires Club Hit a New Record. What’s Their Secret?", - "excerpt": "While this elite group benefited from surging stock prices, their gains are markers of steady investing over time and having the patience to ride out the rough patches.", - "publisher": "The Washington Post", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/319ba9ad-86f7-42f7-b9d5-a710e005af91.png", - "recommendation_id": "c2f72737-c17a-42a3-aa10-fd1120ce594f", - "score": 1 - }, - { - "id": 5705530850067820, - "url": "https://www.cnn.com/2024/08/30/health/weekend-sleep-lower-heart-disease-risk-wellness/index.html?utm_source=pocket-newtab-en-us", - "title": " What a Weekend Snooze Could Do for Your Heart Health, According to New Research ", - "excerpt": "Getting extra sleep on the weekends to compensate for lost rest during the week may benefit your heart health, new research suggests.", - "publisher": "CNN", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/bbf99e22-d18f-473b-b486-9181ceeafd1d.png", - "recommendation_id": "66ebfc60-e7ef-4486-a7e9-13d8840edb26", - "score": 1 - }, - { - "id": 8961269824482220, - "url": "https://www.newyorker.com/culture/the-front-row/the-giddy-delights-of-1941?utm_source=pocket-newtab-en-us", - "title": "The Giddy Delights of “1941”", - "excerpt": "Steven Spielberg gave free rein to his anarchic inner child in this Second World War comedy—and paid the price.", - "publisher": "The New Yorker", - "raw_image_src": "https://media.newyorker.com/photos/66d0d25e6fdde2d32f124f4f/16:9/w_1280,c_limit/Brody01-1941.jpg", - "recommendation_id": "890f05ef-a6cc-49ae-8c70-7ae9034ffd15", - "score": 1 - }, - { - "id": 8017352545460819, - "url": "https://www.discovermagazine.com/the-sciences/ancient-romans-were-some-of-the-first-obnoxious-tourists?utm_source=pocket-newtab-en-us", - "title": "Ancient Romans Were Some of the First Obnoxious Tourists", - "excerpt": "Archaeologists reveal traces of early tourism. From graffitied buildings to rowdy beach resorts, learn how ancient travelers shaped modern tourism.", - "publisher": "Discover Magazine", - "raw_image_src": "https://images.ctfassets.net/cnu0m8re1exe/6s1aSjTwLDrfUYAZrZ27ly/fd770ca5a5ed689ec3b982876eccfca8/shutterstock_2434319603.jpg?fm=jpg&fl=progressive&w=660&h=433&fit=fill", - "recommendation_id": "f31ab5b8-6140-405d-88c7-f739dc2dea37", - "score": 1 - }, - { - "id": 8585537236724587, - "url": "https://hbr.org/2024/08/how-to-craft-a-memorable-message-according-to-science?utm_source=pocket-newtab-en-us", - "title": "How to Craft a Memorable Message, According to Science", - "excerpt": "Imagine sitting in a meeting where someone is giving a presentation. You’re somewhat interested in the topic, and the speaker seems to be doing a good job. The meeting ends, and 30 minutes later, you try to recall what was discussed.", - "publisher": "Harvard Business Review", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/c5b2dedc-0ca3-4240-988a-264ce58b151a.jpeg", - "recommendation_id": "9ab969a6-6490-463f-9bf2-90a47b29a742", - "score": 1 - }, - { - "id": 2600415718993677, - "url": "https://www.bustle.com/wellness/functional-freeze-tiktok?utm_source=pocket-newtab-en-us", - "title": "Feeling Tired & Stuck? Blame It on “Functional Freeze”", - "excerpt": "Experts explain “functional freeze” and tips for getting out of it.", - "publisher": "Bustle", - "raw_image_src": "https://imgix.bustle.com/uploads/getty/2024/8/28/ded05894/exhausted-young-asian-woman.jpg?w=1200&h=630&fit=crop&crop=faces&fm=jpg", - "recommendation_id": "45136e3c-cfcf-4b27-9043-288343a4984a", - "score": 1 - }, - { - "id": 3815514097256825, - "url": "https://www.context.news/digital-rights/why-is-telegram-in-trouble-with-the-law?utm_source=pocket-newtab-en-us", - "title": "Why Is Telegram in Trouble With the Law?", - "excerpt": "Telegram, whose boss Durov was arrested in France, has few moderators and refuses to hand over data but how exactly does it work?", - "publisher": "Context News", - "raw_image_src": "https://ddc514qh7t05d.cloudfront.net/dA/1a97132cafbba867ce6c84e92317e107/1200w/Jpeg", - "recommendation_id": "f509e631-487f-4da0-9bdf-4ec48b832e52", - "score": 1 - }, - { - "id": 3368948738226282, - "url": "https://www.theatlantic.com/technology/archive/2024/08/venmo-social-media/679665/?utm_source=pocket-newtab-en-us", - "title": "The Last Social Network", - "excerpt": "Venmo has become the best way to see what the people you know are up to.", - "publisher": "The Atlantic", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/3bd44da5-2c15-49ca-b138-64c654152dc6.jpeg", - "recommendation_id": "b46de81e-d41c-44b8-996f-e3ae19e4ebd4", - "score": 1 - }, - { - "id": 2718235349382233, - "url": "https://www.cnbc.com/2024/08/30/mortgage-rates-are-falling-is-this-the-right-time-to-buy-a-home.html?utm_source=pocket-newtab-en-us", - "title": "Mortgage Rates Are Falling, Improving Home Buying Conditions. Here’s What to Know Before You Act", - "excerpt": "Experts give their best advice for navigating the housing market in the months ahead.", - "publisher": "CNBC", - "raw_image_src": "https://image.cnbcfm.com/api/v1/image/107418725-1716399817877-gettyimages-1347125095-120_0821_125794.jpeg?v=1721742352&w=1920&h=1080", - "recommendation_id": "ab954c84-9d06-4558-bb81-3a5b1428a2d9", - "score": 1 - }, - { - "id": 5756898452464831, - "url": "https://www.wired.com/story/waymo-is-picking-up-at-phoenix-airport/?utm_source=pocket-newtab-en-us", - "title": "Waymo Is Picking up at the Airport. That’s a Big Deal", - "excerpt": "Self-driving cars have started all-day pickups and drop-offs in Phoenix, Arizona. It’s great news for Alphabet’s bottom line, and a step forward for robotaxis.", - "publisher": "WIRED", - "raw_image_src": "https://media.wired.com/photos/66ce36f04bed518556513e05/191:100/w_1280,c_limit/Airport-Waymo-transport-1497020112.jpg", - "recommendation_id": "7cb13068-8df9-4ff1-a557-da8e681b476a", - "score": 1 - }, - { - "id": 341596945613700, - "url": "https://time.com/7015189/most-anticipated-tv-shows-fall-2024/?utm_source=pocket-newtab-en-us", - "title": "The 34 Most Anticipated TV Shows of Fall 2024", - "excerpt": "Including a bevy of new Ryan Murphy shows, some fond farewells, and new shows from Alfonso Cuarón and Mike Schur.", - "publisher": "Time", - "raw_image_src": "https://api.time.com/wp-content/uploads/2024/08/fall-preview-tv-2024.jpg?quality=85&w=1200&h=628&crop=1", - "recommendation_id": "86453c33-aee5-4d25-b507-975a49db0af0", - "score": 1 - }, - { - "id": 4637722453319065, - "url": "https://www.theringer.com/nfl/2024/8/29/24231064/2024-nfl-worst-to-first-candidates-ranking?utm_source=pocket-newtab-en-us", - "title": "Ranking the NFL’s Worst-to-First Candidates for 2024", - "excerpt": "It’s inevitable: One team during an NFL season will come out of nowhere and land in first place. Which teams have the best chance to shock the rest of the league, and who is bound to remain at the bottom?", - "publisher": "The Ringer", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/O52keaRsbI7Eb1QiYvY-0KjG-fI=/0x0:1200x628/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25593828/DabbundoWorstToFirst_AP_Ringer.jpg", - "recommendation_id": "ae8f6c55-a6ef-43ca-995b-58788f1340b0", - "score": 1 - }, - { - "id": 4744553102394205, - "url": "https://www.sportico.com/leagues/football/2024/how-nfl-teams-owners-make-money-1234795113/?utm_source=pocket-newtab-en-us", - "title": "How NFL Teams and Owners Make Their Money", - "excerpt": "The NFL’s 32 teams generated an estimated $20.5 billion in revenue last year, 70% higher than what NBA and MLB teams made. TV is the driving force.", - "publisher": "Sportico", - "raw_image_src": "https://www.sportico.com/wp-content/uploads/2024/08/GettyImages-2168767155-e1724784926728.jpg?w=1024", - "recommendation_id": "1fee66b0-b352-4fe4-a461-9809f1fae480", - "score": 1 - }, - { - "id": 4951008296652531, - "url": "https://apnews.com/article/us-open-swiatek-calendar-811e0deff257faad9a5f55fa82e28c2a?utm_source=pocket-newtab-en-us", - "title": "Iga Swiatek and Other Tennis Players Say Their Mental and Physical Health Are Ignored", - "excerpt": "It’s nothing new for tennis players to worry aloud about their sport’s overcrowded calendar, too-tough season and too-short offseason.", - "publisher": "The Associated Press", - "raw_image_src": "https://dims.apnews.com/dims4/default/8557ad3/2147483647/strip/true/crop/2000x1125+0+104/resize/1440x810!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fe3%2F68%2Ffa9e59870523584ab445f87e94e1%2Fa9f9577cfbff40cdb282c00f6bd1bc5c", - "recommendation_id": "d264fe5b-9c76-4302-aaf2-c27bd232c2fc", - "score": 1 - }, - { - "id": 5148614590207024, - "url": "https://www.eater.com/24225596/best-zucchini-bread-recipe-ranking?utm_source=pocket-newtab-en-us", - "title": "Which Zucchini Bread Recipe Makes the Most Out of Summer Abundance?", - "excerpt": "Zucchini bread is a great way to use up an excess of summer squash, but not all recipes are created equal.", - "publisher": "Eater", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/Xz7DzXyi89bgkdLySKAngF8AmNo=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25583421/lede__1_.png", - "recommendation_id": "9f1b20ab-a721-4cd4-9a34-cd6751ec58bc", - "score": 1 - }, - { - "id": 1669887505274605, - "url": "https://www.usatoday.com/story/life/pets/2024/08/29/what-do-dogs-dream-about/74865197007/?utm_source=pocket-newtab-en-us", - "title": "Do Dogs Dream? It’s No Surprise – the Answer Is Pretty Cute.", - "excerpt": "Dogs can dream just like humans can, and while researchers aren’t certain, here’s what they likely picture when they twitch or growl in their sleep.", - "publisher": "USA Today", - "raw_image_src": "https://www.usatoday.com/gcdn/-mm-/9e1f6e2ee20f44aa1f3be4f71e9f3e52b6ae2c7e/c=0-110-2121-1303/local/-/media/2021/10/25/USATODAY/usatsports/dogecoin-sleeping-shiba-inu.jpg?width=2121&height=1193&fit=crop&format=pjpg&auto=webp", - "recommendation_id": "3b28f1dc-c0f5-4f59-9a93-e6cdcdf90358", - "score": 1 - }, - { - "id": 6458913960373998, - "url": "https://getpocket.com/collections/how-to-be-more-creative?utm_source=pocket-newtab-en-us", - "title": "How To Be More Creative", - "excerpt": "Twenty-one great articles and resources about the art and science of cultivating creativity.", - "publisher": "Pocket Collections", - "raw_image_src": "https://s3.amazonaws.com/pocket-curatedcorpusapi-prod-images/822a4805-7f11-4769-b434-22798a3233ac.jpeg", - "recommendation_id": "b0263acf-5419-4da5-bb7a-6fad9b470c00", - "score": 1 - }, - { - "id": 1025053198112710, - "url": "https://www.sfgate.com/sf-culture/article/emergency-burning-man-airlift-service-19731550.php?utm_source=pocket-newtab-en-us", - "title": "This Emergency Burning Man Service Costs $20, and Thousands Sign up for It", - "excerpt": "Like any city, Black Rock City has its share of accidents, injuries and even deaths. ", - "publisher": "SFGate", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/12be72dc-d364-4a39-887f-7fb453d19381.png", - "recommendation_id": "e11e4df7-231c-46b0-95cc-6324f6e4ef54", - "score": 1 - }, - { - "id": 6140350244852717, - "url": "https://www.theatlantic.com/health/archive/2024/08/our-houses-are-fuel-for-fires/679649/?utm_source=pocket-newtab-en-us", - "title": "The Wildfire Risk in America’s Front Yards", - "excerpt": "If we really want to keep communities safe, we need to think about where we build, and with what.", - "publisher": "The Atlantic", - "raw_image_src": "https://cdn.theatlantic.com/thumbor/vK7P14SS5IpfP3if3pzJ6Prnjkk=/0x61:2876x1559/1200x625/media/img/mt/2024/08/GettyImages_1059684446/original.jpg", - "recommendation_id": "d855d896-ccc7-4dc3-b475-a2b76a311cbb", - "score": 1 - }, - { - "id": 207858574713052, - "url": "https://www.washingtonpost.com/travel/2024/08/29/passport-photos-makeup-security-tiktok/?utm_source=pocket-newtab-en-us", - "title": "Your ‘Hot’ Passport Photo Could Be a Problem at the Airport", - "excerpt": "The passport photos are glam — some might say aspirational — and created with a multistep, multi-product process. They also might be a cautionary tale.", - "publisher": "The Washington Post", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/f88c668b-c07e-4d08-83f5-e4e6c6a38f5e.png", - "recommendation_id": "65e39884-83f7-490e-a943-f69e05ff75e2", - "score": 1 - }, - { - "id": 6548513307998425, - "url": "https://www.theverge.com/24230813/demure-mindful-trademark-uspto-explainer-jools-lebron?utm_source=pocket-newtab-en-us", - "title": "A Demure and Mindful Trademark Investigation", - "excerpt": "See how I wrote this legal explainer?", - "publisher": "The Verge", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/ghzs2dc_aNWjDEzhmbN0h9I8u0U=/0x0:2040x1360/1200x628/filters:focal(1020x680:1021x681)/cdn.vox-cdn.com/uploads/chorus_asset/file/25593501/247230_Demure_Mindful_TM_CVirginia_4.jpg", - "recommendation_id": "3da69809-498d-4525-a7e5-c250cc5f68a2", - "score": 1 - }, - { - "id": 5986195010620404, - "url": "https://www.eater.com/24224470/shrimp-corn-calabrian-chile-butter-for-one-recipe?utm_source=pocket-newtab-en-us", - "title": "A Buttery Corn and Shrimp Dish Ideal for the End of Summer", - "excerpt": "This dinner for one showcases ingredients that reach peak deliciousness in mere minutes.", - "publisher": "Eater", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/gmn0qDUIO7EvHQabAodf8FB4RPw=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25581236/Lede.png", - "recommendation_id": "a5c517c8-6921-4c17-8fde-a0828bc677eb", - "score": 1 - }, - { - "id": 6428931032359864, - "url": "https://www.npr.org/2024/08/29/nx-s1-5090967/birds-build-nests-tradition-culture-architecture?utm_source=pocket-newtab-en-us", - "title": "When Birds Build Nests, They’re Also Building a Culture", - "excerpt": "Nest-building isn’t just instinct. Birds can learn from others, letting groups within one species develop their own distinctive nest-building traditions.", - "publisher": "NPR", - "raw_image_src": "https://npr.brightspotcdn.com/dims3/default/strip/false/crop/1698x955+36+0/resize/1400/quality/100/format/png/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fe8%2Fb9%2Fb9aa4cf34256bf30765476f6631b%2Fbird-three.png", - "recommendation_id": "e0c903c2-83ce-4dd5-afb7-578462e937bb", - "score": 1 - } - ], - "status": "success" - } - } - }, - "loaded": true - }, - "spocs": { - "spocs_endpoint": "https://spocs.getpocket.com/spocs", - "lastUpdated": 1725215686352, - "data": { - "settings": { - "feature_flags": { - "collections": false, - "spoc_v2": true - }, - "spocsPerNewTabs": 1, - "domainAffinityParameterSets": { - "default": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 1, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 2, - "perfectFrequencyVisits": 10, - "recencyFactor": 0.5 - }, - "fully-personalized": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 0.01, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 2, - "perfectFrequencyVisits": 10, - "recencyFactor": 0.5 - }, - "fully-personalized-domains": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 0.01, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 10, - "perfectFrequencyVisits": 1, - "recencyFactor": 0.5 - } - }, - "timeSegments": [ - { - "id": "week-1", - "startTime": 432000, - "endTime": 0, - "weightPosition": 1 - }, - { - "id": "week-2", - "startTime": 864000, - "endTime": 432000, - "weightPosition": 1 - }, - { - "id": "week-3", - "startTime": 1296000, - "endTime": 864000, - "weightPosition": 1 - }, - { - "id": "week-4", - "startTime": 1728000, - "endTime": 1296000, - "weightPosition": 1 - }, - { - "id": "week-5", - "startTime": 2160000, - "endTime": 1728000, - "weightPosition": 1 - }, - { - "id": "week-6", - "startTime": 2592000, - "endTime": 2160000, - "weightPosition": 1 - } - ] - }, - "sponsored-topsites": { - "title": "", - "context": "", - "items": [] - } - }, - "loaded": true, - "frequency_caps": [], - "blocked": [], - "placements": [ - { - "name": "sponsored-topsites", - "ad_types": [ - 3120 - ], - "zone_ids": [ - 280143 - ] - }, - { - "name": "spocs", - "ad_types": [ - 3617 - ], - "zone_ids": [ - 217758, - 217995 - ] - } - ] - }, - "experimentData": { - "utmSource": "pocket-newtab", - "utmCampaign": "home-and-newtab-wallpapers-v1-rollout-us-and-ca", - "utmContent": "control" - }, - "recentSavesData": [], - "isUserLoggedIn": false, - "recentSavesEnabled": false, - "pocketButtonEnabled": true, - "saveToPocketCard": true, - "hideDescriptions": false, - "compactImages": false, - "imageGradient": false, - "newSponsoredLabel": false, - "titleLines": 3, - "descLines": 3, - "readTime": true - }, - "Search": { - "fakeFocus": false, - "hide": false - }, - "Wallpapers": { - "wallpaperList": [ - { - "theme": "light", - "title": "light-panda", - "schema": 1713902028543, - "fluent_id": "newtab-wallpaper-light-red-panda", - "attachment": { - "hash": "f9a34f02573401aea9366a9e97a4cdc92f925ad6ac8d56d0bedfaf0dff9e86b1", - "size": 531549, - "filename": "light-panda.avif", - "location": "main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@_melsayed", - "string": "Mohamed Elsayed" - }, - "webpage": { - "url": "https://unsplash.com/photos/red-panda-on-snow-covered-ground-during-daytime-DWpR-BpKlw0", - "string": "Unsplash" - } - }, - "id": "0294a982-05f7-4b73-846a-ae2ffca24b43", - "last_modified": 1713908231354, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-landscape", - "schema": 1713905326229, - "fluent_id": "newtab-wallpaper-dark-aurora", - "attachment": { - "hash": "dba39dab685c2bc6978354537c1bc8218a0abc455d0dd49c134c031264cfcd47", - "size": 437288, - "filename": "dark-aurora.avif", - "location": "main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@lightscape", - "string": "Lightscape" - }, - "webpage": { - "url": "https://unsplash.com/photos/northern-lights-over-snow-capped-mountian-LtnPejWDSAY", - "string": "Unsplash" - } - }, - "id": "2f32ee82-69b0-4b75-851c-917d57b59f0b", - "last_modified": 1713908231356, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-sky", - "schema": 1712696771636, - "fluent_id": "newtab-wallpaper-light-sky", - "attachment": { - "hash": "40a84002cfaf92fd38300e3987146f7b2ec3f5255e0427afbd30a52d7830c0e8", - "size": 100634, - "filename": "light-sky.avif", - "location": "main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@frostroomhead", - "string": "Rodion Kutsaiev" - }, - "webpage": { - "url": "https://unsplash.com/photos/cloudy-sky-8P-uQaTd8rw", - "string": "Unsplash" - } - }, - "id": "3547b1db-e72d-4b42-ba8c-a45c59a58eb4", - "last_modified": 1712759416279, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-color", - "schema": 1713902013746, - "fluent_id": "newtab-wallpaper-light-color", - "attachment": { - "hash": "cd28bc282ba8dda5f6660389eb2a7ba66a57691504de2eba3405ec20eeddd5a0", - "size": 288837, - "filename": "light-color.avif", - "location": "main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif", - "mimetype": "image/avif" - }, - "id": "395f6e0c-c66d-4209-a6bf-6c329cea90bb", - "last_modified": 1713908231352, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-mountain", - "schema": 1713901986092, - "fluent_id": "newtab-wallpaper-light-mountain", - "attachment": { - "hash": "f9fdf49580f9221ba2583d0a818d60ae79b9fd50246ef36798a264e6645b6709", - "size": 541196, - "filename": "light-mountain.avif", - "location": "main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@daesign?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash", - "string": "Sead Dedić" - }, - "webpage": { - "url": "https://unsplash.com/photos/mountain-covered-with-snow-under-white-clouds-si8OYpuLVBY?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash", - "string": "Unsplash" - } - }, - "id": "95a51610-48fc-482e-ac01-7e3319ae7108", - "last_modified": 1713908231350, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-panda", - "schema": 1712744600151, - "fluent_id": "newtab-wallpaper-dark-panda", - "attachment": { - "hash": "359ec1d08b10aec1ea6d5cb50ddb0ccbd7660301407ee2eb602cf877b1ab857a", - "size": 391823, - "filename": "dark-panda.avif", - "location": "main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@willrust", - "string": "Will Rust" - }, - "webpage": { - "url": "https://unsplash.com/photos/a-red-panda-yawns-in-a-tree-ERm7haDBW8k", - "string": "Unsplash" - } - }, - "id": "a6fbb3dd-cbbf-4a70-83b4-207943ff985b", - "last_modified": 1712759416259, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-color", - "schema": 1712696637182, - "fluent_id": "newtab-wallpaper-dark-color", - "attachment": { - "hash": "c433865edcc1eae2911f30caa95783adfe5642ec24e8bd41fcfc661276f93752", - "size": 206755, - "filename": "dark-color.avif", - "location": "main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@martz90", - "string": "Martin Martz" - }, - "webpage": { - "url": "https://unsplash.com/photos/a-close-up-of-a-cell-phone-with-a-blurry-background-uuNCR2NpiNE", - "string": "Unsplash" - } - }, - "id": "ac09202d-958f-4f8b-b47a-1d32ac79bc56", - "last_modified": 1712759416261, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-landscape", - "schema": 1712696741112, - "fluent_id": "newtab-wallpaper-light-landscape", - "attachment": { - "hash": "e03ad82c9a5c6da8873cbdd21a5186a61c2eab9fe582f68e8da84cbb79b97885", - "size": 223179, - "filename": "light-landscape.avif", - "location": "main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@caroliniecavalli", - "string": "Carolinie Cavalli" - }, - "webpage": { - "url": "https://unsplash.com/photos/birds-eye-view-photography-of-mountain-Qw3w0oBH63s", - "string": "Unsplash" - } - }, - "id": "ad655cd6-8b30-4b62-bc3b-8306f43074ed", - "last_modified": 1712759416281, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-sky", - "schema": 1716395853204, - "fluent_id": "newtab-wallpaper-dark-sky", - "attachment": { - "hash": "6ab2a71c1d5866c10f6c8bb555b019ed6127a48112e410694bedf6fe8d5cdab9", - "size": 461323, - "filename": "dark-sky.avif", - "location": "main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@felix_mittermeier", - "string": "Felix Mittermeier" - }, - "webpage": { - "url": "https://unsplash.com/photos/lightning-strike-under-cloudy-sky-WLGHjbC0Cq4", - "string": "Unsplash" - } - }, - "id": "ae0890cf-35a3-419f-8f2f-a8f824e387e4", - "last_modified": 1716487426093, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-mountain", - "schema": 1712697075672, - "fluent_id": "newtab-wallpaper-dark-mountain", - "attachment": { - "hash": "f5933a35945f5103ff98892f45ce03c59b2c3c1be35455faf45b10355492fd95", - "size": 308468, - "filename": "dark-mountain.avif", - "location": "main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@heytowner", - "string": "John Towner" - }, - "webpage": { - "url": "https://unsplash.com/photos/aerial-photo-of-brown-moutains-JgOeRuGD_Y4", - "string": "Unsplash" - } - }, - "id": "cb4752dc-cccb-4756-9232-f81af25ac7ea", - "last_modified": 1712759416272, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-beach", - "schema": 1716396166554, - "fluent_id": "newtab-wallpaper-dark-city", - "attachment": { - "hash": "7272b542d0b28513daa9c1bdb27ae09d606c189d1c144bc6d5b550b5020c67de", - "size": 713257, - "filename": "dark-beach.avif", - "location": "main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@yespanioly", - "string": "Yousef Espanioly" - }, - "webpage": { - "url": "https://unsplash.com/photos/seashore-DA_tplYgTow", - "string": "Unsplash" - } - }, - "id": "e85ffed2-658d-4e3e-a990-e54a1fb59f0a", - "last_modified": 1716487426090, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-beach", - "schema": 1716281724721, - "fluent_id": "newtab-wallpaper-light-beach", - "attachment": { - "hash": "ad65944319e9bb3fa4261e93d465cc51be35873608dfa71d46fe734ae4517c2a", - "size": 465893, - "filename": "light-beach-1.avif", - "location": "main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@oulashin", - "string": "Sean Oulashin" - }, - "webpage": { - "url": "https://unsplash.com/photos/seashore-during-golden-hour-KMn4VEeEPR8", - "string": "Unsplash" - } - }, - "id": "eaf8ffb0-66bf-44c9-a79c-1a185aacea5f", - "last_modified": 1716487426088, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif", - "category": "" - } - ], - "highlightSeenCounter": { - "value": 0 - }, - "categories": [] - }, - "Weather": { - "initialized": false, - "lastUpdated": null, - "query": "", - "suggestions": [], - "locationData": { - "city": "", - "adminArea": "", - "country": "" - }, - "searchActive": false, - "locationSearchString": "", - "suggestedLocations": [] - } -}; - -;,݄fԵ;GF :about:homealt-data1;80261,scriptversion20240819150008^ \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/00ECBF0FF8176F0BD9AA8D6DCB3FB0011DDA5A75 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/00ECBF0FF8176F0BD9AA8D6DCB3FB0011DDA5A75 deleted file mode 100644 index 4b62eef..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/00ECBF0FF8176F0BD9AA8D6DCB3FB0011DDA5A75 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/039090029E64BC91E87E77199A6A6BE11FC39B6F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/039090029E64BC91E87E77199A6A6BE11FC39B6F deleted file mode 100644 index 73100d8..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/039090029E64BC91E87E77199A6A6BE11FC39B6F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/039433B732292DBACDC5039BF680596454C285F2 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/039433B732292DBACDC5039BF680596454C285F2 deleted file mode 100644 index 814dafb..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/039433B732292DBACDC5039BF680596454C285F2 +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"signature":{"ref":"1o6nlklvtmm611leurd1df30pg","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"GSB9jj-IGr-MSbtc4W9ar4-Mt97fFg_ErzULvWFjtG7sWMPl7vFC2I_M39ASafVCAJGMzNAQQwUM5E5KxU3vNA7YKRKevILwe12mLTh5PYIQi273pr9jgFACzmRfWl7U","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"attachment":{"enabled":true,"required":false},"id":"personality-provider-models","last_modified":1725062412377,"bucket":"main"},"timestamp":1581703205374,"changes":[{"key":"nb_model_arts_and_entertainment","attachment":{"hash":"960065cc44a09bef89206d28048d3c23719d2f5e9b38cfc718ca864c9e0e91e9","size":69231,"filename":"nb_model_build_attachment_arts_and_entertainment.json","location":"main-workspace/personality-provider-models/47d2bcee-b6c1-464e-a443-e3527d029b0f.json","mimetype":"application/octet-stream"},"id":"4ce338a4-d209-4b35-a71d-439220dbe658","last_modified":1581703205374},{"key":"nb_model_autos_and_vehicles","attachment":{"hash":"022f9495f8867fea275ece900cfa7664c68c25073db4748343452dbc0b9eda17","size":45892,"filename":"nb_model_build_attachment_autos_and_vehicles.json","location":"main-workspace/personality-provider-models/24538f21-45ca-4dab-addb-65f655a688e2.json","mimetype":"application/octet-stream"},"id":"bfaaabd9-4a86-436d-8075-3b9b2272cb6f","last_modified":1581703205368},{"key":"nb_model_beauty_and_fitness","attachment":{"hash":"eed46e8fe6ff20f89884b4fc68a81e8d521231440301a01bb89beec8ebad296b","size":34431,"filename":"nb_model_build_attachment_beauty_and_fitness.json","location":"main-workspace/personality-provider-models/cdd3cdfb-1988-482a-850f-ec02aff07f45.json","mimetype":"application/octet-stream"},"id":"60983a74-47f3-4053-a3f8-f4dd22db1fa3","last_modified":1581703205363},{"key":"nb_model_blogging_resources_and_services","attachment":{"hash":"c9f2a779dba0bc886cc1255816bd776bdc2e8a6a8e0f9380495a92bb66862780","size":34639,"filename":"nb_model_build_attachment_blogging_resources_and_services.json","location":"main-workspace/personality-provider-models/30c71fa2-8842-419c-89db-addd30268f5b.json","mimetype":"application/octet-stream"},"id":"2425dbc4-5887-4d28-8857-2f97036dbb66","last_modified":1581703205358},{"key":"nb_model_books_and_literature","attachment":{"hash":"df23a5b6f583ec3b4dce2aca8ff53cbdfadfd58c4b7aeb2e397eade5ff75c996","size":69255,"filename":"nb_model_build_attachment_books_and_literature.json","location":"main-workspace/personality-provider-models/61c97d21-6576-4624-aa8b-37839293aebd.json","mimetype":"application/octet-stream"},"id":"95f796be-32bd-4427-bd35-673a80911a69","last_modified":1581703205352},{"key":"nb_model_business_and_industrial","attachment":{"hash":"8410809ebac544389cf27a10e2cbd687b7a68753aa50a42f235ac3fc7b60ce2c","size":46356,"filename":"nb_model_build_attachment_business_and_industrial.json","location":"main-workspace/personality-provider-models/c2485f5d-8bb1-4a45-a752-efffe9cd55c3.json","mimetype":"application/octet-stream"},"id":"3d7c0bc9-78eb-4cf2-9d3e-b1d23380ffb8","last_modified":1581703205346},{"key":"nb_model_computers_and_electronics","attachment":{"hash":"ab20b97406b0d9bf4f695e5ec7db4ebad5efb682311e74ca757d45b87ffc106b","size":46156,"filename":"nb_model_build_attachment_computers_and_electronics.json","location":"main-workspace/personality-provider-models/145b9461-d6cc-4341-8d96-ec3bacace059.json","mimetype":"application/octet-stream"},"id":"fe9835b3-db46-4388-8138-7a4a4fbd2991","last_modified":1581703205341},{"key":"nb_model_finance","attachment":{"hash":"384bf5fcc6928200c7ebb1f03f99bf74f6063e78d3cd044374448f879799318e","size":34557,"filename":"nb_model_build_attachment_finance.json","location":"main-workspace/personality-provider-models/18f03fe5-a60f-48c5-8cb8-13da750ca395.json","mimetype":"application/octet-stream"},"id":"4e49dcf7-3496-4f3a-af17-ce6ab31bce29","last_modified":1581703205336},{"key":"nb_model_food_and_drink","attachment":{"hash":"905357002f2eced8bba1be2285a9b83198f60d2f9bb1144b5c119994f2ec6e34","size":69237,"filename":"nb_model_build_attachment_food_and_drink.json","location":"main-workspace/personality-provider-models/bd6fe48d-f356-4af1-bb7e-4de42b1e6272.json","mimetype":"application/octet-stream"},"id":"36527827-a24c-42ee-87d1-675d7cac1d18","last_modified":1581703205331},{"key":"nb_model_games","attachment":{"hash":"35e67835a5cf82144765dfb1095ebc84ac27d08812507ad0a2d562bf68e13e85","size":46043,"filename":"nb_model_build_attachment_games.json","location":"main-workspace/personality-provider-models/a3944b1a-5464-406f-a97e-691702019575.json","mimetype":"application/octet-stream"},"id":"71bae716-da8f-4dcf-b9a7-65aedf3ef05c","last_modified":1581703205326},{"key":"nb_model_health","attachment":{"hash":"150f21c4f60856ab5e22891939d68d062542537b42a7ce1f8a8cec9300e7c565","size":34619,"filename":"nb_model_build_attachment_health.json","location":"main-workspace/personality-provider-models/281d6a98-5f8e-4bc4-8bae-72e7e16933ca.json","mimetype":"application/octet-stream"},"id":"40074f19-2936-4ae4-b76f-4cde1dd8686b","last_modified":1581703205320},{"key":"nb_model_hobbies_and_leisure","attachment":{"hash":"47db7797297a2a81d28c551117e27144b58627dbac1b1d52672b630d220f025d","size":69281,"filename":"nb_model_build_attachment_hobbies_and_leisure.json","location":"main-workspace/personality-provider-models/06e44aaa-324b-47ac-b458-72e1bccdf86b.json","mimetype":"application/octet-stream"},"id":"0a6cf783-bb91-4991-bd5d-baae3cdba76f","last_modified":1581703205315},{"key":"nb_model_home_and_garden","attachment":{"hash":"19edd15ebce419b83469d2ab783c0c1377d72a186d1ff08857a82bca842eea54","size":34426,"filename":"nb_model_build_attachment_home_and_garden.json","location":"main-workspace/personality-provider-models/fa731eb2-b049-44bc-a12d-f42f7cea991d.json","mimetype":"application/octet-stream"},"id":"2842a1a5-cf67-4dfc-9cd5-4daa03d68514","last_modified":1581703205310},{"key":"nb_model_internet_and_telecom","attachment":{"hash":"e646d43505c9c4e53dbaa474ef85d650a3f309ccf153d106f328d9b6aeb66d52","size":69474,"filename":"nb_model_build_attachment_internet_and_telecom.json","location":"main-workspace/personality-provider-models/76666027-45db-4baa-8197-6e0f886966a8.json","mimetype":"application/octet-stream"},"id":"bacf15e3-3ebb-41bf-b177-c0f6fd73d713","last_modified":1581703205305},{"key":"nb_model_jobs_and_education","attachment":{"hash":"29080288b2130a67414ecb296a53ddd9f0a4771035e3c1b2112e0ce656a7481a","size":34682,"filename":"nb_model_build_attachment_jobs_and_education.json","location":"main-workspace/personality-provider-models/3fcbb458-7362-47bb-a426-6b542eb2f014.json","mimetype":"application/octet-stream"},"id":"f626d2c6-2279-4a9b-8a8c-c1841a51e546","last_modified":1581703205300},{"key":"nb_model_law_and_government","attachment":{"hash":"257ee9a218a1b7f9c1a6c890f38920eb7e731808e3d9b9fc956f8346c29a3e63","size":69669,"filename":"nb_model_build_attachment_law_and_government.json","location":"main-workspace/personality-provider-models/e8645388-afc5-48e3-8f3f-80f82a5353dc.json","mimetype":"application/octet-stream"},"id":"42430cb9-7895-4f21-a736-51a79c589dec","last_modified":1581703205295},{"key":"nb_model_online_communities","attachment":{"hash":"11b6084552e2979b5bc0fd6ffdc61e445d49692c0ae8dffedc07792f8062d13f","size":69601,"filename":"nb_model_build_attachment_online_communities.json","location":"main-workspace/personality-provider-models/1db0b78b-42f2-44fd-b78c-43f5fc760fa1.json","mimetype":"application/octet-stream"},"id":"9666ea9d-01ec-4621-9df6-f5cb6aada73b","last_modified":1581703205290},{"key":"nb_model_people_and_society","attachment":{"hash":"4990a5d17bea15617624c48a0c7c23d16e95f15e2ec9dd1d82ee949567bbaec0","size":46201,"filename":"nb_model_build_attachment_people_and_society.json","location":"main-workspace/personality-provider-models/ad749af2-93d7-4bf3-982f-a558175fd806.json","mimetype":"application/octet-stream"},"id":"c158571e-6439-450d-961a-477aea6d6a34","last_modified":1581703205285},{"key":"nb_model_pets_and_animals","attachment":{"hash":"dd537bfb1497eb9457c0c8ecbd2846f325e13ddef3988fd293a29e68ab0b2671","size":45957,"filename":"nb_model_build_attachment_pets_and_animals.json","location":"main-workspace/personality-provider-models/393f4033-c815-48d4-bf23-1eb42b4d30db.json","mimetype":"application/octet-stream"},"id":"ba0f3b7e-dc1f-4ce9-81ab-9116cc5e9771","last_modified":1581703205279},{"key":"nb_model_real_estate","attachment":{"hash":"efcf6b2d09e89b8c449ffbcdb5354beaa7178673862ebcdd6593561f2aa7d99a","size":69463,"filename":"nb_model_build_attachment_real_estate.json","location":"main-workspace/personality-provider-models/8267a2cc-0984-4410-87db-c02530703a98.json","mimetype":"application/octet-stream"},"id":"f1b9bfb5-2134-43c9-9fdb-d45b98f41d0c","last_modified":1581703205274},{"key":"nb_model_reference","attachment":{"hash":"3619daa64036d1f0197cdadf7660e390d4b6e8c1b328ed3b59f828a205a6ea49","size":57987,"filename":"nb_model_build_attachment_reference.json","location":"main-workspace/personality-provider-models/2a0dbd55-2eae-44ea-b787-5379594979ff.json","mimetype":"application/octet-stream"},"id":"342e8068-c1e5-4433-941a-6f2406d6cddc","last_modified":1581703205269},{"key":"nb_model_science","attachment":{"hash":"9606ce3988b2d2a4921b58ac454f54e53a9ea8f358326522a8b1dcc751b50b32","size":57883,"filename":"nb_model_build_attachment_science.json","location":"main-workspace/personality-provider-models/5d011771-de98-48f3-8565-7fc1ef6439c3.json","mimetype":"application/octet-stream"},"id":"fb4c92d8-0ed8-4b70-9692-69118dec2f94","last_modified":1581703205264},{"key":"nb_model_shopping","attachment":{"hash":"bfd7e68ddca6696c798412402965a0384df0c8c209931bbadabf88ccb45e3bb6","size":69255,"filename":"nb_model_build_attachment_shopping.json","location":"main-workspace/personality-provider-models/f477331d-33dc-4dfe-be46-88d5223fb439.json","mimetype":"application/octet-stream"},"id":"c650c1ae-2dbb-46a0-9fa5-15484d354c77","last_modified":1581703205259},{"key":"nb_model_sports","attachment":{"hash":"44da98b03350e91e852fe59f0fc05d752fc867a5049ab0363da8bb7b7078ad14","size":57532,"filename":"nb_model_build_attachment_sports.json","location":"main-workspace/personality-provider-models/0685a1b5-34eb-4c13-8c90-bc82735e527f.json","mimetype":"application/octet-stream"},"id":"feca67ec-c083-4684-8ffd-de6864184e9b","last_modified":1581703205254},{"key":"nb_model_travel","attachment":{"hash":"4336ac211a822b0a5c3ce5de0d4730665acc351ee1965ea8da1c72477e216dfa","size":69406,"filename":"nb_model_build_attachment_travel.json","location":"main-workspace/personality-provider-models/170a56ca-c1bf-4181-9b30-693002f7e245.json","mimetype":"application/octet-stream"},"id":"08f04515-f4ab-4280-814e-d3e0e3e93261","last_modified":1581703205249}]}G7qfԵ5fԵ5GFfԻ@a,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/personality-provider-models/changeset?_expected=1581703205374strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp0TAQAEAAAAAAABAQAAAAAAAAZ4MjU1MTkAAAAOUlNBLVBTUy1TSEEyNTYAA2YKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABWMwggVfMIIER6ADAgECAhIEXXrStAKI8dBG//aIwU4LC7UwDQYJKoZIhvcNAQELBQAwMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDAeFw0yNDA4MTQyMDU4NTFaFw0yNDExMTIyMDU4NTBaMCYxJDAiBgNVBAMTG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPTa53DIjzaqZd5kMT4eo+HUtyGe25t7p0w99s7Ko3/FZv1CO6T9MQPwQrH4eBQVjCTYvYEsN1iV9udxaqFfokQblHsrrauygXHQn4UYRYfEQs372ZtfE+Rea48HEaVuBTCgKMdrMHQnLHzw16sX/jYeNRdUyHy9FM15EU/j8yaqw4x26zX4hA75FHyl7y1i81qKuLuKdyUCNzHell07rbcBwkEh+K8RlT7eAccJDCtpeBPaDbhB0nYqD0XAhAgSTd1FHkgZAGQLZIdZQH7OnSBtGFz6Ls5ucoXCRaxndYykg0EwtLl2aXrWx6GDo8ifQpEqJ44C68x2CAYaYOpo1q8CAwEAAaOCAngwggJ0MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUCkSuZlXfRX9PMZIKrdW+OmaMb6QwHwYDVR0jBBgwFoAUu7zDR6XkvKnGw6RyDBCNojXhyOgwVwYIKwYBBQUHAQEESzBJMCIGCCsGAQUFBzABhhZodHRwOi8vcjEwLm8ubGVuY3Iub3JnMCMGCCsGAQUFBzAChhdodHRwOi8vcjEwLmkubGVuY3Iub3JnLzB/BgNVHREEeDB2giVmaXJlZm94LnNldHRpbmdzLnNlcnZpY2VzLm1vemlsbGEuY29tgjBwcm9kLnJlbW90ZS1zZXR0aW5ncy5wcm9kLndlYnNlcnZpY2VzLm1vemdjcC5uZXSCG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzATBgNVHSAEDDAKMAgGBmeBDAECATCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AN/hVuuqBa+1nA+GcY2owDJOrlbZbqf1pWoB0cE7vlJcAAABkVLlQI4AAAQDAEcwRQIhAKqbN2T48PzhSjc67vDtTPRR3FQLCWBayH1G/1BDXXxeAiB/eN7mXE1c04QZA0EHd0plfxSBBuYmwqV5XE4JuLkyAgB2AEiw42vapkc0D+VqAvqdMOscUgHLVt0sgdm7v6s52IRzAAABkVLlQekAAAQDAEcwRQIgPUPh11LsJ2rF7UW1PAqm3RcKq9peuaLV63kZwjqwMuQCIQCZP+6m0nk+krD7txRzWL4YtdGaDkui61PQCGsFMuQbPDANBgkqhkiG9w0BAQsFAAOCAQEAznnoXVWiW7JA2ts94vIDBN2YeAbjNH9ITzb/LAyCMQFA+NTuF7U/XI9szFkgFxLr0M4cxs68oSPTW0HI0jfs0hfkx8pgB+QCfmAwNzV0nHmZo5g5I/4PSEr5GG6VkMEXMVQuH3Z9SWmXv1x0XYQzIBnvYvamrT+tuTrP/bd1A8z0LDHZ3p8W5TNjsxw/DwF1z6M39C6RrbDb1f016C4amVQribnmW9R24tKWlr4H6/tD4HkuTsdereu9WVKM7c1dta2mg8jLxBCdbWeJ5ckwtQQUUc4STU2To10XCjYjFvUl+b40xrzn+2bM4y1GxTXCYXFsWkXo68DsqN5SNPcenWYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABQkwggUFMIIC7aADAgECAhBLqFKT95ovonMGS6gEjXXQMA0GCSqGSIb3DQEBCwUAME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMB4XDTI0MDMxMzAwMDAwMFoXDTI3MDMxMjIzNTk1OVowMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM9X5ebEVBLttEf+ySdYdkZQKIwdPojfBZ3VtRgpvd21Wr/69s6jvq8AIUtiWlo8AS/FWAP2if+OEUPrwbXgFAeWj28f1+e6gTkJdWW3wq8YWzcmKOej9AcrbRr/q1i8la5A/+nLV8S1W394DRhhvBfnVMa7SZHNbhjRgIXupmU2vHTqvFBM6vwh8zgWk5S6sNNrOAbNFhJ6ylJ1yK12ssKcXZhFXG9he8Yt7jwTUoYB2VfmOBzfjbUfkpGa50oczEWoclXwsOajB+z9pxtmnj9Ii3GEcVjJOvrvXvJbRCs8dOePskfBB2rNmrcNlvcSgSZRVArsYfb39eLyisiVDY0CAwEAAaOB+DCB9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLu8w0el5LypxsOkcgwQjaI14cjoMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAEDDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5jci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQCSsedBN+t5nYHmzeIl4Tog6ZBElaOBXM/DXf29oHDVsZYoIgvS8ijPDOfU5kOMJCIdwUKS0Qmvn0v0yHBPIBaxWt0B9h/4H2FrFCewco1jru7izkvPN927o9TN561Qrb2/4+w+YjZwmTGn6I3d6mLiEq71nNQ9LAyq0Jx5vuo9XERuljFjWn3Wfk8koEsFf15v0tTqXzNLE9ZXtsreUbhdowmCdP3HeJ6zuawW2korlsO2i2KP+XQZop4D3ulvm7AP0qBa9oVcwgS3yNVOMsS/BF28Kfb3gY8MXTxTyUCQi/u2CGW5pCHVCeUThIQ3gs4QKPx2wgYlekZSTdpTcqQnP2JwrL5pSAD7Zw/bW6Ho1wMhLdfJ9plCOYND33cKEgjxJda6lBlUGIilxY7hGpmTeWvsHPkxQLDMMgDfn17ntJKrkIKRjQ3gHpW6WTsuS1/Ct0Y1UjkGwL2qrFLBIqBEl5n3DKAhp6FscUcWFwFowMqmJmUEfLOuyeeUVcJvmzwcqfkuxSAa8HbgvuwY1k/YJft2Eei/5iEP6OjMtban1bj3n0HPYSJGaoO2aJcufOpOldsj6y7IKyiEpGDpSfRELjv5ymJXAeJdkBb5yfx6I0iOptWBcvEo+l3O++1Oc4+ULtJBlJiZ26evcF/1vvsCIL9mJ2y0rfp1EgsrPs4DnmYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABW8wggVrMIIDU6ADAgECAhEAghDPsNJA41lEY+C7Y4KLADANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0xNTA2MDQxMTA0MzhaFw0zNTA2MDQxMTA0MzhaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAregkc/QUN/ObnitXKByHvty33ziQjG485legePd1wqL+9Wpu9gBPKNveaIZsRJO2sWP9FBJrvx/S6jGbIX7RMzy6SPXded+zuP8S8SGaS8GKhnFpSmZmbI9+PHC/rSkiBvPkwOaAruJLj7eZfpQDn9NHl3yZSCNT6DiuTwpvgy7RSVeMgHS22i/QOI17A3AhG3XyMDz6j67d2mOr6xZPwo4RS37PC+j/tXcu9LJ7SuBMEiUMcI0DKaDhUyTsE9nuGb8Qs0qMP4mjYVHerIcHlPRjcewu4m9bmIHhiVw0eWx27zuQYnnm26SaLybF0BDhDt7ZEI4W+7f3qPfH5QIHmI82CJXn4jeWDTZ1nvsOcrEdm7wD+UkF2IHdBbQq1kHprAF2lQoP2N/VvRIfNS8oF2zSmMGoCWR3bkc3us6sWV5onX9y1onFBkEpPlk+3Sb1JMkRp1qjTEAfRqGZtac6UW6GO559cqcSBXhZ7T5ReBULA4+N0C8Fsj57ShxLcwUS/Mbq4FATfEOTdLPKdOeOHwEI0DDUW3E2tAe6wTAwXEi3gjuYpn1giqKjKYLMur2DBBuigwNBodYF8RvCtvCofIY7RqhIKojcdpp2vx9qpT0Zj+s482TeyCsNCij/99viFULUItAnXeF5/hjncIitTubZizrG3SdRbv+8ZPUzQ08CAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHm0WeZ7tuXkAXOACIjIGlj26ZtuMA0GCSqGSIb3DQEBCwUAA4ICAQBVH1ipvLKoUNAMsdgaaSAnKQisYXVcim74guVpL9X2Vku5uHMQWdMhl37nTHH7stJgrTmoC+oXIVaF8VAOWevO4FnpuskV74adj4SA9uTpkZDcF5tiG0XwZpXSfG/C6jvvH8/L1q4n8amwyK79fX6a+iIE6//Zf+qRKyKxFw6P8oo0W1jY/AHJVLm4JsyKiDOJTC2EPILf7pZXBbosu/fEt8dOO4K+Mcgic3OS0cKApDk5EDMjgkw8n4ayVZgdvimGjCKbnuJrO1c6gnBN3AnHicsKB01s6F2Oye/Oq8e7tStORdZK0CbM5XLKCGqlleMVofek7cksX6X7/6woAi6+13u743F7kBbTB15GU3w3B0KM08SWnNWZtSrglRqASK5MOQfOzEekUpUrurj7rdIzU33lHU1t1aGxx0Jv5kAnNVyjKLcHjeeNM5DnI5/7UJx5bEbVtBWzlm5+mwyWOrhSLT/WW+H7CMKE/iSoo4narGrhGCqxqENhW9Mf3DuNdvIt6I113xczbD1T+3vLQV//3KLQYTjhlrisXYs313XVM8CZEa6dQcFydYS+AkFCX2ckSJTRmye+Bz+5uE+BdFHherftnSPivuDVKAQTPDEDnt16bI/GBxjGf95Hjj8ongQGz6VUNHe97Imb6RdD31vbX/6OHleizUCdfmIi2t4YJwAAAAEAAAACaDIBAQAAAABBYW5vbjp0bHNmbGFnczB4MDAwMDAwMDA6ZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbTo0NDMAAA==request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 10938 -access-control-allow-origin: * -access-control-expose-headers: Alert, Content-Type, Retry-After, Backoff, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:06:40 GMT -age: 2053 -last-modified: Sat, 31 Aug 2024 00:00:12 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 10938 -access-control-allow-origin: * -access-control-expose-headers: Alert, Content-Type, Retry-After, Backoff, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:06:40 GMT -age: 2053 -last-modified: Sat, 31 Aug 2024 00:00:12 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1* \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/08E944608EE784D3FA3E916761B351A93505A0F2 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/08E944608EE784D3FA3E916761B351A93505A0F2 deleted file mode 100644 index d3fe1e5..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/08E944608EE784D3FA3E916761B351A93505A0F2 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/094A5FA25D56295058D77CC5F86E2D4A73ACC96F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/094A5FA25D56295058D77CC5F86E2D4A73ACC96F deleted file mode 100644 index c04b106..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/094A5FA25D56295058D77CC5F86E2D4A73ACC96F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/09A1B1D6ED2BA792DDE486D158594770DC8E730F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/09A1B1D6ED2BA792DDE486D158594770DC8E730F deleted file mode 100644 index 5531b14..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/09A1B1D6ED2BA792DDE486D158594770DC8E730F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/09A38E6EE3AB8885580636097E114C70AAC93818 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/09A38E6EE3AB8885580636097E114C70AAC93818 deleted file mode 100644 index ba273bb..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/09A38E6EE3AB8885580636097E114C70AAC93818 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0A4DDCC11CEBCDAD66490C2477115E613EE22753 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0A4DDCC11CEBCDAD66490C2477115E613EE22753 deleted file mode 100644 index 3f68644..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0A4DDCC11CEBCDAD66490C2477115E613EE22753 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0A5FD4027375226ECF1B25C5831FDDC41A76280F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0A5FD4027375226ECF1B25C5831FDDC41A76280F deleted file mode 100644 index 4cb6d29..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0A5FD4027375226ECF1B25C5831FDDC41A76280F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0EDDF8C091E2FED62E44BEDDDC1723F5BF38FE4F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0EDDF8C091E2FED62E44BEDDDC1723F5BF38FE4F deleted file mode 100644 index 6e5ec65..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/0EDDF8C091E2FED62E44BEDDDC1723F5BF38FE4F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/109D080055C1548CE320A422FD98DA1D5E1A5BC8 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/109D080055C1548CE320A422FD98DA1D5E1A5BC8 deleted file mode 100644 index 867533f..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/109D080055C1548CE320A422FD98DA1D5E1A5BC8 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/111AE63D71402EFB02DAB8AC254CA509866314D5 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/111AE63D71402EFB02DAB8AC254CA509866314D5 deleted file mode 100644 index ae9fa5f..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/111AE63D71402EFB02DAB8AC254CA509866314D5 +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"bucket":"monitor"},"timestamp":1725202629204,"changes":[{"id":"19e79f22-62cf-92e1-c12c-a3b4b9cf51be","last_modified":1603126502200,"bucket":"blocklists","collection":"plugins","host":"firefox.settings.services.mozilla.com"},{"id":"b7f595f9-5fc5-d863-b5dd-e5425dcf427a","last_modified":1604940558744,"bucket":"blocklists","collection":"addons","host":"firefox.settings.services.mozilla.com"},{"id":"061d4584-acd0-fecc-b5fb-dcfe0ad5e123","last_modified":1624388514784,"bucket":"blocklists","collection":"qa","host":"firefox.settings.services.mozilla.com"},{"id":"3fadb169-e5de-a2f0-374e-6eeb3eac3dbb","last_modified":1692730580117,"bucket":"blocklists","collection":"gfx","host":"firefox.settings.services.mozilla.com"},{"id":"0e543556-43bf-3139-1fda-2a0068116c6d","last_modified":1717705203176,"bucket":"blocklists","collection":"certificates","host":"firefox.settings.services.mozilla.com"},{"id":"c521b443-368f-2e18-a853-066abaa1e9e3","last_modified":1724351846412,"bucket":"blocklists","collection":"addons-bloomfilters","host":"firefox.settings.services.mozilla.com"},{"id":"3ace9d8e-00b5-a353-7fd5-1f081ff482ba","last_modified":1603099530179,"bucket":"blocklists-preview","collection":"plugins","host":"firefox.settings.services.mozilla.com"},{"id":"c6671b58-a04c-2753-1904-decfb584f9ce","last_modified":1604936711141,"bucket":"blocklists-preview","collection":"addons","host":"firefox.settings.services.mozilla.com"},{"id":"e42f495f-e3fb-6d65-4edd-51dd0f3985f3","last_modified":1573556826481,"bucket":"blocklists-preview","collection":"qa","host":"firefox.settings.services.mozilla.com"},{"id":"be77064f-af40-d297-93f9-91e676ec04ea","last_modified":1692730325835,"bucket":"blocklists-preview","collection":"gfx","host":"firefox.settings.services.mozilla.com"},{"id":"380cd5a8-a585-42ef-3ee6-93bc618bcc36","last_modified":1725100834801,"bucket":"main","collection":"nimbus-preview","host":"firefox.settings.services.mozilla.com"},{"id":"0ad92238-e4ce-dd27-57f8-c97134add3c9","last_modified":1544035467383,"bucket":"main","collection":"sites-classification","host":"firefox.settings.services.mozilla.com"},{"id":"0164d8d8-c422-4215-1f5a-70f62b85bf44","last_modified":1562796064168,"bucket":"main","collection":"focus-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"248f8630-6807-ab30-6370-14918dc824c2","last_modified":1564511755134,"bucket":"main","collection":"anti-tracking-url-decoration","host":"firefox.settings.services.mozilla.com"},{"id":"e02dce4c-7a13-3dda-6e62-d6d9084e82f5","last_modified":1569443132800,"bucket":"main","collection":"cfr-srg","host":"firefox.settings.services.mozilla.com"},{"id":"5f39c5e3-7a2a-3868-c29d-e7f11d76d66b","last_modified":1575468539758,"bucket":"main","collection":"public-suffix-list","host":"firefox.settings.services.mozilla.com"},{"id":"0d61e3ec-c708-b839-512a-e09c3f5f1880","last_modified":1581703205374,"bucket":"main","collection":"personality-provider-models","host":"firefox.settings.services.mozilla.com"},{"id":"5b1ab327-5196-0f05-629f-fdd288138d69","last_modified":1593104364892,"bucket":"main","collection":"windows-default-browser-agent","host":"firefox.settings.services.mozilla.com"},{"id":"e535535a-be20-8cb5-d162-ba72b1d81f3f","last_modified":1595950625167,"bucket":"main","collection":"pioneer-study-addons","host":"firefox.settings.services.mozilla.com"},{"id":"3f7e9dcc-c522-ea35-c98b-9334230153aa","last_modified":1600363002708,"bucket":"main","collection":"regions","host":"firefox.settings.services.mozilla.com"},{"id":"2ca9d0dc-f44b-9e48-5f37-37a90600b10f","last_modified":1602876354998,"bucket":"main","collection":"mobile-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"958b14fa-88b0-ec42-8e68-464502a21eb1","last_modified":1603308987530,"bucket":"main","collection":"personality-provider-recipe","host":"firefox.settings.services.mozilla.com"},{"id":"10583668-d3dc-6025-0200-dbcec975ac47","last_modified":1604450883297,"bucket":"main","collection":"pioneer-content-v1","host":"firefox.settings.services.mozilla.com"},{"id":"301b5e58-eec9-4f1e-2f97-09abedfef627","last_modified":1723136665642,"bucket":"main","collection":"top-sites","host":"firefox.settings.services.mozilla.com"},{"id":"c9a369e7-cbe2-f617-0ebf-c5e892b829e4","last_modified":1724436068094,"bucket":"main","collection":"fakespot-suggest-products","host":"firefox.settings.services.mozilla.com"},{"id":"772d1b8b-89e9-bfd6-32ba-a0fc9713179f","last_modified":1724436366651,"bucket":"main","collection":"nimbus-web-preview","host":"firefox.settings.services.mozilla.com"},{"id":"9cee02bd-bc7a-cacc-333f-61dbc4575260","last_modified":1724444594146,"bucket":"main","collection":"translations-models","host":"firefox.settings.services.mozilla.com"},{"id":"501583ca-d580-51de-0584-dab08102506d","last_modified":1725048161144,"bucket":"main","collection":"nimbus-desktop-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"e9f76a09-1c31-7dce-7c40-8abfbcfb244d","last_modified":1724976063655,"bucket":"main","collection":"normandy-recipes-capabilities","host":"firefox.settings.services.mozilla.com"},{"id":"8451eb15-8141-758c-6dd1-6d9f04146fa9","last_modified":1605801189258,"bucket":"main","collection":"hijack-blocklists","host":"firefox.settings.services.mozilla.com"},{"id":"6fcd379b-83fc-111c-e7f5-c9fa9d7caf25","last_modified":1607042143590,"bucket":"main","collection":"pioneer-study-addons-v1","host":"firefox.settings.services.mozilla.com"},{"id":"a998e5e0-c645-25e4-8306-d22953baacb4","last_modified":1607983636189,"bucket":"main","collection":"pioneer-content-v2","host":"firefox.settings.services.mozilla.com"},{"id":"2652b5c8-7854-2c47-d567-19bbcaae38e5","last_modified":1607983639228,"bucket":"main","collection":"pioneer-study-addons-v2","host":"firefox.settings.services.mozilla.com"},{"id":"1611c176-3998-f3df-07b7-c1858138d48b","last_modified":1617030573137,"bucket":"main","collection":"whats-new-panel","host":"firefox.settings.services.mozilla.com"},{"id":"e4764d29-ebad-2f17-3945-cdff8214f400","last_modified":1627481728329,"bucket":"main","collection":"tippytop","host":"firefox.settings.services.mozilla.com"},{"id":"6f8a35aa-c73e-2e16-bff9-956ee6f17a46","last_modified":1635892651252,"bucket":"main","collection":"nimbus-desktop-defaults","host":"firefox.settings.services.mozilla.com"},{"id":"45a93597-80e3-cc6c-f29c-1ad6e0dd4455","last_modified":1641843848274,"bucket":"main","collection":"rally-studies-v1","host":"firefox.settings.services.mozilla.com"},{"id":"6caeca19-d819-2f9c-cfe3-8b0c1de9b52b","last_modified":1644517845433,"bucket":"main","collection":"search-telemetry","host":"firefox.settings.services.mozilla.com"},{"id":"a252dd48-1252-7149-1c3f-1e82697843af","last_modified":1647549722107,"bucket":"main","collection":"doh-providers","host":"firefox.settings.services.mozilla.com"},{"id":"d7bee3b1-5225-494c-c375-72931c7407bf","last_modified":1648230346681,"bucket":"main","collection":"ms-language-packs","host":"firefox.settings.services.mozilla.com"},{"id":"42830d75-4c14-f884-1ceb-05febc3902b9","last_modified":1651753780606,"bucket":"main","collection":"doh-config","host":"firefox.settings.services.mozilla.com"},{"id":"568454e9-c59e-4b6f-0c12-3dcd53a12296","last_modified":1653469171354,"bucket":"main","collection":"devtools-devices","host":"firefox.settings.services.mozilla.com"},{"id":"7a804898-26d6-ff1b-096a-df6246714e38","last_modified":1659924446436,"bucket":"main","collection":"websites-with-shared-credential-backends","host":"firefox.settings.services.mozilla.com"},{"id":"eb808f2d-5de3-89d6-4252-03823ccaded5","last_modified":1672463216411,"bucket":"main","collection":"rally-studies-v2","host":"firefox.settings.services.mozilla.com"},{"id":"8c581745-110d-0d30-f0f2-fe999bc1fde7","last_modified":1673270322227,"bucket":"main","collection":"language-dictionaries","host":"firefox.settings.services.mozilla.com"},{"id":"71e468d0-8006-a831-873e-64d518cd8515","last_modified":1674595048726,"bucket":"main","collection":"password-recipes","host":"firefox.settings.services.mozilla.com"},{"id":"2c2bcb35-b5f7-e015-b54f-3d60feccf26d","last_modified":1679600032742,"bucket":"main","collection":"password-rules","host":"firefox.settings.services.mozilla.com"},{"id":"4bf857cb-8e73-0d27-ddcf-08f2bb797163","last_modified":1681500405555,"bucket":"main","collection":"translations-identification-models","host":"firefox.settings.services.mozilla.com"},{"id":"8ee6692e-d686-a614-6e4f-23d71b55b7f3","last_modified":1683667257606,"bucket":"main","collection":"fxmonitor-breaches","host":"firefox.settings.services.mozilla.com"},{"id":"e80aaa02-f8ae-a788-8426-059a8c4fcd2e","last_modified":1688747728721,"bucket":"main","collection":"addons-manager-settings","host":"firefox.settings.services.mozilla.com"},{"id":"651e8969-24fa-eb4a-aa3d-d64b894cbe9a","last_modified":1694689843914,"bucket":"main","collection":"query-stripping","host":"firefox.settings.services.mozilla.com"},{"id":"274942c0-0ac3-cabd-0eca-3889bdfa926b","last_modified":1699046525260,"bucket":"main","collection":"cfr","host":"firefox.settings.services.mozilla.com"},{"id":"889a101d-bade-d030-e233-a18beceba9cf","last_modified":1702403047185,"bucket":"main","collection":"partitioning-exempt-urls","host":"firefox.settings.services.mozilla.com"},{"id":"28f0e7fd-7af7-617f-eba3-ba80e5f7148f","last_modified":1705701099603,"bucket":"main","collection":"translations-wasm","host":"firefox.settings.services.mozilla.com"},{"id":"49db3966-ee3d-979b-5014-4011f6d5e79b","last_modified":1709217485713,"bucket":"main","collection":"search-config-overrides","host":"firefox.settings.services.mozilla.com"},{"id":"92c52502-9661-6d8b-9389-f2732f6f5caf","last_modified":1710333238310,"bucket":"main","collection":"search-config-overrides-v2","host":"firefox.settings.services.mozilla.com"},{"id":"aea574eb-2997-6453-0c09-1851fc1b2561","last_modified":1710766850143,"bucket":"main","collection":"search-config","host":"firefox.settings.services.mozilla.com"},{"id":"b482b902-198d-8d2f-16b0-3510f086dceb","last_modified":1711033331878,"bucket":"main","collection":"devtools-news","host":"firefox.settings.services.mozilla.com"},{"id":"03247ba1-6c92-841f-f282-1ee436cc8a1d","last_modified":1715008862535,"bucket":"main","collection":"fingerprinting-protection-overrides","host":"firefox.settings.services.mozilla.com"},{"id":"572c01f9-9f5b-5de0-717b-b4e9a21c9cf0","last_modified":1716487426093,"bucket":"main","collection":"newtab-wallpapers","host":"firefox.settings.services.mozilla.com"},{"id":"ecf46491-801a-ee6b-c771-432925b584da","last_modified":1717071078321,"bucket":"main","collection":"cookie-banner-rules-list","host":"firefox.settings.services.mozilla.com"},{"id":"d5795030-b96f-0d09-e315-f8f02cfe2932","last_modified":1719847110309,"bucket":"main","collection":"backup-recovery-download-links","host":"firefox.settings.services.mozilla.com"},{"id":"800de7cf-140e-6617-2685-c0490d8d29cb","last_modified":1720457798358,"bucket":"main","collection":"bounce-tracking-protection-exceptions","host":"firefox.settings.services.mozilla.com"},{"id":"cfe13ca2-8007-1935-aea8-b31c7bcefd8d","last_modified":1721063513248,"bucket":"main","collection":"search-default-override-allowlist","host":"firefox.settings.services.mozilla.com"},{"id":"aebe2560-a214-46a3-e18f-82912d0a7707","last_modified":1721068497119,"bucket":"main","collection":"newtab-wallpapers-v2","host":"firefox.settings.services.mozilla.com"},{"id":"3e829a4c-383d-93ea-bef4-49f2560e1d83","last_modified":1722426875987,"bucket":"main","collection":"backup-common-passwords-list","host":"firefox.settings.services.mozilla.com"},{"id":"a7fb0c00-2166-93ab-8261-d6110ffd1212","last_modified":1724349030991,"bucket":"main","collection":"nimbus-secure-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"3ddbe540-6900-30ef-7853-199a3b4bc6df","last_modified":1724950390132,"bucket":"main","collection":"quicksuggest","host":"firefox.settings.services.mozilla.com"},{"id":"5a30bf02-8b01-b6f6-fa9f-c34cdd3a1042","last_modified":1724945347773,"bucket":"main","collection":"nimbus-mobile-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"b39de954-4216-fecc-150f-7a08e837b373","last_modified":1722952002241,"bucket":"main","collection":"search-config-v2","host":"firefox.settings.services.mozilla.com"},{"id":"c067f022-492c-fb50-3c8a-5800b383fb5d","last_modified":1723560515190,"bucket":"main","collection":"ml-inference-options","host":"firefox.settings.services.mozilla.com"},{"id":"dd040ff6-583c-d16b-2816-5d8079aba996","last_modified":1724867833754,"bucket":"main","collection":"search-telemetry-v2","host":"firefox.settings.services.mozilla.com"},{"id":"09b4c573-0b2a-e099-cc0c-32f84d78cd59","last_modified":1711137585687,"bucket":"main","collection":"search-categorization","host":"firefox.settings.services.mozilla.com"},{"id":"22625625-0f03-7107-1d3e-a8484d109ca7","last_modified":1724852270037,"bucket":"main","collection":"ml-onnx-runtime","host":"firefox.settings.services.mozilla.com"},{"id":"0b696c37-e442-b92f-65ee-a0123223f224","last_modified":1724163826841,"bucket":"main","collection":"ms-images","host":"firefox.settings.services.mozilla.com"},{"id":"8da7db1e-dffb-18c9-2efe-0e9d7459a0f4","last_modified":1724717403464,"bucket":"main","collection":"normandy-recipes","host":"firefox.settings.services.mozilla.com"},{"id":"447cbbca-247c-25ea-e1eb-68e922864d1e","last_modified":1724697280402,"bucket":"main","collection":"nimbus-web-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"714b69f3-69fb-0b5e-9c4a-e73c07aa2858","last_modified":1724664580228,"bucket":"main","collection":"tracking-protection-lists","host":"firefox.settings.services.mozilla.com"},{"id":"a3c0cb7d-dad1-a596-8cc4-8ceaec428e4b","last_modified":1724660897371,"bucket":"main","collection":"devtools-compatibility-browsers","host":"firefox.settings.services.mozilla.com"},{"id":"8e0dffc7-d526-aa8d-759c-0882dfda733c","last_modified":1718898145959,"bucket":"main","collection":"message-groups","host":"firefox.settings.services.mozilla.com"},{"id":"da65fbf9-7ed0-d839-d23a-1dbf9ef6601f","last_modified":1719504277655,"bucket":"main","collection":"search-config-icons","host":"firefox.settings.services.mozilla.com"},{"id":"2567487c-641d-8efe-bf09-4c9ceca0811d","last_modified":1719927826949,"bucket":"main","collection":"urlbar-persisted-search-terms","host":"firefox.settings.services.mozilla.com"},{"id":"2a96d2c2-ee2c-92d9-4415-3996dd1aef47","last_modified":1720004688246,"bucket":"main","collection":"url-classifier-skip-urls","host":"firefox.settings.services.mozilla.com"},{"id":"6eb5c7d5-d063-34f2-f7f6-0440d029672b","last_modified":1722024804421,"bucket":"main","collection":"content-relevance","host":"firefox.settings.services.mozilla.com"},{"id":"45bf3f78-8f3f-28f6-5a1d-8a2bb6d3a2b2","last_modified":1725153219499,"bucket":"main-preview","collection":"tracking-protection-lists","host":"firefox.settings.services.mozilla.com"},{"id":"a60ac63f-506b-5d85-78a6-443c7e69d09b","last_modified":1725100834470,"bucket":"main-preview","collection":"nimbus-preview","host":"firefox.settings.services.mozilla.com"},{"id":"2c434b22-08f9-ed9a-914c-ef5c30ebcb82","last_modified":1544035467383,"bucket":"main-preview","collection":"sites-classification","host":"firefox.settings.services.mozilla.com"},{"id":"e1afa4ff-ea74-d142-eff6-4c5c3d27ce8c","last_modified":1562796064168,"bucket":"main-preview","collection":"focus-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"4ceae968-33e3-b09e-fce7-87edfd15923a","last_modified":1564511755134,"bucket":"main-preview","collection":"anti-tracking-url-decoration","host":"firefox.settings.services.mozilla.com"},{"id":"ad9b4281-cfdf-902c-de11-366a78030ed5","last_modified":1569443132231,"bucket":"main-preview","collection":"cfr-srg","host":"firefox.settings.services.mozilla.com"},{"id":"2e5fede5-45b1-2e91-626c-371c244ad1b2","last_modified":1646406194397,"bucket":"main-preview","collection":"public-suffix-list","host":"firefox.settings.services.mozilla.com"},{"id":"58667b5b-2afa-c9ea-a95d-d6081529dbee","last_modified":1581701665749,"bucket":"main-preview","collection":"personality-provider-models","host":"firefox.settings.services.mozilla.com"},{"id":"3f3cc33f-0a47-9621-ca08-6f1d0d55bb7c","last_modified":1593104012343,"bucket":"main-preview","collection":"windows-default-browser-agent","host":"firefox.settings.services.mozilla.com"},{"id":"9dbb7b11-e456-bb51-2f14-f3a17ef76326","last_modified":1595950571495,"bucket":"main-preview","collection":"pioneer-study-addons","host":"firefox.settings.services.mozilla.com"},{"id":"91607703-59bd-95a1-7734-a987332bc619","last_modified":1591566906097,"bucket":"main-preview","collection":"regions","host":"firefox.settings.services.mozilla.com"},{"id":"23ee4721-520a-33d1-2063-51f8ff4fed96","last_modified":1602780283316,"bucket":"main-preview","collection":"mobile-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"3f33d824-d485-658d-ab8e-f498e6f83c8a","last_modified":1603308808124,"bucket":"main-preview","collection":"personality-provider-recipe","host":"firefox.settings.services.mozilla.com"},{"id":"415edb28-1f34-f530-ecf7-1e243652be16","last_modified":1604442382323,"bucket":"main-preview","collection":"pioneer-content-v1","host":"firefox.settings.services.mozilla.com"},{"id":"d5acf05e-c2b7-782b-c5f7-52fd75b10abd","last_modified":1723130676108,"bucket":"main-preview","collection":"top-sites","host":"firefox.settings.services.mozilla.com"},{"id":"34d68bb2-6416-0978-cc5b-de1fc1af8382","last_modified":1724435771640,"bucket":"main-preview","collection":"fakespot-suggest-products","host":"firefox.settings.services.mozilla.com"},{"id":"cba62179-d21e-aef6-f1ba-0745a83be31a","last_modified":1724436366519,"bucket":"main-preview","collection":"nimbus-web-preview","host":"firefox.settings.services.mozilla.com"},{"id":"d7c0fedd-8531-a315-dc68-23c7abac7088","last_modified":1724444187148,"bucket":"main-preview","collection":"translations-models","host":"firefox.settings.services.mozilla.com"},{"id":"a0e7d312-12ed-a188-65c4-5e178ca5f261","last_modified":1725048140700,"bucket":"main-preview","collection":"nimbus-desktop-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"cdf5b0ef-a720-05b9-cc9f-ca272d916d46","last_modified":1605800480144,"bucket":"main-preview","collection":"hijack-blocklists","host":"firefox.settings.services.mozilla.com"},{"id":"4367935e-3364-caff-464b-db690e567471","last_modified":1607041879513,"bucket":"main-preview","collection":"pioneer-study-addons-v1","host":"firefox.settings.services.mozilla.com"},{"id":"093951eb-e25b-150b-d55f-a8da62e1e995","last_modified":1607981769164,"bucket":"main-preview","collection":"pioneer-content-v2","host":"firefox.settings.services.mozilla.com"},{"id":"45a0f571-e2c2-dddb-8f21-3d4cd7d909f7","last_modified":1607981725045,"bucket":"main-preview","collection":"pioneer-study-addons-v2","host":"firefox.settings.services.mozilla.com"},{"id":"b4759cb6-c501-cea0-ba70-8ab04c89b171","last_modified":1617029179150,"bucket":"main-preview","collection":"whats-new-panel","host":"firefox.settings.services.mozilla.com"},{"id":"101f5b7a-c0d0-247e-2c0d-0cc89d5ff7c2","last_modified":1627480834563,"bucket":"main-preview","collection":"tippytop","host":"firefox.settings.services.mozilla.com"},{"id":"eaf8523e-8945-a9c0-82dc-313a7cefead3","last_modified":1635891524078,"bucket":"main-preview","collection":"nimbus-desktop-defaults","host":"firefox.settings.services.mozilla.com"},{"id":"ead8cf13-b099-9545-b44c-e03c4270bafd","last_modified":1641843577359,"bucket":"main-preview","collection":"rally-studies-v1","host":"firefox.settings.services.mozilla.com"},{"id":"30f49866-e6b6-6377-1714-d967d46c2cc9","last_modified":1644491477799,"bucket":"main-preview","collection":"search-telemetry","host":"firefox.settings.services.mozilla.com"},{"id":"bcde7ed4-4637-5b47-922e-c8df09ece804","last_modified":1647548788458,"bucket":"main-preview","collection":"doh-providers","host":"firefox.settings.services.mozilla.com"},{"id":"6133f0b4-fe59-a2ad-6839-b159c6dabc9c","last_modified":1648229538593,"bucket":"main-preview","collection":"ms-language-packs","host":"firefox.settings.services.mozilla.com"},{"id":"03502cb8-a932-eb71-c910-0a9adb597757","last_modified":1651738492284,"bucket":"main-preview","collection":"doh-config","host":"firefox.settings.services.mozilla.com"},{"id":"bbc8352c-1fd5-7a96-a4d5-332b56d90c3c","last_modified":1653402346692,"bucket":"main-preview","collection":"devtools-devices","host":"firefox.settings.services.mozilla.com"},{"id":"fa35c1eb-3355-f100-ab9a-e4d909948e37","last_modified":1655312479742,"bucket":"main-preview","collection":"websites-with-shared-credential-backends","host":"firefox.settings.services.mozilla.com"},{"id":"d794c574-a4c6-b888-d8d7-96024e07d4b1","last_modified":1672349611696,"bucket":"main-preview","collection":"rally-studies-v2","host":"firefox.settings.services.mozilla.com"},{"id":"9f66a403-06b9-1f49-179b-8bde4f9e1d3a","last_modified":1672846460810,"bucket":"main-preview","collection":"language-dictionaries","host":"firefox.settings.services.mozilla.com"},{"id":"ab724da6-2405-a097-9ca2-e638a61eaca4","last_modified":1673279640190,"bucket":"main-preview","collection":"password-recipes","host":"firefox.settings.services.mozilla.com"},{"id":"cde3c31e-c1b8-b24e-a494-454fdb830abf","last_modified":1679594793364,"bucket":"main-preview","collection":"password-rules","host":"firefox.settings.services.mozilla.com"},{"id":"3f7fc0d0-04af-6c69-dd93-2a29d4243407","last_modified":1681344840786,"bucket":"main-preview","collection":"translations-identification-models","host":"firefox.settings.services.mozilla.com"},{"id":"c2349d3f-a0f0-2550-1e35-ee993f8a1c8d","last_modified":1682640078021,"bucket":"main-preview","collection":"fxmonitor-breaches","host":"firefox.settings.services.mozilla.com"},{"id":"bad6f034-2d51-c5b3-6cc1-a2ff19440327","last_modified":1688675787185,"bucket":"main-preview","collection":"addons-manager-settings","host":"firefox.settings.services.mozilla.com"},{"id":"00b04ed4-cacb-1281-1c64-813c2d1e5714","last_modified":1694689766005,"bucket":"main-preview","collection":"query-stripping","host":"firefox.settings.services.mozilla.com"},{"id":"461e4691-5c0d-5dad-321d-cd9d61a5c640","last_modified":1698873355822,"bucket":"main-preview","collection":"cfr","host":"firefox.settings.services.mozilla.com"},{"id":"d02d3098-a22d-738c-9de1-1a3688e8cda8","last_modified":1702402201064,"bucket":"main-preview","collection":"partitioning-exempt-urls","host":"firefox.settings.services.mozilla.com"},{"id":"347711a1-df95-2461-f315-f36e4c457397","last_modified":1705698918193,"bucket":"main-preview","collection":"translations-wasm","host":"firefox.settings.services.mozilla.com"},{"id":"accb70b3-679a-9d45-ed6f-0f5a845bf850","last_modified":1709157022845,"bucket":"main-preview","collection":"search-config-overrides","host":"firefox.settings.services.mozilla.com"},{"id":"3a960198-3d00-820d-449f-09aff056c65b","last_modified":1710170849382,"bucket":"main-preview","collection":"search-config-overrides-v2","host":"firefox.settings.services.mozilla.com"},{"id":"d6bac357-17c7-e551-94e7-9fb97f908dec","last_modified":1710757058760,"bucket":"main-preview","collection":"search-config","host":"firefox.settings.services.mozilla.com"},{"id":"530bef41-bbef-f783-33e5-b7deb2568002","last_modified":1711033331748,"bucket":"main-preview","collection":"devtools-news","host":"firefox.settings.services.mozilla.com"},{"id":"c90c4f3d-7e2b-b146-ded8-84385fb2e646","last_modified":1714419364737,"bucket":"main-preview","collection":"fingerprinting-protection-overrides","host":"firefox.settings.services.mozilla.com"},{"id":"031decaa-47bd-3d48-b752-1978196eb048","last_modified":1718722597937,"bucket":"main-preview","collection":"newtab-wallpapers","host":"firefox.settings.services.mozilla.com"},{"id":"fb10b66d-50d9-8e4a-5874-52d7a0a6af01","last_modified":1717027203417,"bucket":"main-preview","collection":"cookie-banner-rules-list","host":"firefox.settings.services.mozilla.com"},{"id":"eec76038-1880-058e-672b-dea34e735acc","last_modified":1719847110215,"bucket":"main-preview","collection":"backup-recovery-download-links","host":"firefox.settings.services.mozilla.com"},{"id":"ee5f80a9-784c-add7-857f-016be20523a3","last_modified":1720457798276,"bucket":"main-preview","collection":"bounce-tracking-protection-exceptions","host":"firefox.settings.services.mozilla.com"},{"id":"b271319d-3db1-b78c-b058-7a3e7704c80f","last_modified":1721062345952,"bucket":"main-preview","collection":"search-default-override-allowlist","host":"firefox.settings.services.mozilla.com"},{"id":"b5dcf818-f36f-19ad-380a-a6dbeebd08a0","last_modified":1721057260806,"bucket":"main-preview","collection":"newtab-wallpapers-v2","host":"firefox.settings.services.mozilla.com"},{"id":"241130b1-a088-265c-39e2-ad1e1adaf115","last_modified":1722426875836,"bucket":"main-preview","collection":"backup-common-passwords-list","host":"firefox.settings.services.mozilla.com"},{"id":"4ebcda67-0fb6-46f6-2f1a-6d246923bb48","last_modified":1724349000807,"bucket":"main-preview","collection":"nimbus-secure-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"8195b5b2-fd71-f382-9458-5028ef84e90d","last_modified":1724949946723,"bucket":"main-preview","collection":"quicksuggest","host":"firefox.settings.services.mozilla.com"},{"id":"19f7ec86-7cc3-46d8-21d0-f1aeb80ba2ea","last_modified":1724945336470,"bucket":"main-preview","collection":"nimbus-mobile-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"108456a5-3894-c2e1-f74c-24d098107d80","last_modified":1722942029604,"bucket":"main-preview","collection":"search-config-v2","host":"firefox.settings.services.mozilla.com"},{"id":"071bcd17-1c4d-5cdd-7ff0-b17bef25fb92","last_modified":1723559804450,"bucket":"main-preview","collection":"ml-inference-options","host":"firefox.settings.services.mozilla.com"},{"id":"5141c7f4-3a3e-d7bd-7cfb-cca1f1796418","last_modified":1724878927202,"bucket":"main-preview","collection":"ms-images","host":"firefox.settings.services.mozilla.com"},{"id":"68692045-6d1b-1419-071f-eed1d9f5c262","last_modified":1724720802647,"bucket":"main-preview","collection":"search-telemetry-v2","host":"firefox.settings.services.mozilla.com"},{"id":"818868b5-18ae-a588-e1d6-8d067a64e5c0","last_modified":1711126473526,"bucket":"main-preview","collection":"search-categorization","host":"firefox.settings.services.mozilla.com"},{"id":"d2dbd449-2ec9-60e2-b7c8-a384ea7d0878","last_modified":1724852182400,"bucket":"main-preview","collection":"ml-onnx-runtime","host":"firefox.settings.services.mozilla.com"},{"id":"dfb5c030-b786-15e2-0622-ee8c4856abdb","last_modified":1724697254142,"bucket":"main-preview","collection":"nimbus-web-experiments","host":"firefox.settings.services.mozilla.com"},{"id":"1fdae7b7-324d-113c-c10c-c4a4a30aba63","last_modified":1724544303636,"bucket":"main-preview","collection":"devtools-compatibility-browsers","host":"firefox.settings.services.mozilla.com"},{"id":"9a2e66c0-f96b-fa05-92da-8d62775e102b","last_modified":1718434781891,"bucket":"main-preview","collection":"message-groups","host":"firefox.settings.services.mozilla.com"},{"id":"cea550ab-c8d5-f309-d445-969a81ee51cd","last_modified":1719499750277,"bucket":"main-preview","collection":"search-config-icons","host":"firefox.settings.services.mozilla.com"},{"id":"ef5ddee3-314b-197c-35a1-2943fe96c573","last_modified":1719588521214,"bucket":"main-preview","collection":"urlbar-persisted-search-terms","host":"firefox.settings.services.mozilla.com"},{"id":"4bbeba46-f780-10cb-16ea-2bc48ec77807","last_modified":1717072578555,"bucket":"main-preview","collection":"url-classifier-skip-urls","host":"firefox.settings.services.mozilla.com"},{"id":"2e2ce4af-06be-5dfe-97aa-4f511a5cf606","last_modified":1722022868197,"bucket":"main-preview","collection":"content-relevance","host":"firefox.settings.services.mozilla.com"},{"id":"eae22ba6-631d-fcab-fa53-8a7c5adb39a9","last_modified":1725202629204,"bucket":"security-state","collection":"cert-revocations","host":"firefox.settings.services.mozilla.com"},{"id":"9a0cf117-f8e7-4420-cc60-9fac2c2f6ffa","last_modified":1725051428120,"bucket":"security-state","collection":"intermediates","host":"firefox.settings.services.mozilla.com"},{"id":"e0739440-0519-39e8-a5d5-dfef0832cdf9","last_modified":1725036641590,"bucket":"security-state","collection":"ct-logs","host":"firefox.settings.services.mozilla.com"},{"id":"4dd906e9-fe4e-fd64-8138-a2c7260b2199","last_modified":1717704918940,"bucket":"security-state","collection":"onecrl","host":"firefox.settings.services.mozilla.com"},{"id":"adc73734-8581-67a0-0516-1d0e427a8cbd","last_modified":1725202032721,"bucket":"security-state-preview","collection":"cert-revocations","host":"firefox.settings.services.mozilla.com"},{"id":"7b3f0682-64fd-7b37-3126-3934ea377bcb","last_modified":1725048217080,"bucket":"security-state-preview","collection":"intermediates","host":"firefox.settings.services.mozilla.com"},{"id":"f934c73b-822b-89cd-0df5-3eab4878e47e","last_modified":1725036903715,"bucket":"security-state-preview","collection":"ct-logs","host":"firefox.settings.services.mozilla.com"},{"id":"58d1976f-6e75-7728-79da-f4860ed35de5","last_modified":1717606867232,"bucket":"security-state-preview","collection":"onecrl","host":"firefox.settings.services.mozilla.com"}]}< fԳfԳGFfԷ ma,:https://firefox.settings.services.mozilla.com/v1/buckets/monitor/collections/changes/changeset?_expected=0strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAARub25lAAAADlJTQS1QU1MtU0hBMjU2AANmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp1mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAQEAAAAAUGFub246YmVDb25zZXJ2YXRpdmU6dGxzZmxhZ3MweDAwMDAwMDAwOmZpcmVmb3guc2V0dGluZ3Muc2VydmljZXMubW96aWxsYS5jb206NDQzAAA=request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 29357 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:48:42 GMT -age: 2794 -last-modified: Sun, 01 Sep 2024 14:57:09 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 29357 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:48:42 GMT -age: 2794 -last-modified: Sun, 01 Sep 2024 14:57:09 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1r \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1365FF69235BAA6C45CE080BD7EEDD5270185333 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1365FF69235BAA6C45CE080BD7EEDD5270185333 deleted file mode 100644 index 6d5df23..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1365FF69235BAA6C45CE080BD7EEDD5270185333 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/13B6732E2B5A402ACC8D14CF325D7564C0D16FA9 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/13B6732E2B5A402ACC8D14CF325D7564C0D16FA9 deleted file mode 100644 index cf7c9ee..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/13B6732E2B5A402ACC8D14CF325D7564C0D16FA9 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/14D64B61C623462BD43921DD4949E1D60DE694E4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/14D64B61C623462BD43921DD4949E1D60DE694E4 deleted file mode 100644 index 8933d5d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/14D64B61C623462BD43921DD4949E1D60DE694E4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1C8C54682B3709CAC523039982C1103B7620A376 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1C8C54682B3709CAC523039982C1103B7620A376 deleted file mode 100644 index 5ebfa01..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1C8C54682B3709CAC523039982C1103B7620A376 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1CA100D2C0D96E081CACE16236BB9EA0F817F35D b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1CA100D2C0D96E081CACE16236BB9EA0F817F35D deleted file mode 100644 index 716078e..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/1CA100D2C0D96E081CACE16236BB9EA0F817F35D +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"sort":"-last_modified","flags":["startup"],"schema":{"type":"object","title":"Fingerprinting Overrides","$schema":"http://json-schema.org/draft-07/schema#","required":["firstPartyDomain","overrides"],"properties":{"overrides":{"type":"string","pattern":"^[+-][A-Za-z]+(?:,[+-][A-Za-z]+)*$","description":"The fingerprinting overrides. See https://searchfox.org/mozilla-central/source/toolkit/components/resistfingerprinting/RFPTargets.inc for details."},"firstPartyDomain":{"type":"string","pattern":"^(\\*|(?!-)[A-Za-z0-9-]{1,63}(?)."},"value":{"type":"string","title":"Value","pattern":"^[a-zA-Z0-9_]{0,100}$","description":"If this is a purpose type, the value is used as the value of the parameter in the query"},"purpose":{"enum":["searchbar","keyword","contextmenu","homepage","newtab"],"type":"string","title":"Purpose","pattern":"^[a-z{}]{0,100}$","description":"The search purpose that triggers this parameter being appended."},"condition":{"enum":["pref","purpose"],"type":"string","title":"Condition","pattern":"^[a-z]{0,10}$","description":"The type of parameter (pref or purpose)"}}},"title":"Extra Parameters","description":"Extra parameters for the search engine (aka MozParams)"},"telemetryId":{"type":"string","title":"Telemetry Id","pattern":"^[a-zA-Z0-9-$_]{0,100}$","description":"The telemetry Id as used for search telemetry."},"webExtension":{"type":"object","title":"WebExtension","properties":{"id":{"type":"string","title":"WebExtension Id","pattern":"^[a-zA-Z0-9-._]*@search.mozilla.org$","description":"The identifier (local part) of the associated WebExtension should be of the format example@search.mozilla.org"},"locales":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9-$_]{0,100}$"},"title":"WebExtension Locales","description":"Overrides the WebExtension locales and specifies to use a particular one. Ideally this should only be used when really necessary, otherwise considered deprecated."}}},"localeDetails":{"type":"object","title":"Locales","properties":{"matches":{"type":"array","items":{"type":"string","pattern":"^([a-z]{2,3}(-[a-zA-Z]{2,})?(-macos)?|default)$","minLength":2},"title":"Matches exactly the codes"},"startsWith":{"type":"array","items":{"type":"string","pattern":"^[a-z]{2,3}$","maxLength":3,"minLength":2},"title":"Matches any code starting with"}},"description":"Locale codes."},"regionDetails":{"type":"array","items":{"type":"string","pattern":"^([a-z][a-z]|default)$","maxLength":7,"minLength":2},"title":"Regions","description":"Two-letter region codes."},"defaultPrivate":{"enum":["yes","yes-if-no-other","no"],"type":"string","title":"Default Status (PBM)","pattern":"^[a-z-]{0,20}$","description":"Whether or not this engine should be default in private browsing mode."},"searchUrlCodes":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9.-]{0,100}$","description":"Name of the parameter that will be used in the query"},"value":{"type":"string","title":"Value","pattern":"^[a-zA-Z0-9_{}:/.-]{0,100}$","description":"The value of parameter (pref or purpose)"}}},"title":"Codes","description":"A array of objects - map of parameter name to the parameter value."},"appliesToSection":{"type":"object","properties":{"urls":{"$ref":"#/definitions/urls"},"params":{"$ref":"#/definitions/params"},"default":{"$ref":"#/definitions/default"},"excluded":{"$ref":"#/definitions/excluded"},"included":{"$ref":"#/definitions/included"},"override":{"type":"boolean","title":"Override","description":"This section will override previous appliesTo sections, but not add new locations where this engine is deployed to."},"orderHint":{"$ref":"#/definitions/orderHint"},"experiment":{"type":"string","title":"Experiment","pattern":"^[a-zA-Z0-9-]{0,100}$","description":"The experiment this section is associated with, if blank it is associated with any configuration."},"application":{"$ref":"#/definitions/application"},"extraParams":{"$ref":"#/definitions/extraParams"},"telemetryId":{"$ref":"#/definitions/telemetryId"},"webExtension":{"$ref":"#/definitions/webExtension"},"defaultPrivate":{"$ref":"#/definitions/defaultPrivate"},"suggestExtraParams":{"$ref":"#/definitions/extraParams"}}}}},"signature":{"ref":"8vdy743o6nmx3afzmzearkiuj","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"2icCqmKd42cPCdkbg63S1iVMWYGmvfVQLVg00unjP7FyFiA990PKMk2j6SeBy3Az-XUHyrUjJkhLWCN4pJo3eoAKQARMXK3Fosg7DpVUQ1mdWkjvUKIYquyqbjk1VOpc","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"attachment":{"enabled":false,"required":false},"displayFields":["webExtension.id"],"id":"search-config","last_modified":1724976012346}}kfԳfԳGFfԴ9ra,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/search-config?_expected=1710766850143strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAARub25lAAAADlJTQS1QU1MtU0hBMjU2AANmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp1mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAQEAAAAAUGFub246YmVDb25zZXJ2YXRpdmU6dGxzZmxhZ3MweDAwMDAwMDAwOmZpcmVmb3guc2V0dGluZ3Muc2VydmljZXMubW96aWxsYS5jb206NDQzAAA=request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 9377 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Last-Modified, Expires, Retry-After, Backoff, ETag, Pragma, Cache-Control, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:36:41 GMT -age: 3515 -last-modified: Fri, 30 Aug 2024 00:00:12 GMT -etag: "1724976012346" -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 9377 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Last-Modified, Expires, Retry-After, Backoff, ETag, Pragma, Cache-Control, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:36:41 GMT -age: 3515 -last-modified: Fri, 30 Aug 2024 00:00:12 GMT -etag: "1724976012346" -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1$ \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/3FFB72A0F47281DCAF5A6ED2885BA31323685197 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/3FFB72A0F47281DCAF5A6ED2885BA31323685197 deleted file mode 100644 index c88e082..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/3FFB72A0F47281DCAF5A6ED2885BA31323685197 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/43227C05DDB0B0C382B62CE61F8C70610E60B4BB b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/43227C05DDB0B0C382B62CE61F8C70610E60B4BB deleted file mode 100644 index f6bc51c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/43227C05DDB0B0C382B62CE61F8C70610E60B4BB and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/44230749A38B6989F56217B435A03E84CCADE62D b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/44230749A38B6989F56217B435A03E84CCADE62D deleted file mode 100644 index c236817..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/44230749A38B6989F56217B435A03E84CCADE62D and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4636F4942A3E13544450D9055DE0EF42610F9DF6 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4636F4942A3E13544450D9055DE0EF42610F9DF6 deleted file mode 100644 index e9c3756..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4636F4942A3E13544450D9055DE0EF42610F9DF6 +++ /dev/null @@ -1,34 +0,0 @@ -{"permissions":{},"data":{"schema":{"type":"object","allOf":[{"if":{"properties":{"recordType":{"const":"engine"}}},"then":{"required":["recordType","identifier","base","variants"],"properties":{"base":{"type":"object","title":"Base Details","required":["name","urls","classification"],"properties":{"name":{"type":"string","title":"Name","maxLength":100,"description":"The user visible name for the search engine."},"urls":{"$ref":"#/definitions/urls"},"aliases":{"type":"array","items":{"type":"string","pattern":"^[a-z\\xa1-\\uffff]*$"},"title":"Aliases","description":"An array of aliases that the user can use to search with this engine. The aliases will be prefix by '@' on desktop and potentially other platforms.","uniqueItems":true},"charset":{"type":"string","title":"Character Set","pattern":"^[a-zA-Z0-9-]*$","description":"The character set this engine uses for queries. Defaults to 'UTF=8' if not set."},"partnerCode":{"$ref":"#/definitions/partnerCode"},"classification":{"enum":["general","unknown"],"type":"string","title":"Classification","description":"The classification of search engine according to the main search types (e.g. general, shopping, travel, dictionary). Currently, only marking as a general search engine is supported."}},"description":"Base details for the engine."},"notes":{"type":"string","title":"Notes","pattern":"^[a-zA-Z0-9-_.() ]*$","description":"A short notes section used to potentially aid identification of this section for humans. Not intended for to be read by the application."},"variants":{"type":"array","items":{"type":"object","required":["environment"],"properties":{"urls":{"$ref":"#/definitions/urls"},"optional":{"type":"boolean","title":"Optional","description":"This search engine is presented as an option that the user may enable. It is not included in the initial list of search engines. If not specified, defaults to false."},"environment":{"$ref":"#/definitions/environment"},"partnerCode":{"$ref":"#/definitions/partnerCode"},"subVariants":{"type":"array","items":{"type":"object","required":["environment"],"properties":{"urls":{"$ref":"#/definitions/urls"},"optional":{"type":"boolean","title":"Optional","description":"This search engine is presented as an option that the user may enable. It is not included in the initial list of search engines. If not specified, defaults to false."},"environment":{"$ref":"#/definitions/environment"},"partnerCode":{"$ref":"#/definitions/partnerCode"},"telemetrySuffix":{"type":"string","title":"Telemetry Suffix","pattern":"^[a-zA-Z0-9-]*$","description":"Suffix that is appended to the search engine identifier following a dash, i.e. `-`. There should always be a suffix supplied if the partner code is different for a reason other than being on a different platform."}}},"title":"Subvariants","description":"This section describes subvariations of this search engine that may occur depending on the user's environment. The last subvariant that matches the user's environment will be applied to the engine."},"telemetrySuffix":{"type":"string","title":"Telemetry Suffix","pattern":"^[a-zA-Z0-9-]*$","description":"Suffix that is appended to the search engine identifier following a dash, i.e. `-`. There should always be a suffix supplied if the partner code is different for a reason other than being on a different platform."}}},"title":"Variants","description":"This section describes variations of this search engine that may occur depending on the user's environment. The last variant that matches the user's environment will be applied to the engine, subvariants may also be applied."},"identifier":{"type":"string","title":"Identifier","pattern":"^[a-zA-Z0-9-_]*$","description":"The identifier of the search engine. This is used as an internal identifier, e.g. for saving the user's settings for the engine. It is also used to form the base telemetry id and may be extended by telemetrySuffix."},"recordType":{"$ref":"#/definitions/recordType"}}}},{"if":{"properties":{"recordType":{"const":"defaultEngines"}}},"then":{"required":["recordType","globalDefault"],"properties":{"recordType":{"$ref":"#/definitions/recordType"},"globalDefault":{"type":"string","title":"Global Default","pattern":"^[a-zA-Z0-9-_]*$","description":"The identifier of the engine that will be used as the application default if no other engines are specified as default."},"specificDefaults":{"type":"array","items":{"type":"object","oneOf":[{"required":["environment","default"]},{"required":["environment","defaultPrivate"]},{"required":["environment","default","defaultPrivate"]}],"properties":{"default":{"type":"string","title":"Default","pattern":"^[a-zA-Z0-9-_]*\\*?$","description":"The identifier of the engine that will be used as the application default for the associated environment. If the entry is suffixed with a star, matching is applied on a \"starts with\" basis."},"environment":{"$ref":"#/definitions/environment"},"defaultPrivate":{"type":"string","title":"Default - Private Mode","pattern":"^[a-zA-Z0-9-_]*\\*?$","description":"The identifier of the engine that will be used as the application default in private mode for the associated environment. If the entry is suffixed with a star, matching is applied on a \"starts with\" basis."}}},"title":"Filters","description":"The specific environment filters to set a different default engine. The array is ordered, when multiple entries match on environments, the later entry will override earlier entries."},"globalDefaultPrivate":{"type":"string","title":"Global Default - Private Mode","pattern":"^[a-zA-Z0-9-_]*$","description":"The identifier of the engine that will be used as the application default in private mode if no other engines are specified as default."}}}},{"if":{"properties":{"recordType":{"const":"engineOrders"}}},"then":{"required":["recordType","orders"],"properties":{"orders":{"type":"array","items":{"type":"object","required":["environment"],"properties":{"order":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9-_]*\\*?$"},"title":"Engine Order","description":"The order of the engines for the associated environment. If engines are present for the user but not included in this list, they will follow after the ones in this list in alphabetical order. If an individual entry is suffixed with a star, matching is applied on a \"starts with\" basis."},"environment":{"$ref":"#/definitions/environment"}}},"title":"Orders","description":"When a user's instance matches the defined environments, the associated engine order will be applied. The array is ordered, when multiple entries match on environments, the later entry will override earlier entries."},"recordType":{"$ref":"#/definitions/recordType"}}}}],"title":"Application Provided Search Engines Schema","properties":{"recordType":{"$ref":"#/definitions/recordType"}},"definitions":{"url":{"type":"object","properties":{"base":{"type":"string","title":"Base","description":"The PrePath and FilePath of the URL. May include variables for engines which have a variable FilePath, e.g. {searchTerm} for when a search term is within the path of the url."},"method":{"enum":["GET","POST"],"type":"string","title":"Method","pattern":"^(GET|POST)$","description":"The HTTP method to use to send the request. If not specified, defaults to GET."},"params":{"type":"array","items":{"type":"object","oneOf":[{"required":["name","value"]},{"required":["name","experimentConfig"]},{"required":["name","searchAccessPoint"]}],"title":"Parameter","properties":{"name":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The parameter name"},"value":{"type":"string","title":"Value","pattern":"^[a-zA-Z0-9-_{}]*$","description":"The parameter value, this may be a static value, or additionally contain a parameter replacement, e.g. {inputEncoding}. For the partner code parameter, this field should be {partnerCode}."},"experimentConfig":{"type":"string","title":"Experiment Configuration","pattern":"^[a-zA-Z0-9-_]*$","description":"The value for the parameter will be derived from the equivalent experiment configuration value. If not experiment is present, this parameter will not be included in the final url."},"searchAccessPoint":{"type":"object","title":"Search Access Point","properties":{"newtab":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The value for the parameter when searched from the new tab page."},"homepage":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The value for the parameter when searched from the homepage."},"searchbar":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The value for the parameter when searched from the search bar."},"addressbar":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The value for the parameter when searched from the address bar."},"contextmenu":{"type":"string","title":"Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The value for the parameter when searched from the context menu."}},"description":"A parameter whose value depends on the access point where the search was initiated."}}},"title":"Parameters","description":"The parameters for this URL."},"searchTermParamName":{"type":"string","title":"Search Term Parameter Name","pattern":"^[a-zA-Z0-9-_]*$","description":"The name of the query parameter for the search term. Automatically appended to the end of the query. This may be skipped if `{searchTerm}` is included in the base."}}},"urls":{"type":"object","title":"URLs","properties":{"search":{"$ref":"#/definitions/url","title":"Search URL","description":"The URL to use for searches"},"trending":{"$ref":"#/definitions/url","title":"Trending Suggestions URL","description":"The URL to use for tending suggestions"},"suggestions":{"$ref":"#/definitions/url","title":"Suggestions URL","description":"The URL to use for suggestions"}},"description":"The URLs associated with the search engine."},"recordType":{"enum":["engine","defaultEngines","engineOrders"],"title":"Record Type","description":"The type of details that this record contains."},"environment":{"type":"object","title":"Environment","properties":{"locales":{"type":"array","items":{"type":"string","pattern":"^([a-z]{2,3}(-[a-zA-Z]{2,})?(-macos)?|default)$","minLength":2},"title":"Locales","description":"An array of locales that this section applies to. 'default' will apply to situations where we have not been able to detect the user's locale.","uniqueItems":true},"regions":{"type":"array","items":{"type":"string","pattern":"^([a-z][a-z]|default)$","maxLength":7,"minLength":2},"title":"Regions","description":"An array of regions that this section applies to. 'default' will apply to situations where we have not been able to detect the user's region.","uniqueItems":true},"channels":{"type":"array","items":{"enum":["default","nightly","aurora","beta","release","esr"],"type":"string","pattern":"^[a-z]{0,100}$"},"title":"Release Channels","description":"An array of release channels that this section applies to (not set = everywhere).","uniqueItems":true},"deviceType":{"type":"array","items":{"enum":["smartphone","tablet"],"type":"string","pattern":"^[a-z-]{0,100}$"},"title":"Device Type","description":"The device type(s) this section applies to. On desktop when this property is specified and non-empty, the associated section will be ignored.","uniqueItems":true},"experiment":{"type":"string","title":"Experiment","pattern":"^[a-zA-Z0-9-]{0,100}$","description":"The experiment that this section applies to."},"maxVersion":{"type":"string","title":"Maximum Version","pattern":"^[0-9a-z.]{0,20}$","description":"The maximum application version this section applies to (less-than comparison)."},"minVersion":{"type":"string","title":"Minimum Version","pattern":"^[0-9a-z.]{0,20}$","description":"The minimum application version this section applies to."},"applications":{"type":"array","items":{"enum":["firefox","firefox-android","firefox-ios","focus-android","focus-ios"],"type":"string","pattern":"^[a-z-]{0,100}$"},"title":"Application Identifiers","description":"The application(s) this section applies to (default/not specified is everywhere). `firefox` relates to Firefox Desktop.","uniqueItems":true},"distributions":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9.-]{0,100}$"},"title":"Distributions","description":"An array of distribution identifiers that this applies to.","uniqueItems":true},"excludedLocales":{"type":"array","items":{"type":"string","pattern":"^([a-z]{2,3}(-[a-zA-Z]{2,})?(-macos)?|default)$","minLength":2},"title":"Excluded Locales","description":"An array of locales that this section should be excluded from. 'default' will apply to situations where we have not been able to detect the user's locale.","uniqueItems":true},"excludedRegions":{"type":"array","items":{"type":"string","pattern":"^([a-z]{2,3}|default)$","maxLength":7,"minLength":2},"title":"Excluded Regions","description":"An array of regions that this section should be excluded from. 'default' will apply to situations where we have not been able to detect the user's region.","uniqueItems":true},"allRegionsAndLocales":{"type":"boolean","title":"All Regions and Locales","description":"Indicates that this section applies to all regions and locales. May be modified by excludedRegions/excludedLocales."},"excludedDistributions":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9.-]{0,100}$"},"title":"Excluded Distributions","description":"An array of distribution identifiers that this does not apply to.","uniqueItems":true}},"description":"Specifies details of possible user environments that the engine or variant applies to"},"partnerCode":{"type":"string","title":"Partner Code","pattern":"^[a-zA-Z0-9-_]*$","description":"The partner code for the engine or variant. This will be inserted into parameters which include '{partnerCode}'"}},"description":"This schema contains the details to build application provided search engines shipped in some Mozilla products. The associated remote settings collection is search-config-v2. Note: the top-level properties section is only required to satisfy remoteSettings. The allOf section provides the full details of the different record types."},"signature":{"ref":"3c3oihs1jyr1tp4w5bemxbpn2","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"VNaMAGE3Nq1TpAB5e8B6B75CxmW_gr2N-NXqd-pfbaDv6ocW9NclnjsGuYepBY7jHwhG-Vx8c_odm4yX_rcW7uTrtMkcQ39bTuX8aS7FFz0umcpJiZ2L0fdKmnsZE_Cs","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"attachment":{"enabled":false,"required":false},"displayFields":["recordType","identifier"],"id":"search-config-v2","last_modified":1724889606503}}p \afԳfԳGFf[ua,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/search-config-v2?_expected=1722952002241strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAARub25lAAAADlJTQS1QU1MtU0hBMjU2AANmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp1mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAQEAAAAAUGFub246YmVDb25zZXJ2YXRpdmU6dGxzZmxhZ3MweDAwMDAwMDAwOmZpcmVmb3guc2V0dGluZ3Muc2VydmljZXMubW96aWxsYS5jb206NDQzAAA=request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 15029 -access-control-allow-origin: * -access-control-expose-headers: Backoff, Retry-After, Content-Type, Alert, Last-Modified, Cache-Control, Expires, Content-Length, Pragma, ETag -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:32:43 GMT -age: 153 -last-modified: Thu, 29 Aug 2024 00:00:06 GMT -etag: "1724889606503" -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 15029 -access-control-allow-origin: * -access-control-expose-headers: Backoff, Retry-After, Content-Type, Alert, Last-Modified, Cache-Control, Expires, Content-Length, Pragma, ETag -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:32:43 GMT -age: 153 -last-modified: Thu, 29 Aug 2024 00:00:06 GMT -etag: "1724889606503" -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1: \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/47C0E8FD6562D5CEC941D1A22B3A7E6B99672935 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/47C0E8FD6562D5CEC941D1A22B3A7E6B99672935 deleted file mode 100644 index fd13344..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/47C0E8FD6562D5CEC941D1A22B3A7E6B99672935 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4886569D345E9E38022D604A1C08303ADF055424 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4886569D345E9E38022D604A1C08303ADF055424 deleted file mode 100644 index 3ed5ca6..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4886569D345E9E38022D604A1C08303ADF055424 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4ED49F32F14961D7097DAFCFFC9BBBE65C428594 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4ED49F32F14961D7097DAFCFFC9BBBE65C428594 deleted file mode 100644 index 7646456..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/4ED49F32F14961D7097DAFCFFC9BBBE65C428594 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/5395A7BE084C399201651E83BBF40CD07406A1D9 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/5395A7BE084C399201651E83BBF40CD07406A1D9 deleted file mode 100644 index e9d156b..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/5395A7BE084C399201651E83BBF40CD07406A1D9 +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"sort":"-last_modified","schema":{"type":"object","title":"Add wallpaper","properties":{"theme":{"enum":["light","dark","high-contrast"],"type":"string","title":"wallpaper theme","enumNames":["Light","Dark","High contrast"]},"title":{"type":"string","title":"Title","description":"Wallpaper title"},"category":{"enum":["photographs","abstracts","solid-colors",""],"type":"string","title":"wallpaper category","enumNames":["Photographs","Abstracts","Solid Colors","No category"]},"fluent_id":{"type":"string","title":"Fluent id","description":"ID to be used for fluent localization"},"attachment":{"type":"object","title":"The attachment itself","properties":{"hash":{"type":"string","title":"Hash"},"size":{"type":"number","title":"Size (bytes)"},"filename":{"type":"string","title":"Filename"},"location":{"type":"string","title":"URL"},"mimetype":{"type":"string","title":"MIME type"},"original":{"type":"object","title":"Pre-gzipped file","properties":{"hash":{"type":"string","title":"Hash"},"size":{"type":"number","title":"Size (bytes)"},"filename":{"type":"string","title":"Filename"},"mimetype":{"type":"string","title":"MIME type"}},"additionalProperties":false}},"description":"Information about the attached file.","additionalProperties":false},"attribution":{"type":"object","properties":{"name":{"type":"object","properties":{"url":{"type":"string"},"string":{"type":"string"}}},"webpage":{"type":"object","properties":{"url":{"type":"string"},"string":{"type":"string"}}}}}}},"signature":{"ref":"3rzl3nvscxnrbgzn2gps6l3ir","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"OHFL7z_pufCNAyEz9Ri8xo0a3b-Y-bVblLHCJlQb2u9rZ3abplUpHIuF_0cHG55RbYFu1ovU-Ei2todi5yez13PaErFi6epF6yHcetRhkP9CWkRlhiA_wynOC8ZaA3TY","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"attachment":{"enabled":true,"required":false},"displayFields":["title","fluent_id","theme"],"id":"newtab-wallpapers","last_modified":1724976011068,"bucket":"main"},"timestamp":1716487426093,"changes":[{"theme":"dark","title":"dark-sky","schema":1716395853204,"fluent_id":"newtab-wallpaper-dark-sky","attachment":{"hash":"6ab2a71c1d5866c10f6c8bb555b019ed6127a48112e410694bedf6fe8d5cdab9","size":461323,"filename":"dark-sky.avif","location":"main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@felix_mittermeier","string":"Felix Mittermeier"},"webpage":{"url":"https://unsplash.com/photos/lightning-strike-under-cloudy-sky-WLGHjbC0Cq4","string":"Unsplash"}},"id":"ae0890cf-35a3-419f-8f2f-a8f824e387e4","last_modified":1716487426093},{"theme":"dark","title":"dark-beach","schema":1716396166554,"fluent_id":"newtab-wallpaper-dark-city","attachment":{"hash":"7272b542d0b28513daa9c1bdb27ae09d606c189d1c144bc6d5b550b5020c67de","size":713257,"filename":"dark-beach.avif","location":"main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@yespanioly","string":"Yousef Espanioly"},"webpage":{"url":"https://unsplash.com/photos/seashore-DA_tplYgTow","string":"Unsplash"}},"id":"e85ffed2-658d-4e3e-a990-e54a1fb59f0a","last_modified":1716487426090},{"theme":"light","title":"light-beach","schema":1716281724721,"fluent_id":"newtab-wallpaper-light-beach","attachment":{"hash":"ad65944319e9bb3fa4261e93d465cc51be35873608dfa71d46fe734ae4517c2a","size":465893,"filename":"light-beach-1.avif","location":"main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@oulashin","string":"Sean Oulashin"},"webpage":{"url":"https://unsplash.com/photos/seashore-during-golden-hour-KMn4VEeEPR8","string":"Unsplash"}},"id":"eaf8ffb0-66bf-44c9-a79c-1a185aacea5f","last_modified":1716487426088},{"theme":"dark","title":"dark-landscape","schema":1713905326229,"fluent_id":"newtab-wallpaper-dark-aurora","attachment":{"hash":"dba39dab685c2bc6978354537c1bc8218a0abc455d0dd49c134c031264cfcd47","size":437288,"filename":"dark-aurora.avif","location":"main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@lightscape","string":"Lightscape"},"webpage":{"url":"https://unsplash.com/photos/northern-lights-over-snow-capped-mountian-LtnPejWDSAY","string":"Unsplash"}},"id":"2f32ee82-69b0-4b75-851c-917d57b59f0b","last_modified":1713908231356},{"theme":"light","title":"light-panda","schema":1713902028543,"fluent_id":"newtab-wallpaper-light-red-panda","attachment":{"hash":"f9a34f02573401aea9366a9e97a4cdc92f925ad6ac8d56d0bedfaf0dff9e86b1","size":531549,"filename":"light-panda.avif","location":"main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@_melsayed","string":"Mohamed Elsayed"},"webpage":{"url":"https://unsplash.com/photos/red-panda-on-snow-covered-ground-during-daytime-DWpR-BpKlw0","string":"Unsplash"}},"id":"0294a982-05f7-4b73-846a-ae2ffca24b43","last_modified":1713908231354},{"theme":"light","title":"light-color","schema":1713902013746,"fluent_id":"newtab-wallpaper-light-color","attachment":{"hash":"cd28bc282ba8dda5f6660389eb2a7ba66a57691504de2eba3405ec20eeddd5a0","size":288837,"filename":"light-color.avif","location":"main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif","mimetype":"image/avif"},"id":"395f6e0c-c66d-4209-a6bf-6c329cea90bb","last_modified":1713908231352},{"theme":"light","title":"light-mountain","schema":1713901986092,"fluent_id":"newtab-wallpaper-light-mountain","attachment":{"hash":"f9fdf49580f9221ba2583d0a818d60ae79b9fd50246ef36798a264e6645b6709","size":541196,"filename":"light-mountain.avif","location":"main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@daesign?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash","string":"Sead Dedi\u0107"},"webpage":{"url":"https://unsplash.com/photos/mountain-covered-with-snow-under-white-clouds-si8OYpuLVBY?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash","string":"Unsplash"}},"id":"95a51610-48fc-482e-ac01-7e3319ae7108","last_modified":1713908231350},{"theme":"light","title":"light-landscape","schema":1712696741112,"fluent_id":"newtab-wallpaper-light-landscape","attachment":{"hash":"e03ad82c9a5c6da8873cbdd21a5186a61c2eab9fe582f68e8da84cbb79b97885","size":223179,"filename":"light-landscape.avif","location":"main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@caroliniecavalli","string":"Carolinie Cavalli"},"webpage":{"url":"https://unsplash.com/photos/birds-eye-view-photography-of-mountain-Qw3w0oBH63s","string":"Unsplash"}},"id":"ad655cd6-8b30-4b62-bc3b-8306f43074ed","last_modified":1712759416281},{"theme":"light","title":"light-sky","schema":1712696771636,"fluent_id":"newtab-wallpaper-light-sky","attachment":{"hash":"40a84002cfaf92fd38300e3987146f7b2ec3f5255e0427afbd30a52d7830c0e8","size":100634,"filename":"light-sky.avif","location":"main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@frostroomhead","string":"Rodion Kutsaiev"},"webpage":{"url":"https://unsplash.com/photos/cloudy-sky-8P-uQaTd8rw","string":"Unsplash"}},"id":"3547b1db-e72d-4b42-ba8c-a45c59a58eb4","last_modified":1712759416279},{"theme":"dark","title":"dark-mountain","schema":1712697075672,"fluent_id":"newtab-wallpaper-dark-mountain","attachment":{"hash":"f5933a35945f5103ff98892f45ce03c59b2c3c1be35455faf45b10355492fd95","size":308468,"filename":"dark-mountain.avif","location":"main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@heytowner","string":"John Towner"},"webpage":{"url":"https://unsplash.com/photos/aerial-photo-of-brown-moutains-JgOeRuGD_Y4","string":"Unsplash"}},"id":"cb4752dc-cccb-4756-9232-f81af25ac7ea","last_modified":1712759416272},{"theme":"dark","title":"dark-color","schema":1712696637182,"fluent_id":"newtab-wallpaper-dark-color","attachment":{"hash":"c433865edcc1eae2911f30caa95783adfe5642ec24e8bd41fcfc661276f93752","size":206755,"filename":"dark-color.avif","location":"main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@martz90","string":"Martin Martz"},"webpage":{"url":"https://unsplash.com/photos/a-close-up-of-a-cell-phone-with-a-blurry-background-uuNCR2NpiNE","string":"Unsplash"}},"id":"ac09202d-958f-4f8b-b47a-1d32ac79bc56","last_modified":1712759416261},{"theme":"dark","title":"dark-panda","schema":1712744600151,"fluent_id":"newtab-wallpaper-dark-panda","attachment":{"hash":"359ec1d08b10aec1ea6d5cb50ddb0ccbd7660301407ee2eb602cf877b1ab857a","size":391823,"filename":"dark-panda.avif","location":"main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif","mimetype":"image/avif"},"attribution":{"name":{"url":"https://unsplash.com/@willrust","string":"Will Rust"},"webpage":{"url":"https://unsplash.com/photos/a-red-panda-yawns-in-a-tree-ERm7haDBW8k","string":"Unsplash"}},"id":"a6fbb3dd-cbbf-4a70-83b4-207943ff985b","last_modified":1712759416259}]}AfԳfԳGFfԵ4a,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/newtab-wallpapers/changeset?_expected=1716487426093strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAAZ4MjU1MTkAAAAOUlNBLVBTUy1TSEEyNTYAA2YKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABWMwggVfMIIER6ADAgECAhIEXXrStAKI8dBG//aIwU4LC7UwDQYJKoZIhvcNAQELBQAwMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDAeFw0yNDA4MTQyMDU4NTFaFw0yNDExMTIyMDU4NTBaMCYxJDAiBgNVBAMTG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPTa53DIjzaqZd5kMT4eo+HUtyGe25t7p0w99s7Ko3/FZv1CO6T9MQPwQrH4eBQVjCTYvYEsN1iV9udxaqFfokQblHsrrauygXHQn4UYRYfEQs372ZtfE+Rea48HEaVuBTCgKMdrMHQnLHzw16sX/jYeNRdUyHy9FM15EU/j8yaqw4x26zX4hA75FHyl7y1i81qKuLuKdyUCNzHell07rbcBwkEh+K8RlT7eAccJDCtpeBPaDbhB0nYqD0XAhAgSTd1FHkgZAGQLZIdZQH7OnSBtGFz6Ls5ucoXCRaxndYykg0EwtLl2aXrWx6GDo8ifQpEqJ44C68x2CAYaYOpo1q8CAwEAAaOCAngwggJ0MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUCkSuZlXfRX9PMZIKrdW+OmaMb6QwHwYDVR0jBBgwFoAUu7zDR6XkvKnGw6RyDBCNojXhyOgwVwYIKwYBBQUHAQEESzBJMCIGCCsGAQUFBzABhhZodHRwOi8vcjEwLm8ubGVuY3Iub3JnMCMGCCsGAQUFBzAChhdodHRwOi8vcjEwLmkubGVuY3Iub3JnLzB/BgNVHREEeDB2giVmaXJlZm94LnNldHRpbmdzLnNlcnZpY2VzLm1vemlsbGEuY29tgjBwcm9kLnJlbW90ZS1zZXR0aW5ncy5wcm9kLndlYnNlcnZpY2VzLm1vemdjcC5uZXSCG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzATBgNVHSAEDDAKMAgGBmeBDAECATCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AN/hVuuqBa+1nA+GcY2owDJOrlbZbqf1pWoB0cE7vlJcAAABkVLlQI4AAAQDAEcwRQIhAKqbN2T48PzhSjc67vDtTPRR3FQLCWBayH1G/1BDXXxeAiB/eN7mXE1c04QZA0EHd0plfxSBBuYmwqV5XE4JuLkyAgB2AEiw42vapkc0D+VqAvqdMOscUgHLVt0sgdm7v6s52IRzAAABkVLlQekAAAQDAEcwRQIgPUPh11LsJ2rF7UW1PAqm3RcKq9peuaLV63kZwjqwMuQCIQCZP+6m0nk+krD7txRzWL4YtdGaDkui61PQCGsFMuQbPDANBgkqhkiG9w0BAQsFAAOCAQEAznnoXVWiW7JA2ts94vIDBN2YeAbjNH9ITzb/LAyCMQFA+NTuF7U/XI9szFkgFxLr0M4cxs68oSPTW0HI0jfs0hfkx8pgB+QCfmAwNzV0nHmZo5g5I/4PSEr5GG6VkMEXMVQuH3Z9SWmXv1x0XYQzIBnvYvamrT+tuTrP/bd1A8z0LDHZ3p8W5TNjsxw/DwF1z6M39C6RrbDb1f016C4amVQribnmW9R24tKWlr4H6/tD4HkuTsdereu9WVKM7c1dta2mg8jLxBCdbWeJ5ckwtQQUUc4STU2To10XCjYjFvUl+b40xrzn+2bM4y1GxTXCYXFsWkXo68DsqN5SNPcenWYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABQkwggUFMIIC7aADAgECAhBLqFKT95ovonMGS6gEjXXQMA0GCSqGSIb3DQEBCwUAME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMB4XDTI0MDMxMzAwMDAwMFoXDTI3MDMxMjIzNTk1OVowMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM9X5ebEVBLttEf+ySdYdkZQKIwdPojfBZ3VtRgpvd21Wr/69s6jvq8AIUtiWlo8AS/FWAP2if+OEUPrwbXgFAeWj28f1+e6gTkJdWW3wq8YWzcmKOej9AcrbRr/q1i8la5A/+nLV8S1W394DRhhvBfnVMa7SZHNbhjRgIXupmU2vHTqvFBM6vwh8zgWk5S6sNNrOAbNFhJ6ylJ1yK12ssKcXZhFXG9he8Yt7jwTUoYB2VfmOBzfjbUfkpGa50oczEWoclXwsOajB+z9pxtmnj9Ii3GEcVjJOvrvXvJbRCs8dOePskfBB2rNmrcNlvcSgSZRVArsYfb39eLyisiVDY0CAwEAAaOB+DCB9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLu8w0el5LypxsOkcgwQjaI14cjoMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAEDDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5jci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQCSsedBN+t5nYHmzeIl4Tog6ZBElaOBXM/DXf29oHDVsZYoIgvS8ijPDOfU5kOMJCIdwUKS0Qmvn0v0yHBPIBaxWt0B9h/4H2FrFCewco1jru7izkvPN927o9TN561Qrb2/4+w+YjZwmTGn6I3d6mLiEq71nNQ9LAyq0Jx5vuo9XERuljFjWn3Wfk8koEsFf15v0tTqXzNLE9ZXtsreUbhdowmCdP3HeJ6zuawW2korlsO2i2KP+XQZop4D3ulvm7AP0qBa9oVcwgS3yNVOMsS/BF28Kfb3gY8MXTxTyUCQi/u2CGW5pCHVCeUThIQ3gs4QKPx2wgYlekZSTdpTcqQnP2JwrL5pSAD7Zw/bW6Ho1wMhLdfJ9plCOYND33cKEgjxJda6lBlUGIilxY7hGpmTeWvsHPkxQLDMMgDfn17ntJKrkIKRjQ3gHpW6WTsuS1/Ct0Y1UjkGwL2qrFLBIqBEl5n3DKAhp6FscUcWFwFowMqmJmUEfLOuyeeUVcJvmzwcqfkuxSAa8HbgvuwY1k/YJft2Eei/5iEP6OjMtban1bj3n0HPYSJGaoO2aJcufOpOldsj6y7IKyiEpGDpSfRELjv5ymJXAeJdkBb5yfx6I0iOptWBcvEo+l3O++1Oc4+ULtJBlJiZ26evcF/1vvsCIL9mJ2y0rfp1EgsrPs4DnmYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABW8wggVrMIIDU6ADAgECAhEAghDPsNJA41lEY+C7Y4KLADANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0xNTA2MDQxMTA0MzhaFw0zNTA2MDQxMTA0MzhaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAregkc/QUN/ObnitXKByHvty33ziQjG485legePd1wqL+9Wpu9gBPKNveaIZsRJO2sWP9FBJrvx/S6jGbIX7RMzy6SPXded+zuP8S8SGaS8GKhnFpSmZmbI9+PHC/rSkiBvPkwOaAruJLj7eZfpQDn9NHl3yZSCNT6DiuTwpvgy7RSVeMgHS22i/QOI17A3AhG3XyMDz6j67d2mOr6xZPwo4RS37PC+j/tXcu9LJ7SuBMEiUMcI0DKaDhUyTsE9nuGb8Qs0qMP4mjYVHerIcHlPRjcewu4m9bmIHhiVw0eWx27zuQYnnm26SaLybF0BDhDt7ZEI4W+7f3qPfH5QIHmI82CJXn4jeWDTZ1nvsOcrEdm7wD+UkF2IHdBbQq1kHprAF2lQoP2N/VvRIfNS8oF2zSmMGoCWR3bkc3us6sWV5onX9y1onFBkEpPlk+3Sb1JMkRp1qjTEAfRqGZtac6UW6GO559cqcSBXhZ7T5ReBULA4+N0C8Fsj57ShxLcwUS/Mbq4FATfEOTdLPKdOeOHwEI0DDUW3E2tAe6wTAwXEi3gjuYpn1giqKjKYLMur2DBBuigwNBodYF8RvCtvCofIY7RqhIKojcdpp2vx9qpT0Zj+s482TeyCsNCij/99viFULUItAnXeF5/hjncIitTubZizrG3SdRbv+8ZPUzQ08CAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHm0WeZ7tuXkAXOACIjIGlj26ZtuMA0GCSqGSIb3DQEBCwUAA4ICAQBVH1ipvLKoUNAMsdgaaSAnKQisYXVcim74guVpL9X2Vku5uHMQWdMhl37nTHH7stJgrTmoC+oXIVaF8VAOWevO4FnpuskV74adj4SA9uTpkZDcF5tiG0XwZpXSfG/C6jvvH8/L1q4n8amwyK79fX6a+iIE6//Zf+qRKyKxFw6P8oo0W1jY/AHJVLm4JsyKiDOJTC2EPILf7pZXBbosu/fEt8dOO4K+Mcgic3OS0cKApDk5EDMjgkw8n4ayVZgdvimGjCKbnuJrO1c6gnBN3AnHicsKB01s6F2Oye/Oq8e7tStORdZK0CbM5XLKCGqlleMVofek7cksX6X7/6woAi6+13u743F7kBbTB15GU3w3B0KM08SWnNWZtSrglRqASK5MOQfOzEekUpUrurj7rdIzU33lHU1t1aGxx0Jv5kAnNVyjKLcHjeeNM5DnI5/7UJx5bEbVtBWzlm5+mwyWOrhSLT/WW+H7CMKE/iSoo4narGrhGCqxqENhW9Mf3DuNdvIt6I113xczbD1T+3vLQV//3KLQYTjhlrisXYs313XVM8CZEa6dQcFydYS+AkFCX2ckSJTRmye+Bz+5uE+BdFHherftnSPivuDVKAQTPDEDnt16bI/GBxjGf95Hjj8ongQGz6VUNHe97Imb6RdD31vbX/6OHleizUCdfmIi2t4YJwAAAAEAAAACaDIAAQAAAABQYW5vbjpiZUNvbnNlcnZhdGl2ZTp0bHNmbGFnczB4MDAwMDAwMDA6ZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbTo0NDMBAA==request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 9781 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:40:52 GMT -age: 3234 -last-modified: Fri, 30 Aug 2024 00:00:11 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 9781 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:40:52 GMT -age: 3234 -last-modified: Fri, 30 Aug 2024 00:00:11 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1&5 \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/541D6315FD6E7A2FC9F4F2DB12F541CE2C439CDD b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/541D6315FD6E7A2FC9F4F2DB12F541CE2C439CDD deleted file mode 100644 index 997ac76..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/541D6315FD6E7A2FC9F4F2DB12F541CE2C439CDD and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6186FF87B05BBA32BE62772435A5F127F1365B97 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6186FF87B05BBA32BE62772435A5F127F1365B97 deleted file mode 100644 index 6457454..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6186FF87B05BBA32BE62772435A5F127F1365B97 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/627B28BE630527D8C6E50ABD978350C1A29E437A b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/627B28BE630527D8C6E50ABD978350C1A29E437A deleted file mode 100644 index 131405c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/627B28BE630527D8C6E50ABD978350C1A29E437A and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6304695218A5C5ED392F73A6283ABB92B9805D29 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6304695218A5C5ED392F73A6283ABB92B9805D29 deleted file mode 100644 index 4dd45d4..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6304695218A5C5ED392F73A6283ABB92B9805D29 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/63F48F4F7F1BC3195F5AB831F9794F3DBA2D30E1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/63F48F4F7F1BC3195F5AB831F9794F3DBA2D30E1 deleted file mode 100644 index 4438ca0..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/63F48F4F7F1BC3195F5AB831F9794F3DBA2D30E1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6692A9F626168A59628CA8CEF26652430B35CE9D b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6692A9F626168A59628CA8CEF26652430B35CE9D deleted file mode 100644 index 17d6db7..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6692A9F626168A59628CA8CEF26652430B35CE9D and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6750F7FED58DEE2FBD9AD5E167BAACA39BF1B64B b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6750F7FED58DEE2FBD9AD5E167BAACA39BF1B64B deleted file mode 100644 index 74b8cd0..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6750F7FED58DEE2FBD9AD5E167BAACA39BF1B64B +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"sort":"-last_modified","schema":{"type":"object","required":["telemetryId","searchPageRegexp","queryParamName","queryParamNames"],"properties":{"isSPA":{"type":"boolean","title":"Is Single Page App","description":"Whether the provider exhibits tendencies of a single page app, namely changes the entire contents of the page without having to reload."},"components":{"type":"array","items":{"type":"object","required":["type"],"properties":{"type":{"type":"string","pattern":"^[a-z](?:_?[a-z])*$","description":"The type of component the anchor or DOM element should belong to."},"default":{"type":"boolean","description":"Whether this component should be the fallback option if a link was included in both ad-related regular expressions as well as regular expressions matching non-ad elements but couldn't be categorized. Defaults to false."},"topDown":{"type":"boolean","description":"Whether the component should be found first by using document.querySelectorAll on the parent selector definition. Defaults to false."},"excluded":{"type":"object","properties":{"parent":{"type":"object","required":["selector"],"properties":{"selector":{"type":"string","description":"The root DOM element that shouldn't be a parent from the context of the anchor being inspected."}}}},"description":"Conditions that should not be included."},"included":{"type":"object","required":["parent"],"properties":{"parent":{"type":"object","title":"Parent","required":["selector"],"properties":{"selector":{"type":"string","description":"If topDown is true for this component, then this will be the value used in querySelectorAll(). Otherwise, it will be the value to in closest() from the context of an anchor."},"skipCount":{"$ref":"#/definitions/skipCount"},"eventListeners":{"$ref":"#/definitions/eventListeners"}},"description":"The DOM element that should only contain elements applicable to a single component type."},"related":{"type":"object","required":["selector"],"properties":{"selector":{"type":"string","description":"The selector to use querySelectorAll from the context of the parent. Any elements specified will have their click events registered and categorized as expanded unless explicitly overwritten in SearchSERPTelemetryChild."}}},"children":{"type":"array","items":{"type":"object","required":["selector"],"properties":{"type":{"type":"string","pattern":"^[a-z](?:_?[a-z])*$","description":"The component type to use if this child is present."},"selector":{"type":"string","description":"The selector to use querySelectorAll from the context of the parent."},"skipCount":{"$ref":"#/definitions/skipCount"},"countChildren":{"type":"boolean","description":"Whether we should count all instances of the child element instead of anchor links found inside of the parent. Defaults to false."},"eventListeners":{"$ref":"#/definitions/eventListeners"}}},"title":"Children","description":"Child DOM elements of the parent. Optional."}},"description":"Conditions that should be fulfilled."},"dependentRequired":{"topDown":["included"]}}},"title":"Components","description":"An array of components that could be on the SERP."},"shoppingTab":{"type":"object","title":"Shopping Tab","required":["selector","regexp"],"properties":{"regexp":{"type":"string","description":"The regular expression to match against a possible shopping tab. Must be provided if using this feature."},"selector":{"type":"string","description":"The elements on the page to inspect for the shopping tab. Should be anchor elements."},"inspectRegexpInSERP":{"type":"boolean","description":"Whether the regexp should be used against hrefs the selector matches against."}}},"taggedCodes":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9-._]*$"},"title":"Partner Codes","description":"An array of partner codes to match against the parameters in the url. Matching these codes will report the SERP as tagged."},"telemetryId":{"type":"string","title":"Telemetry Id","pattern":"^[a-z0-9-._]*$","description":"The telemetry identifier for the provider."},"organicCodes":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9-._]*$"},"title":"Organic Codes","description":"An array of partner codes to match against the parameters in the url. Matching these codes will report the SERP as organic:, which means the search was performed organically rather than through a SAP."},"codeParamName":{"type":"string","title":"Partner Code Parameter Name","description":"The name of the query parameter for the partner code."},"accountCookies":{"type":"array","items":{"type":"object","properties":{"host":{"type":"string","description":"The host associated with a given cookie."},"name":{"type":"string","description":"The name associated with a given cookie."}}},"title":"Account Cookies","description":"An array of cookie details that are used to determine whether a client is signed in to a provider's account. NOTE: This property appears only in Firefox 127 but was renamed to `signedInCookies` for Firefox 128 and beyond. Therefore do not use this property. Please use `signedInCookies` instead."},"queryParamName":{"type":"string","title":"Search Query Parameter Name","description":"The name of the query parameter for the user's search string. This is deprecated, in preference to queryParamNames, but still defined for older clients (pre Firefox 121)."},"followOnCookies":{"type":"array","items":{"type":"object","properties":{"host":{"type":"string","pattern":"^[a-z0-9-._]*$","description":"The hostname on which the cookie is stored."},"name":{"type":"string","pattern":"^[a-zA-Z0-9-._]*$","description":"The name of the cookie to check."},"codeParamName":{"type":"string","pattern":"^[a-zA-Z0-9-._]*$","description":"The name of parameter within the cookie."},"extraCodePrefixes":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9-._]*$"},"description":"Possible values for the query parameter in the URL that indicates this might be a follow-on search."},"extraCodeParamName":{"type":"string","pattern":"^[a-z0-9-._]*$","description":"The query parameter name in the URL that indicates this might be a follow-on search."}}},"title":"Follow-on Cookies","description":"An array of cookie details that are used to identify follow-on searches."},"queryParamNames":{"type":"array","items":{"type":"string"},"title":"Search Query Parameter Names","description":"An array of query parameters that may be used for the user's search string."},"signedInCookies":{"type":"array","items":{"type":"object","properties":{"host":{"type":"string","description":"The host associated with a given cookie."},"name":{"type":"string","description":"The name associated with a given cookie."}}},"title":"Signed-in Cookies","description":"An array of cookie details that are used to determine whether a client is signed in to a provider's account."},"domainExtraction":{"type":"object","title":"Domain Extraction","properties":{"ads":{"type":"array","items":{"$ref":"#/definitions/extraction"},"description":"An array of methods for extracting domains from ads."},"nonAds":{"type":"array","items":{"$ref":"#/definitions/extraction"},"description":"An array of methods for extracting domains from non-ads."}},"description":"An array of methods for extracting domains from a SERP result."},"searchPageRegexp":{"type":"string","title":"Search Page Regular Expression","description":"A regular expression which matches the search page of the provider."},"ignoreLinkRegexps":{"type":"array","items":{"type":"string","description":"The matching regular expression."},"title":"Ignore links matching regular expressions","description":"Regular expressions matching links that should be ignored by the network observer."},"nonAdsLinkRegexps":{"type":"array","items":{"type":"string","description":"The matching regular expression."},"title":"Non-ads link matching regular expressions","description":"An array containing known patterns that match non-ad links from a search provider."},"searchPageMatches":{"type":"array","items":{"type":"string"},"title":"Search Page Matches","description":"An array containing match expressions used to match on URLs."},"adServerAttributes":{"type":"array","items":{"type":"string"},"title":"Ad Server Attributes","description":"An array of strings that potentially match data-attribute keys of anchors."},"followOnParamNames":{"type":"array","items":{"type":"string","pattern":"^[a-z0-9-._]*$"},"title":"Follow-on Search Parameter Names","description":"An array of query parameter names that are used when a follow-on search occurs."},"expectedOrganicCodes":{"type":"array","items":{"type":"string","pattern":"^[a-zA-Z0-9-._]*$"},"title":"Expected Organic Codes","description":"An array of partner codes to match against the parameters in the url. Matching these codes will report the SERP as organic:none which means the user has done a search through the search engine's website rather than through SAP."},"defaultPageQueryParam":{"type":"object","title":"Default page query parameter","required":["key","value"],"properties":{"key":{"type":"string","description":"The key corresponding to the query parameter that contains what type of search page is being shown."},"value":{"type":"string","description":"The value corresponding to the query parameter that should be matched against."}}},"extraAdServersRegexps":{"type":"array","items":{"type":"string"},"title":"Extra Ad Server Regular Expressions","description":"An array of regular expressions that match URLs of potential ad servers."},"nonAdsLinkQueryParamNames":{"type":"array","items":{"type":"string","string":"The query param name to examine."},"title":"Non-ads link query param names","description":"Query param names present in non-ads link that recover the link that will be redirected to."}},"definitions":{"skipCount":{"type":"boolean","title":"Skip Count","description":"Whether to skip reporting of the count of these elements to ad_impressions. Defaults to false."},"extraction":{"anyOf":[{"type":"object","required":["selectors","method","options"],"properties":{"method":{"enum":["dataAttribute"],"description":"The extraction method used for the query."},"options":{"type":"object","required":["dataAttributeKey"],"properties":{"dataAttributeKey":{"type":"string","description":"The data attribute key that will be looked up in order to retrieve its data attribute value."}}},"selectors":{"type":"string","description":"The query to inspect all elements on the SERP."}}},{"type":"object","required":["selectors","method"],"properties":{"method":{"enum":["href"],"description":"The extraction method to use for the query."},"options":{"type":"object","required":["queryParamKey"],"properties":{"queryParamKey":{"type":"string","description":"The query parameter key to inspect in the href."},"queryParamValueIsHref":{"type":"boolean","description":"Whether the query param value is expected to contain an href."}}},"selectors":{"type":"string","description":"The query to use to inspect all elements on the SERP."}}},{"type":"object","required":["selectors","method"],"properties":{"method":{"enum":["textContent"],"description":"The extraction method to use for the query."},"selectors":{"type":"string","description":"The query to use to inspect all elements on the SERP."}}}]},"eventListener":{"type":"object","title":"Event Listener","required":["eventType"],"properties":{"action":{"type":"string","title":"Action","pattern":"^[a-z](?:_?[a-z])*$","description":"The action to report when the event is triggered. If the event type is 'click', defaults to clicked. Otherwise, this should be provided."},"target":{"type":"string","title":"Target","pattern":"^[a-z](?:_?[a-z])*$","description":"The component type to report when the event is triggered. Uses the child component type (if exists), otherwise uses the parent component type."},"eventType":{"type":"string","title":"Event Type","pattern":"^[a-z][A-Za-z]*$","description":"The type of event to listen for. Custom events, especially those with special logic like keydownEnter, can be used if the Desktop code has been updated."}},"description":"Event listeners attached to a component."},"eventListeners":{"type":"array","items":{"$ref":"#/definitions/eventListener"},"title":"Event Listeners","description":"An array of Event Listeners to apply to elements."}}},"signature":{"ref":"k7x2eilc36qg2io8ztcyfar01","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"rC8ruks139XPSbmpG9O3r5JZXVxB7iGl8Id4m3bd63-ylvHi-7NlLhO9G2_uJKTGF7PU_dSSjA2bpj_MT07RpJbyQOTcjMPfy-123pjSGg_NH1nBtEkVbetnN0iSzH7R","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"attachment":{"enabled":false,"required":false},"displayFields":["telemetryId"],"id":"search-telemetry-v2","last_modified":1724867833876,"bucket":"main"},"timestamp":1724867833754,"changes":[{"schema":1724630408117,"components":[{"type":"ad_popover","included":{"parent":{"selector":"#plahover"},"children":[{"selector":".pla-hovercard-container","skipCount":true,"countChildren":true}]}},{"type":"ad_carousel","included":{"parent":{"selector":".pla-exp-container"},"related":{"selector":"g-right-button, g-left-button, .exp-button"},"children":[{"selector":"[data-dtld]","countChildren":true}]}},{"type":"ad_carousel","included":{"parent":{"selector":".sh-sr__shop-result-group"},"related":{"selector":"g-right-button, g-left-button"},"children":[{"selector":".sh-np__click-target","countChildren":true}]}},{"type":"refined_search_buttons","topDown":true,"included":{"parent":{"selector":"#appbar g-scrolling-carousel"},"related":{"selector":"g-right-button, g-left-button"},"children":[{"selector":"a"}]}},{"type":"ad_link","excluded":{"parent":{"selector":"#rhs"}},"included":{"parent":{"selector":"[data-text-ad='1']"},"children":[{"type":"ad_sitelink","selector":"[role='list']"}]}},{"type":"ad_sidebar","included":{"parent":{"selector":"#rhs"},"children":[{"selector":".pla-unit, .mnr-c","countChildren":true}]}},{"type":"incontent_searchbox","topDown":true,"included":{"parent":{"selector":"form[role='search']"},"related":{"selector":"div.logo + div + div"},"children":[{"selector":"input[type='text']"},{"selector":"textarea[name='q']"}]}},{"type":"ad_image_row","excluded":{"parent":{"selector":".pla-exp-container"}},"included":{"parent":{"selector":".top-pla-group-inner"},"children":[{"selector":"[data-dtld]","countChildren":true}]}},{"type":"cookie_banner","topDown":true,"included":{"parent":{"selector":"div.spoKVd"},"children":[{"selector":"button#L2AGLb","eventListeners":[{"action":"clicked_accept","eventType":"click"}]},{"selector":"button#W0wltc","eventListeners":[{"action":"clicked_reject","eventType":"click"}]},{"selector":"button#VnjCcb","eventListeners":[{"action":"clicked_more_options","eventType":"click"}]}]}},{"type":"ad_link","default":true}],"shoppingTab":{"regexp":"&tbm=shop","selector":"div[role='navigation'] a","inspectRegexpInSERP":true},"taggedCodes":["firefox-a","firefox-b","firefox-b-1","firefox-b-ab","firefox-b-1-ab","firefox-b-d","firefox-b-1-d","firefox-b-e","firefox-b-1-e","firefox-b-m","firefox-b-1-m","firefox-b-o","firefox-b-1-o","firefox-b-lm","firefox-b-1-lm","firefox-b-lg","firefox-b-huawei-h1611","firefox-b-is-oem1","firefox-b-oem1","firefox-b-oem2","firefox-b-tinno","firefox-b-pn-wt","firefox-b-pn-wt-us","ubuntu","ubuntu-sn"],"telemetryId":"google","organicCodes":[],"codeParamName":"client","queryParamName":"q","queryParamNames":["q"],"signedInCookies":[{"host":"accounts.google.com","name":"SID"}],"domainExtraction":{"ads":[{"method":"textContent","selectors":".sh-np__seller-container"},{"method":"dataAttribute","options":{"dataAttributeKey":"dtld"},"selectors":"[data-dtld]"}],"nonAds":[{"method":"href","options":{"queryParamKey":"url","queryParamValueIsHref":true},"selectors":".mnIHsc > a:first-child"},{"method":"href","selectors":"a[jsname='UWckNb']"},{"method":"dataAttribute","options":{"dataAttributeKey":"lpage"},"selectors":"[data-id='mosaic'] [data-lpage]"}]},"searchPageRegexp":"^https://www\\.google\\.(?:.+)/search","ignoreLinkRegexps":["^https?://consent\\.google\\.(?:.+)/d\\?continue\\="],"nonAdsLinkRegexps":["^https?://www\\.google\\.(?:.+)/url?(?:.+)&url="],"adServerAttributes":["rw"],"followOnParamNames":["oq","ved","ei"],"extraAdServersRegexps":["^https?://www\\.google(?:adservices)?\\.com/(?:pagead/)?aclk"],"nonAdsLinkQueryParamNames":["url"],"id":"635a3325-1995-42d6-be09-dbe4b2a95453","last_modified":1724867833754}]}sGfԳfԳGFfԶZa,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/search-telemetry-v2/changeset?_expected=1724867833754&_since=%221718041017650%22strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAARub25lAAAADlJTQS1QU1MtU0hBMjU2AANmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp1mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAQEAAAAAUGFub246YmVDb25zZXJ2YXRpdmU6dGxzZmxhZ3MweDAwMDAwMDAwOmZpcmVmb3guc2V0dGluZ3Muc2VydmljZXMubW96aWxsYS5jb206NDQzAAA=request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 16721 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:45:47 GMT -age: 2970 -last-modified: Wed, 28 Aug 2024 17:57:13 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 16721 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:45:47 GMT -age: 2970 -last-modified: Wed, 28 Aug 2024 17:57:13 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1AQ \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6762E24BB9F66A6430B9C774503510453B4EBA21 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6762E24BB9F66A6430B9C774503510453B4EBA21 deleted file mode 100644 index ca0ad97..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6762E24BB9F66A6430B9C774503510453B4EBA21 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/68F9CAD29DCB6AFB2B5F883F84F700F8E44AD1E3 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/68F9CAD29DCB6AFB2B5F883F84F700F8E44AD1E3 deleted file mode 100644 index ffd55ae..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/68F9CAD29DCB6AFB2B5F883F84F700F8E44AD1E3 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6B099E76B26CDFFE7E82A24D362433768C4C8F9C b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6B099E76B26CDFFE7E82A24D362433768C4C8F9C deleted file mode 100644 index cf397d9..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6B099E76B26CDFFE7E82A24D362433768C4C8F9C and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6C7EBA78B72D3B3A048FCE8FC79A3D45BCB94DB3 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6C7EBA78B72D3B3A048FCE8FC79A3D45BCB94DB3 deleted file mode 100644 index 4243284..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6C7EBA78B72D3B3A048FCE8FC79A3D45BCB94DB3 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6D89348819C8881868053197CA0754F36784BF5F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6D89348819C8881868053197CA0754F36784BF5F deleted file mode 100644 index 30477e6..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6D89348819C8881868053197CA0754F36784BF5F +++ /dev/null @@ -1,15 +0,0 @@ -{"tiles":[{"id":74357,"name":"Amazon","url":"https://www.amazon.ca/?tag=admpdesktopca-20\u0026ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9\u0026mfadid=adm","click_url":"https://bridge.sfo1.ap01.net/ctp?version=1.0.0\u0026encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy\u0026ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9","image_url":"https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg","impression_url":"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr","image_size":200},{"id":74925,"name":"Expedia","url":"https://www.expedia.ca/?locale=en_CA\u0026siteid=4\u0026semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL\u0026SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1\u0026mfadid=adm","click_url":"https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0\u0026encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw\u0026ctag=88697251732393984","image_url":"https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg","impression_url":"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy","image_size":200},{"id":74038,"name":"Hotels.com","url":"https://ca.hotels.com/?locale=en_CA\u0026pos=HCOM_CA\u0026siteid=300000002\u0026rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds\u0026PSRC=_psrc\u0026semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL\u0026SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1\u0026mfadid=adm","click_url":"https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0\u0026encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw\u0026ctag=88697251732393984","image_url":"https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg","impression_url":"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm","image_size":200}],"sov":"eyJuYW1lIjoiU09WLTIwMjMxMDI3MTk0NTI4IiwiYWxsb2NhdGlvbnMiOlt7InBvc2l0aW9uIjoxLCJhbGxvY2F0aW9uIjpbeyJwYXJ0bmVyIjoiYW1wIiwicGVyY2VudGFnZSI6MTAwfSx7InBhcnRuZXIiOiJtb3otc2FsZXMiLCJwZXJjZW50YWdlIjowfV19LHsicG9zaXRpb24iOjIsImFsbG9jYXRpb24iOlt7InBhcnRuZXIiOiJhbXAiLCJwZXJjZW50YWdlIjo5MH0seyJwYXJ0bmVyIjoibW96LXNhbGVzIiwicGVyY2VudGFnZSI6MTB9XX0seyJwb3NpdGlvbiI6MywiYWxsb2NhdGlvbiI6W3sicGFydG5lciI6ImFtcCIsInBlcmNlbnRhZ2UiOjEwMH0seyJwYXJ0bmVyIjoibW96LXNhbGVzIiwicGVyY2VudGFnZSI6MH1dfV19"} -\>:fԴfԴGGfԵ0a,:https://contile.services.mozilla.com/v1/tilesstrongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAULMIIFBzCCA++gAwIBAgISBK9jyJ+zaT7yhgXtI4DNoMRYMA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODI5MDgyMDA3WhcNMjQxMTI3MDgyMDA2WjAnMSUwIwYDVQQDExxjb250aWxlLnNlcnZpY2VzLm1vemlsbGEuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0q5+8pAn1KedqJWoSPMCeapDfl3Vl5rO6yoHHHDry2jAEyAC4a5E2kwWOWg2DWL/shfyL9jYKSB8dathaO/7kEpHxHR0zz1KD1OeES5mWU+u4NXKIeVcdT3tsvcD3nhc/+pIu9zHL7qGsBOXRliTbbrtVano+U8bvTvj0Ah+aEpNdbAAqVTFQRim50eMijfQK9nK/4DlHlwubjYln/Zi3yDDRmE7O3ZYzg4FNtp7VCaJJUb+Wzdg9+iVn50+dB/KLzpwgFMxNoygKxpMTqkMjgDHEZQ4oIW5uWvVx2GblyfcpRzZmS/UwNB65KIFymXCGTi5QOl5fkyE+jCGHQ4TwQIDAQABo4ICHzCCAhswDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBQzqFYnDukFcjETavshbrdIKOhc8DAfBgNVHSMEGDAWgBS7vMNHpeS8qcbDpHIMEI2iNeHI6DBXBggrBgEFBQcBAQRLMEkwIgYIKwYBBQUHMAGGFmh0dHA6Ly9yMTAuby5sZW5jci5vcmcwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTAuaS5sZW5jci5vcmcvMCcGA1UdEQQgMB6CHGNvbnRpbGUuc2VydmljZXMubW96aWxsYS5jb20wEwYDVR0gBAwwCjAIBgZngQwBAgEwggEDBgorBgEEAdZ5AgQCBIH0BIHxAO8AdQA/F0tP1yJHWJQdZRyEvg0S7ZA3fx+FauvBvyiF7PhkbgAAAZGdbf7sAAAEAwBGMEQCIHJvcvpl2dPeeBI4AP1Em+/R2BbgkdSYdHIMImJhwmF+AiBNky8zoUVZVPV15dkjrlPXhC9svwn3TW7JICeZBF8gCwB2AN/hVuuqBa+1nA+GcY2owDJOrlbZbqf1pWoB0cE7vlJcAAABkZ1t/+MAAAQDAEcwRQIhAMIC3sZsuK/u6J5nev8nMJcbDVL/FLTDfgnXSCmmCc7uAiBAlXAbLJ2rr3grMMbFW6qz61d3bdD8RJlkNFIZKGEdfjANBgkqhkiG9w0BAQsFAAOCAQEAVctsZjDwe/NgD0/WHLUyJ4YIVrSGT3Brjta8VPNR+DcPIj7vdz7v8RaQ+M2SW2oLZBaiu2/hRwQFX+DL+pZfTrKKs6IuDO5B/IdAeool9KOa/KDjAFg/toZ4xXpyRmTKC8pyX5FEmF7gpz3qCjme44vj6jHxfzsBBwUhIVvm9XmhkUbmvyebaFshxZ+8ReNaKs/tnDlF6MtsLRmG7hQUbuurLFrS9s+58sp4T4Az0L69fMJmRylYEjvnZw3GIKo35QnAzmghdKanEp/jevUWWgHajRtGdz4uWzVjMJo1/xnSWOTUTiG+qTkm6WmKqbjgTv5Qia2ASvnNXaxzUGAXcRMBAAQAAAAAAAEBAAAAAAAABngyNTUxOQAAAA5SU0EtUFNTLVNIQTI1NgADZgoyJpFcT/u7IImFpjLfBb3Dl5pUIkzVhYlpa26W6oMAAAAAAAAFCzCCBQcwggPvoAMCAQICEgSvY8ifs2k+8oYF7SOAzaDEWDANBgkqhkiG9w0BAQsFADAzMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3MgRW5jcnlwdDEMMAoGA1UEAxMDUjEwMB4XDTI0MDgyOTA4MjAwN1oXDTI0MTEyNzA4MjAwNlowJzElMCMGA1UEAxMcY29udGlsZS5zZXJ2aWNlcy5tb3ppbGxhLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANKufvKQJ9SnnaiVqEjzAnmqQ35d1ZeazusqBxxw68towBMgAuGuRNpMFjloNg1i/7IX8i/Y2CkgfHWrYWjv+5BKR8R0dM89Sg9TnhEuZllPruDVyiHlXHU97bL3A954XP/qSLvcxy+6hrATl0ZYk2267VWp6PlPG70749AIfmhKTXWwAKlUxUEYpudHjIo30CvZyv+A5R5cLm42JZ/2Yt8gw0ZhOzt2WM4OBTbae1QmiSVG/ls3YPfolZ+dPnQfyi86cIBTMTaMoCsaTE6pDI4AxxGUOKCFublr1cdhm5cn3KUc2Zkv1MDQeuSiBcplwhk4uUDpeX5MhPowhh0OE8ECAwEAAaOCAh8wggIbMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUM6hWJw7pBXIxE2r7IW63SCjoXPAwHwYDVR0jBBgwFoAUu7zDR6XkvKnGw6RyDBCNojXhyOgwVwYIKwYBBQUHAQEESzBJMCIGCCsGAQUFBzABhhZodHRwOi8vcjEwLm8ubGVuY3Iub3JnMCMGCCsGAQUFBzAChhdodHRwOi8vcjEwLmkubGVuY3Iub3JnLzAnBgNVHREEIDAeghxjb250aWxlLnNlcnZpY2VzLm1vemlsbGEuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMIIBAwYKKwYBBAHWeQIEAgSB9ASB8QDvAHUAPxdLT9ciR1iUHWUchL4NEu2QN38fhWrrwb8ohez4ZG4AAAGRnW3+7AAABAMARjBEAiByb3L6ZdnT3ngSOAD9RJvv0dgW4JHUmHRyDCJiYcJhfgIgTZMvM6FFWVT1deXZI65T14QvbL8J901uySAnmQRfIAsAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZGdbf/jAAAEAwBHMEUCIQDCAt7GbLiv7uieZ3r/JzCXGw1S/xS0w34J10gppgnO7gIgQJVwGyydq694KzDGxVuqs+tXd23Q/ESZZDRSGShhHX4wDQYJKoZIhvcNAQELBQADggEBAFXLbGYw8HvzYA9P1hy1MieGCFa0hk9wa47WvFTzUfg3DyI+73c+7/EWkPjNkltqC2QWortv4UcEBV/gy/qWX06yirOiLgzuQfyHQHqKJfSjmvyg4wBYP7aGeMV6ckZkygvKcl+RRJhe4Kc96go5nuOL4+ox8X87AQcFISFb5vV5oZFG5r8nm2hbIcWfvEXjWirP7Zw5RejLbC0Zhu4UFG7rqyxa0vbPufLKeE+AM9C+vXzCZkcpWBI752cNxiCqN+UJwM5oIXSmpxKf43r1FloB2o0bRnc+Lls1YzCaNf8Z0ljk1E4hvqk5Julpiqm44E7+UImtgEr5zV2sc1BgF3FmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAAEAAAAAOGFub246dGxzZmxhZ3MweDAwMDAwMDAwOmNvbnRpbGUuc2VydmljZXMubW96aWxsYS5jb206NDQzAQA=request-methodGETresponse-headHTTP/2 200 -cache-control: private, max-age=526, stale-if-error=10921 -content-type: application/json -date: Sun, 01 Sep 2024 18:34:46 GMT -via: 1.1 google -alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 -X-Firefox-Spdy: h2 -original-response-headerscache-control: private, max-age=526, stale-if-error=10921 -content-type: application/json -date: Sun, 01 Sep 2024 18:34:46 GMT -via: 1.1 google -alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 -X-Firefox-Spdy: h2 -ctid1net-response-time-onstart183net-response-time-onstop188 \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6DC3C566E975A736F603F963C307AEF2220CE9A1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6DC3C566E975A736F603F963C307AEF2220CE9A1 deleted file mode 100644 index 22d8e65..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6DC3C566E975A736F603F963C307AEF2220CE9A1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6DFA03F17ECBFF79246D72349CC3ADA3DA6B48D8 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6DFA03F17ECBFF79246D72349CC3ADA3DA6B48D8 deleted file mode 100644 index 943edf9..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6DFA03F17ECBFF79246D72349CC3ADA3DA6B48D8 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6E27E780C7544AA7F2AAF8FB2EC13F8B8C56549B b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6E27E780C7544AA7F2AAF8FB2EC13F8B8C56549B deleted file mode 100644 index 6f9ce0f..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6E27E780C7544AA7F2AAF8FB2EC13F8B8C56549B and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6F69829E3716CACF39B8A7BF3746148DC2319543 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6F69829E3716CACF39B8A7BF3746148DC2319543 deleted file mode 100644 index cf89687..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6F69829E3716CACF39B8A7BF3746148DC2319543 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6FA21C6830504629856068171294A76F2BEDF891 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6FA21C6830504629856068171294A76F2BEDF891 deleted file mode 100644 index bc048ae..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/6FA21C6830504629856068171294A76F2BEDF891 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7075287E0F9940F3AC90C7AF9F2CB51C70168B89 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7075287E0F9940F3AC90C7AF9F2CB51C70168B89 deleted file mode 100644 index 913ffe4..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7075287E0F9940F3AC90C7AF9F2CB51C70168B89 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7269DAF8B5DBFFE4A3A61E9C17F4085D752D9B2F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7269DAF8B5DBFFE4A3A61E9C17F4085D752D9B2F deleted file mode 100644 index 197fed9..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7269DAF8B5DBFFE4A3A61E9C17F4085D752D9B2F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/740D98CF01550607B0C0C173BEDE235CDD244769 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/740D98CF01550607B0C0C173BEDE235CDD244769 deleted file mode 100644 index 617aebf..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/740D98CF01550607B0C0C173BEDE235CDD244769 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7A17C82CA5BF6853AC3E827A92B6124DD878B4C9 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7A17C82CA5BF6853AC3E827A92B6124DD878B4C9 deleted file mode 100644 index d087100..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7A17C82CA5BF6853AC3E827A92B6124DD878B4C9 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7B574F7496A857C0542C011539A15000E74AA5C0 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7B574F7496A857C0542C011539A15000E74AA5C0 deleted file mode 100644 index 4b3853c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7B574F7496A857C0542C011539A15000E74AA5C0 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7C6840A385469B1249C7C95087F2A0B7F20185D6 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7C6840A385469B1249C7C95087F2A0B7F20185D6 deleted file mode 100644 index 93bdaa9..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7C6840A385469B1249C7C95087F2A0B7F20185D6 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7E1AF3CB5B1E4A9C0C0774AFC3B2BC4988D8AF2C b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7E1AF3CB5B1E4A9C0C0774AFC3B2BC4988D8AF2C deleted file mode 100644 index d4ce6c0..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/7E1AF3CB5B1E4A9C0C0774AFC3B2BC4988D8AF2C and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/812D8F5876E4A018D75CB4D5F3B65821BDD7BF67 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/812D8F5876E4A018D75CB4D5F3B65821BDD7BF67 deleted file mode 100644 index cc6fd06..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/812D8F5876E4A018D75CB4D5F3B65821BDD7BF67 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/8439CA9AE0BD567B61EFF22EF87284C71C277A81 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/8439CA9AE0BD567B61EFF22EF87284C71C277A81 deleted file mode 100644 index b34f756..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/8439CA9AE0BD567B61EFF22EF87284C71C277A81 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/84D62C731DD8FC0198E1D33F7FAA75351A15A886 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/84D62C731DD8FC0198E1D33F7FAA75351A15A886 deleted file mode 100644 index de23498..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/84D62C731DD8FC0198E1D33F7FAA75351A15A886 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/8B0017BC433ACF7C7EA6F774D308EC01F4DD8FAE b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/8B0017BC433ACF7C7EA6F774D308EC01F4DD8FAE deleted file mode 100644 index 8d8ed47..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/8B0017BC433ACF7C7EA6F774D308EC01F4DD8FAE and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/90D2374BBB78FD3C174AA1F0C1882FEAF19B069E b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/90D2374BBB78FD3C174AA1F0C1882FEAF19B069E deleted file mode 100644 index ad0070c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/90D2374BBB78FD3C174AA1F0C1882FEAF19B069E and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9135A8EA9C8EFDD6C6E69CD02B00888AEF6BDFF7 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9135A8EA9C8EFDD6C6E69CD02B00888AEF6BDFF7 deleted file mode 100644 index b1acfb1..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9135A8EA9C8EFDD6C6E69CD02B00888AEF6BDFF7 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/91462226DBE9027E7A3421FF6B88992AE30F9501 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/91462226DBE9027E7A3421FF6B88992AE30F9501 deleted file mode 100644 index b76fe3b..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/91462226DBE9027E7A3421FF6B88992AE30F9501 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/92EC6D366A798F6CE0CB74E2EDD3A63378322C52 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/92EC6D366A798F6CE0CB74E2EDD3A63378322C52 deleted file mode 100644 index 4d488e0..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/92EC6D366A798F6CE0CB74E2EDD3A63378322C52 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/94FA16721AA507E03AE4F0B3FBE01019B6B40F73 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/94FA16721AA507E03AE4F0B3FBE01019B6B40F73 deleted file mode 100644 index adc1e50..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/94FA16721AA507E03AE4F0B3FBE01019B6B40F73 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/96C52BA3CB99F01D26C9454F1145BB82B188AD3F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/96C52BA3CB99F01D26C9454F1145BB82B188AD3F deleted file mode 100644 index 2ec823b..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/96C52BA3CB99F01D26C9454F1145BB82B188AD3F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/982489304EBE7ABDC919DFE8D60616FE32480524 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/982489304EBE7ABDC919DFE8D60616FE32480524 deleted file mode 100644 index c96e9fe..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/982489304EBE7ABDC919DFE8D60616FE32480524 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/99D01D160AC7ADE6301F3559541FEF1A6F6155F0 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/99D01D160AC7ADE6301F3559541FEF1A6F6155F0 deleted file mode 100644 index 659fca3..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/99D01D160AC7ADE6301F3559541FEF1A6F6155F0 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/99E8159CA51C2E952D060F0BE1C702685D6FD241 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/99E8159CA51C2E952D060F0BE1C702685D6FD241 deleted file mode 100644 index 4c7226a..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/99E8159CA51C2E952D060F0BE1C702685D6FD241 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9ABA548395E26B305BA61603D734E8CE6479BD51 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9ABA548395E26B305BA61603D734E8CE6479BD51 deleted file mode 100644 index 44156bb..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9ABA548395E26B305BA61603D734E8CE6479BD51 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9B0EC88405B044E43C854FDF7F87344621375657 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9B0EC88405B044E43C854FDF7F87344621375657 deleted file mode 100644 index 83e9524..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9B0EC88405B044E43C854FDF7F87344621375657 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9D396E549F082CD9AFDC48D473A28E6698828189 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9D396E549F082CD9AFDC48D473A28E6698828189 deleted file mode 100644 index 83ae43c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9D396E549F082CD9AFDC48D473A28E6698828189 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9D4EB882DAEC5251AB92B368F89F96F6D261BC03 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9D4EB882DAEC5251AB92B368F89F96F6D261BC03 deleted file mode 100644 index d8c8244..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9D4EB882DAEC5251AB92B368F89F96F6D261BC03 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9DA9E485979BC2736B05619ABF01B6C37145F7DA b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9DA9E485979BC2736B05619ABF01B6C37145F7DA deleted file mode 100644 index 3baf63c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9DA9E485979BC2736B05619ABF01B6C37145F7DA and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9EC91A904F1439FEE9535BD64BE4A271E029363E b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9EC91A904F1439FEE9535BD64BE4A271E029363E deleted file mode 100644 index 8bdc81d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9EC91A904F1439FEE9535BD64BE4A271E029363E and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9F142B87F54DC9B698282130FDC61550DE1F87B4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9F142B87F54DC9B698282130FDC61550DE1F87B4 deleted file mode 100644 index 9ca7d10..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/9F142B87F54DC9B698282130FDC61550DE1F87B4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A0C05846E2CE9FF386BF829D157F6574973FAD3C b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A0C05846E2CE9FF386BF829D157F6574973FAD3C deleted file mode 100644 index 0c669a2..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A0C05846E2CE9FF386BF829D157F6574973FAD3C and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A222492EB319BA5E3DD893A59C87C9A969291CF1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A222492EB319BA5E3DD893A59C87C9A969291CF1 deleted file mode 100644 index d154974..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A222492EB319BA5E3DD893A59C87C9A969291CF1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A436421A04F7B908A886722F797B41EE2B4C61D1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A436421A04F7B908A886722F797B41EE2B4C61D1 deleted file mode 100644 index 41dfe83..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A436421A04F7B908A886722F797B41EE2B4C61D1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A6C7D9A14F03B65AD750D66C969024F80B57F791 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A6C7D9A14F03B65AD750D66C969024F80B57F791 deleted file mode 100644 index f531d79..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A6C7D9A14F03B65AD750D66C969024F80B57F791 +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"schema":{"type":"object","required":["addon_id","icons","version","sourceURI","description","privacyPolicy","studyType","moreInfo","dataCollectionDetails","authors","isDefault","studyEnded"],"properties":{"icons":{"type":"object","properties":{"32":{"type":"string"},"64":{"type":"string"},"128":{"type":"string"}}},"title":{"type":"string","maxLength":75},"authors":{"type":"object","properties":{"name":{"type":"string","maxLength":75},"moreInfo":{"type":"object","properties":{"spec":{"type":"string"}}}}},"version":{"type":"string"},"addon_id":{"type":"string"},"moreInfo":{"type":"object","properties":{"spec":{"type":"string"}}},"isDefault":{"type":"boolean"},"sourceURI":{"type":"object","properties":{"spec":{"type":"string"}}},"studyType":{"type":"string"},"studyEnded":{"type":"boolean"},"description":{"type":"string"},"privacyPolicy":{"type":"object","properties":{"spec":{"type":"string"}}},"dataCollectionDetails":{"type":"array","properties":{"collectionDetail":{"type":"string"}}}}},"signature":{"ref":"15fjpimyglnr93k1xty2qrjkkp","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"8Z1Miqwq_lpUJOyaqe02jBJLW4p2VvolJy8pGYylqXDcMgQNPVg6GNNgKjqJ-CywFRv5Wkl5gekLPAl5jKF37BbJEpupXM7OmMtPLaDQ5llPVmqCNfkMRNV8JTz8EDat","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"displayFields":["addon_id"],"id":"pioneer-study-addons-v1","last_modified":1724976023728,"bucket":"main"},"timestamp":1607042143590,"changes":[{"name":"Political and COVID-19 News Information Flows Study","icons":{"32":"https://ion-extension.prod.dataops.mozgcp.net/Princeton-Shield-32px.png","64":"https://ion-extension.prod.dataops.mozgcp.net/Princeton-Shield-32px.png","128":"https://ion-extension.prod.dataops.mozgcp.net/Princeton-Shield-32px.png"},"schema":1606851709123,"authors":{"url":"https://github.com/mozilla-extensions/news-disinformation-study","name":"Princeton University, Center for Information Technology Policy","moreInfo":{}},"version":"1.2.1","addon_id":"news.study@princeton.edu","moreInfo":{"spec":"https://example.com"},"isDefault":false,"sourceURI":{"spec":"https://ion-extension.prod.dataops.mozgcp.net/news-disinformation-study-1.2.1.xpi"},"studyType":"extension","studyEnded":false,"description":"This Study, conducted by Princeton University and Mozilla, examines political and COVID-19 news information flows across the web. Our goal is to understand how web users are exposed to, consume, and share these types of information, which can inform efforts to distinguish trustworthy and untrustworthy content. This Study runs until May 31, 2021. If you click \u201CJoin Study\u201D, you will receive additional information about the study, and Mozilla will ask for your consent to participate. Princeton will also ask for your consent, as required by the Princeton Institutional Review Board (IRB). This Study will not include the full URL of the pages you visit or share, but does include the domain and subdomain name of certain websites related to political and COVID-19 news. Read the full data collection documentation here. The Study also does not collect contact information, such as your email address(es) or social media account(s).","privacyPolicy":{"spec":"https://ion-extension.prod.dataops.mozgcp.net/news-disinformation/notice.html"},"joinStudyConsent":"\uD835\uDDE3\uD835\uDDFC\uD835\uDDF9\uD835\uDDF6\uD835\uDE01\uD835\uDDF6\uD835\uDDF0\uD835\uDDEE\uD835\uDDF9 \uD835\uDDEE\uD835\uDDFB\uD835\uDDF1 \uD835\uDDD6\uD835\uDDE2\uD835\uDDE9\uD835\uDDDC\uD835\uDDD7-19 \uD835\uDDDC\uD835\uDDFB\uD835\uDDF3\uD835\uDDFC\uD835\uDDFF\uD835\uDDFA\uD835\uDDEE\uD835\uDE01\uD835\uDDF6\uD835\uDDFC\uD835\uDDFB \uD835\uDDD9\uD835\uDDF9\uD835\uDDFC\uD835\uDE04\uD835\uDE00 \uD835\uDDE6\uD835\uDE01\uD835\uDE02\uD835\uDDF1\uD835\uDE06 \uD835\uDDE3\uD835\uDDFF\uD835\uDDF6\uD835\uDE03\uD835\uDDEE\uD835\uDDF0\uD835\uDE06 \uD835\uDDE1\uD835\uDDFC\uD835\uDE01\uD835\uDDF6\uD835\uDDF0\uD835\uDDF2\nOctober 30, 2020\n\nThis Study is offered by Mozilla and researchers at Princeton University to conduct academic research about political and COVID-19 news and health information flows across websites and online services.\n\nThe goal of this study is to understand how web users are exposed to, consume, and share these types of information, which can inform efforts to distinguish trustworthy and untrustworthy content.\n\uD835\uDDEA\uD835\uDDF5\uD835\uDDEE\uD835\uDE01 \uD835\uDDDC\uD835\uDDFB\uD835\uDDF3\uD835\uDDFC\uD835\uDDFF\uD835\uDDFA\uD835\uDDEE\uD835\uDE01\uD835\uDDF6\uD835\uDDFC\uD835\uDDFB \uD835\uDDEA\uD835\uDDF2 \uD835\uDDD6\uD835\uDDFC\uD835\uDDF9\uD835\uDDF9\uD835\uDDF2\uD835\uDDF0\uD835\uDE01:\nThis Study collects data in two ways (1) through the Study add-on and; (2) through optional surveys offered by Princeton. The section below describes how these two parts work.\n\uD835\uDE1B\uD835\uDE29\uD835\uDE26 \uD835\uDE1A\uD835\uDE35\uD835\uDE36\uD835\uDE25\uD835\uDE3A \uD835\uDE22\uD835\uDE25\uD835\uDE25-\uD835\uDE30\uD835\uDE2F\nWhen you join this study, Mozilla will automatically install the study add-on to your browser. The following data will be collected through the add-on.\n\n\uD835\uDDD5\uD835\uDDFF\uD835\uDDFC\uD835\uDE04\uD835\uDE00\uD835\uDDF6\uD835\uDDFB\uD835\uDDF4 \uD835\uDDF1\uD835\uDDEE\uD835\uDE01\uD835\uDDEE: When you browse the web, Mozilla will collect general information about the sites you visit. This \uD835\uDE38\uD835\uDE2A\uD835\uDE2D\uD835\uDE2D \uD835\uDE2F\uD835\uDE30\uD835\uDE35 include the full URL of the pages, but does include the domain and subdomain name of certain websites related to political and COVID-19 news and information\u2014like foxnews.com, health.nytimes.com, cdc.gov, or coronavirus.health.ny.gov. We will also collect information about the time of day you access a site, how long you spend on a given site, how many different pages you load on that site, and what sources or websites led you to that site.\n\n\uD835\uDDE6\uD835\uDDFC\uD835\uDDF0\uD835\uDDF6\uD835\uDDEE\uD835\uDDF9 \uD835\uDDFA\uD835\uDDF2\uD835\uDDF1\uD835\uDDF6\uD835\uDDEE \uD835\uDDF1\uD835\uDDEE\uD835\uDE01\uD835\uDDEE: When you visit a news outlet\u2019s social media account, Mozilla will collect general information about the visit. This information does not include what content you viewed, but does include the name of the social media account, like @nytimes or @FoxNews on Twitter. We will also collect general information when you share content from a news outlet to Facebook, Twitter, or Reddit, and the audience you shared it with (e.g., public or restricted). We won\u2019t know exactly what you shared or who you shared it to, only that you shared a link from a news source and to an audience.\n\nRead the full data collection documentation here: https://github.com/mozilla-extensions/news-disinformation-study/tree/master/schemas\n\uD835\uDDE7\uD835\uDDF5\uD835\uDDF2 \uD835\uDDE6\uD835\uDE01\uD835\uDE02\uD835\uDDF1\uD835\uDE06 \uD835\uDE00\uD835\uDE02\uD835\uDDFF\uD835\uDE03\uD835\uDDF2\uD835\uDE06\nThe Princeton research team will also offer you the opportunity to participate in a separate survey, if you would like to provide more information for this research. Princeton runs the survey and it is subject to Princeton\u2019s IRB Consent Form. The survey is optional.\nPrinceton will share the survey data with Mozilla so that the add-on and survey data can be evaluated together.\n\n\uD835\uDDD7\uD835\uDDF2\uD835\uDDFA\uD835\uDDFC\uD835\uDDF4\uD835\uDDFF\uD835\uDDEE\uD835\uDDFD\uD835\uDDF5\uD835\uDDF6\uD835\uDDF0 \uD835\uDDF1\uD835\uDDEE\uD835\uDE01\uD835\uDDEE: If you complete a Princeton-administered Survey, Mozilla will receive a copy of your responses including your demographic information; like your age, gender, education level, voter registration status, income, political affiliation, and digital literacy.\n\n\uD835\uDDE0\uD835\uDDF2\uD835\uDDF1\uD835\uDDF6\uD835\uDDEE \uD835\uDDEF\uD835\uDDF2\uD835\uDDF5\uD835\uDDEE\uD835\uDE03\uD835\uDDF6\uD835\uDDFC\uD835\uDDFF \uD835\uDDF1\uD835\uDDEE\uD835\uDE01\uD835\uDDEE: If you complete a Princeton-administered Survey, Mozilla will receive a copy of your responses including your media use and preferences; like how often you watch or read the news, whether you trust it, and what sources you get your news from.\n\n\uD835\uDDEA\uD835\uDDF5\uD835\uDDFC \uD835\uDDEA\uD835\uDDF2 \uD835\uDDE0\uD835\uDDEE\uD835\uDE06 \uD835\uDDE6\uD835\uDDF5\uD835\uDDEE\uD835\uDDFF\uD835\uDDF2 \uD835\uDDDC\uD835\uDDFB\uD835\uDDF3\uD835\uDDFC\uD835\uDDFF\uD835\uDDFA\uD835\uDDEE\uD835\uDE01\uD835\uDDF6\uD835\uDDFC\uD835\uDDFB \uD835\uDE04\uD835\uDDF6\uD835\uDE01\uD835\uDDF5:\n\n\uD835\uDDDA\uD835\uDDFC\uD835\uDDFC\uD835\uDDF4\uD835\uDDF9\uD835\uDDF2 \uD835\uDDD6\uD835\uDDF9\uD835\uDDFC\uD835\uDE02\uD835\uDDF1 \uD835\uDDE3\uD835\uDDF9\uD835\uDDEE\uD835\uDE01\uD835\uDDF3\uD835\uDDFC\uD835\uDDFF\uD835\uDDFA (\uD835\uDDDA\uD835\uDDD6\uD835\uDDE3): We use GCP as our cloud-storage service. Mozilla has contracted with GCP requiring them to handle the data in ways that are approved by us.\n\n\uD835\uDDE3\uD835\uDDFF\uD835\uDDF6\uD835\uDDFB\uD835\uDDF0\uD835\uDDF2\uD835\uDE01\uD835\uDDFC\uD835\uDDFB \uD835\uDDE8\uD835\uDDFB\uD835\uDDF6\uD835\uDE03\uD835\uDDF2\uD835\uDDFF\uD835\uDE00\uD835\uDDF6\uD835\uDE01\uD835\uDE06: The data collected in this Study will be shared with Princeton University for the purposes of carrying out the academic research.\n\n\uD835\uDDDA\uD835\uDDF2\uD835\uDDFB\uD835\uDDF2\uD835\uDDFF\uD835\uDDEE\uD835\uDDF9 \uD835\uDDFD\uD835\uDE02\uD835\uDDEF\uD835\uDDF9\uD835\uDDF6\uD835\uDDF0: The results of this Study may be published. Additionally, data sets from this Study may be released. If we do so, we will aggregate the data and remove identifying information, so the data won\u2019t reveal the behaviors or characteristics of individual users.\n\uD835\uDDD7\uD835\uDDEE\uD835\uDE01\uD835\uDDEE \uD835\uDDE0\uD835\uDDEE\uD835\uDDFB\uD835\uDDEE\uD835\uDDF4\uD835\uDDF2\uD835\uDDFA\uD835\uDDF2\uD835\uDDFB\uD835\uDE01:\nYou can unenroll in the active study at any time by pressing the \u201CLeave Study\u201D button on the about:ion page in Firefox. When you unenroll from the study, we will treat this as a request to delete your data.\n\nOnce the study is closed, Mozilla will automatically remove the study add-on from your browser and you will no longer be able to delete the data you\u2019ve contributed to the study. This protects the integrity of the research. If you would like to delete your data, please do so before the study closes. You may also need to take additional steps to delete the survey data that Princeton holds, please reach out to Princeton for more information at (covid-19-study@lists.cs.princeton.edu).\n\nIf you have any other questions regarding our privacy practices, please contact us at compliance@mozilla.com","leaveStudyConsent":"This study cannot be re-joined.","dataCollectionDetails":["How often you visit, share on social media, or see a link to news and health websites.","The amount of time you spend looking at these websites.","The sources that lead you to visit these websites.","Whether you share links to these websites, publicly or to restricted audiences, on social media.","Survey responses, such as your demographics."],"id":"5df0854c-1f8e-4a25-9df3-4f6c40dfbc7c","last_modified":1607042143590}]}C>i_fԳfԳGFfԼa,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/pioneer-study-addons-v1/changeset?_expected=1607042143590strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAARub25lAAAADlJTQS1QU1MtU0hBMjU2AANmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp1mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAQEAAAAAUGFub246YmVDb25zZXJ2YXRpdmU6dGxzZmxhZ3MweDAwMDAwMDAwOmZpcmVmb3guc2V0dGluZ3Muc2VydmljZXMubW96aWxsYS5jb206NDQzAAA=request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 11606 -access-control-allow-origin: * -access-control-expose-headers: Backoff, Retry-After, Content-Type, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:12:51 GMT -age: 1345 -last-modified: Fri, 30 Aug 2024 00:00:23 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 11606 -access-control-allow-origin: * -access-control-expose-headers: Backoff, Retry-After, Content-Type, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:12:51 GMT -age: 1345 -last-modified: Fri, 30 Aug 2024 00:00:23 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1-V \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A739C4D939A4C2C8C9E95CF04CE4D92DC0FB3834 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A739C4D939A4C2C8C9E95CF04CE4D92DC0FB3834 deleted file mode 100644 index e279abc..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A739C4D939A4C2C8C9E95CF04CE4D92DC0FB3834 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A8743ACDA513FF27A72604EA39BAAE662138F0B9 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A8743ACDA513FF27A72604EA39BAAE662138F0B9 deleted file mode 100644 index 19ee207..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A8743ACDA513FF27A72604EA39BAAE662138F0B9 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A8C8E4E08CAD654CEB6E057DAFC7CCC1975461EE b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A8C8E4E08CAD654CEB6E057DAFC7CCC1975461EE deleted file mode 100644 index f10c9a0..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/A8C8E4E08CAD654CEB6E057DAFC7CCC1975461EE and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AA70DA0EA77AF599D16F76E79A98272BA138060D b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AA70DA0EA77AF599D16F76E79A98272BA138060D deleted file mode 100644 index 3953cc0..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AA70DA0EA77AF599D16F76E79A98272BA138060D and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AC4388372EAC9A2259E1D3C023707BF0229591EA b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AC4388372EAC9A2259E1D3C023707BF0229591EA deleted file mode 100644 index ad8dfa4..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AC4388372EAC9A2259E1D3C023707BF0229591EA and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AD66DCE798A676DD10E21FF44227D9DA28893051 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AD66DCE798A676DD10E21FF44227D9DA28893051 deleted file mode 100644 index 8506505..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/AD66DCE798A676DD10E21FF44227D9DA28893051 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B20ED0B10BF8BA4F1302CBBE80645C5F083E18B6 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B20ED0B10BF8BA4F1302CBBE80645C5F083E18B6 deleted file mode 100644 index 3709fbd..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B20ED0B10BF8BA4F1302CBBE80645C5F083E18B6 +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"sort":"-last_modified","schema":{"type":"object","required":["name","version","fromLang","toLang","fileType"],"properties":{"id":{"type":"string"},"name":{"type":"string","title":"Name","description":"The name of the language model"},"toLang":{"type":"string","title":"To Language","description":"The BCP 47 language tag that will be translated to"},"version":{"type":"string","title":"Version","description":"The version of the model"},"fileType":{"enum":["model","lex","vocab","qualityModel","srcvocab","trgvocab"]},"fromLang":{"type":"string","title":"From Language","description":"The BCP 47 language tag that will be translated from"},"filter_expression":{"type":"string","title":"Filter Expression","description":"A JEXL to filter records"}}},"signature":{"ref":"3l2dt98naogxc11h1ps64zyg0c","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"hOLOHLI233KS9FEP_mKt5_t6_oeUiSpPH9DonQAL33z1f0g9qMxI08Iqm6tQLiF5CVf7TKViAovboV8oazi12omRk5gIfN8Y_2S1nqtN_Jm_TD6Wal9Du44z20HhNSu7","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"attachment":{"enabled":true,"required":true},"displayFields":["name","fromLang","toLang","fileType","version","filter_expression"],"id":"translations-models","last_modified":1725062404456,"bucket":"main"},"timestamp":1724444594146,"changes":[{"name":"model.entr.intgemm.alphas.bin","schema":1724444144280,"toLang":"tr","version":"1.0","fileType":"model","fromLang":"en","attachment":{"hash":"ea3cd4ee09de190df265c78d84260e277a9a8a3ddff05eb55d72afe7fc0fdbf4","size":17141051,"filename":"model.entr.intgemm.alphas.bin","location":"main-workspace/translations-models/f48948a5-06b1-465b-a0dc-ea1a1a52323d.bin","mimetype":"application/octet-stream"},"filter_expression":"","id":"93457478-c2f7-4ace-ae2d-f0b078b96d40","last_modified":1724444594146},{"name":"lex.50.50.entr.s2t.bin","schema":1724444142065,"toLang":"tr","version":"1.0","fileType":"lex","fromLang":"en","attachment":{"hash":"3aba0be842bd4c192659c781e6fdce8eb9b2b1fff29a40d22f75da369d59f46f","size":3261300,"filename":"lex.50.50.entr.s2t.bin","location":"main-workspace/translations-models/ed96fb89-d560-415b-9391-e5dc8edd13fa.bin","mimetype":"application/octet-stream"},"filter_expression":"","id":"d1d92bcb-5391-4344-9e25-2eb72de67d7b","last_modified":1724444594143},{"name":"model.enfi.intgemm.alphas.bin","schema":1724444134381,"toLang":"fi","version":"1.0","fileType":"model","fromLang":"en","attachment":{"hash":"3d8250c4c2e57efcf9a8e42fafdbd83ea98cea36fe8e4dafcf99f4d4bfc1dacf","size":17141051,"filename":"model.enfi.intgemm.alphas.bin","location":"main-workspace/translations-models/12b68b63-806f-489a-bacc-7028645b31a9.bin","mimetype":"application/octet-stream"},"filter_expression":"","id":"fef5a484-da95-4080-8276-7c3228bd89e7","last_modified":1724444594140},{"name":"lex.50.50.enfi.s2t.bin","schema":1724444132166,"toLang":"fi","version":"1.0","fileType":"lex","fromLang":"en","attachment":{"hash":"4c2b197d3225140a6496f400013d83af98c87f0f984185c907e0ac468e37b3a5","size":3384772,"filename":"lex.50.50.enfi.s2t.bin","location":"main-workspace/translations-models/27b1577f-065e-443d-9e15-f4889495a993.bin","mimetype":"application/octet-stream"},"filter_expression":"","id":"2dd6136f-663a-4ac1-a20d-0cf24a6fd683","last_modified":1724444594137},{"name":"vocab.enfi.spm","schema":1724444130243,"toLang":"fi","version":"1.0","fileType":"vocab","fromLang":"en","attachment":{"hash":"57d9f92c28b75f9595df5ce3df68e0216be16522c7a883b9e5ea42c0166f9221","size":796433,"filename":"vocab.enfi.spm","location":"main-workspace/translations-models/651e17cb-89dd-4b86-abf5-e3dd12925c2c.spm","mimetype":"text/plain"},"filter_expression":"","id":"8b3d2067-afdd-4871-a0e7-76a0d444d9b2","last_modified":1724444594133},{"name":"vocab.entr.spm","schema":1724444140227,"toLang":"tr","version":"1.0","fileType":"vocab","fromLang":"en","attachment":{"hash":"a220363d60391f7ce3df8ec9785424dbc00c24d5786d1a4308cf8ca3ed3385c2","size":798793,"filename":"vocab.entr.spm","location":"main-workspace/translations-models/462a6fc1-0f2d-4b61-ae3f-147bd9f9d588.spm","mimetype":"text/plain"},"filter_expression":"","id":"c0f83a9d-8522-4e7f-a610-3b8d7799dec2","last_modified":1724444594130},{"name":"model.entr.intgemm.alphas.bin","schema":1724436364207,"toLang":"tr","version":"1.0a1","fileType":"model","fromLang":"en","attachment":{"hash":"ea3cd4ee09de190df265c78d84260e277a9a8a3ddff05eb55d72afe7fc0fdbf4","size":17141051,"filename":"model.entr.intgemm.alphas.bin","location":"main-workspace/translations-models/d80b5d97-2ca5-453d-93c2-a2f1c9eb4df8.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"73b5c3a4-3aac-4e77-82ee-f848464b214d","last_modified":1724436918171},{"name":"lex.50.50.enuk.s2t.bin","schema":1724436373673,"toLang":"uk","version":"1.0a2","fileType":"lex","fromLang":"en","attachment":{"hash":"8f63978540e82a2cae89101cab9a35e7ea0abd3de1fe234b2f769ed378b894f9","size":2822044,"filename":"lex.50.50.enuk.s2t.bin","location":"main-workspace/translations-models/697cb1b3-b441-442c-b4f1-b792587f0c1a.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"b8ec3eb4-0a44-4567-8b3a-50417d39dcbb","last_modified":1724436918168},{"name":"vocab.enfi.spm","schema":1724436340431,"toLang":"fi","version":"1.0a1","fileType":"vocab","fromLang":"en","attachment":{"hash":"57d9f92c28b75f9595df5ce3df68e0216be16522c7a883b9e5ea42c0166f9221","size":796433,"filename":"vocab.enfi.spm","location":"main-workspace/translations-models/e6b246c4-24ee-4fe7-8dab-063dec1fc91d.spm","mimetype":"text/plain"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"38a89555-8d5d-4baa-a8b1-5f03d50a9e0f","last_modified":1724436918164},{"name":"vocab.enuk.spm","schema":1724436377067,"toLang":"uk","version":"1.0a2","fileType":"vocab","fromLang":"en","attachment":{"hash":"330fe40da410c7a41fcbf6aa98a2e619600b235b278c186c0f04c8ad1c2fbb7d","size":885736,"filename":"vocab.enuk.spm","location":"main-workspace/translations-models/c5f06e9d-8215-44af-817c-fe2d94b402ae.spm","mimetype":"text/plain"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"be638242-6ea4-4e8a-9f55-765833f42648","last_modified":1724436918161},{"name":"lex.50.50.enfi.s2t.bin","schema":1724436342222,"toLang":"fi","version":"1.0a1","fileType":"lex","fromLang":"en","attachment":{"hash":"4c2b197d3225140a6496f400013d83af98c87f0f984185c907e0ac468e37b3a5","size":3384772,"filename":"lex.50.50.enfi.s2t.bin","location":"main-workspace/translations-models/be48533f-2157-4c94-8be2-9109cf4a9d28.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"40bf483e-5736-42fc-a528-849697889878","last_modified":1724436918157},{"name":"vocab.entr.spm","schema":1724436359755,"toLang":"tr","version":"1.0a1","fileType":"vocab","fromLang":"en","attachment":{"hash":"a220363d60391f7ce3df8ec9785424dbc00c24d5786d1a4308cf8ca3ed3385c2","size":798793,"filename":"vocab.entr.spm","location":"main-workspace/translations-models/e8b99ea8-ff9f-41a5-a008-4e132ed339ab.spm","mimetype":"text/plain"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"2e38b571-13c6-48a9-9abe-b5d3b18bd409","last_modified":1724436918154},{"name":"vocab.ensk.spm","schema":1724436349731,"toLang":"sk","version":"1.0a1","fileType":"vocab","fromLang":"en","attachment":{"hash":"cfa6a9e601d74686b117f041eb1ad9de94c34219110b67367d570a9e27026a46","size":808888,"filename":"vocab.ensk.spm","location":"main-workspace/translations-models/16664cd5-a375-4570-abfe-a7e18e1a343a.spm","mimetype":"text/plain"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"8c815408-75fa-4358-b7ad-c81881fa670a","last_modified":1724436918150},{"name":"lex.50.50.entr.s2t.bin","schema":1724436361649,"toLang":"tr","version":"1.0a1","fileType":"lex","fromLang":"en","attachment":{"hash":"3aba0be842bd4c192659c781e6fdce8eb9b2b1fff29a40d22f75da369d59f46f","size":3261300,"filename":"lex.50.50.entr.s2t.bin","location":"main-workspace/translations-models/ee24d581-90ff-467b-85bb-cf57b25cf5b7.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"68714f3f-56f6-4fa5-aa5c-dff986ab09bd","last_modified":1724436918147},{"name":"lex.50.50.ensk.s2t.bin","schema":1724436355635,"toLang":"sk","version":"1.0a1","fileType":"lex","fromLang":"en","attachment":{"hash":"5cae8b042d1a7eb19cfcebd3bb45fafd2faf2a963a7693775079afdbf0393c9c","size":3284256,"filename":"lex.50.50.ensk.s2t.bin","location":"main-workspace/translations-models/4f01b825-b35a-4ec3-ac44-f7c4a6e2978a.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"1ae03423-f79a-47dd-9669-52da104d7b45","last_modified":1724436918143},{"name":"model.ensk.intgemm.alphas.bin","schema":1724436351539,"toLang":"sk","version":"1.0a1","fileType":"model","fromLang":"en","attachment":{"hash":"6806173ad92e25de54bd3eed91248cddeff622dd9e8133dc956d39204c296395","size":17141051,"filename":"model.ensk.intgemm.alphas.bin","location":"main-workspace/translations-models/14d1bc01-c5fc-4479-a8a6-1c36199059d5.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"4064e0d3-b040-4a5a-aa67-7c04c24876de","last_modified":1724436918139},{"name":"model.enfi.intgemm.alphas.bin","schema":1724436344432,"toLang":"fi","version":"1.0a1","fileType":"model","fromLang":"en","attachment":{"hash":"3d8250c4c2e57efcf9a8e42fafdbd83ea98cea36fe8e4dafcf99f4d4bfc1dacf","size":17141051,"filename":"model.enfi.intgemm.alphas.bin","location":"main-workspace/translations-models/25d5459b-f046-4767-abeb-547ab604a591.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"9bd155e0-8c6a-4082-bb7b-9f5fa92e85c8","last_modified":1724436918136},{"name":"model.enuk.intgemm.alphas.bin","schema":1724436369276,"toLang":"uk","version":"1.0a2","fileType":"model","fromLang":"en","attachment":{"hash":"66d2bc90cf1079743afb8c71e95182007c884c8f8a511685c1d47edda4a3e8af","size":17141051,"filename":"model.enuk.intgemm.alphas.bin","location":"main-workspace/translations-models/5352b083-db81-4fc7-8066-cf4b3fe8678a.bin","mimetype":"application/octet-stream"},"filter_expression":"env.channel == 'default' || env.channel == 'nightly'","id":"e769f837-3a55-44b7-b76b-c48b9b570971","last_modified":1724436918133},{"deleted":true,"id":"5c6a33ca-f1b3-495e-bc3c-b6242a0385db","last_modified":1724436918129},{"deleted":true,"id":"d2b25f4a-e470-4c57-bdb3-2d94cf1d9c1e","last_modified":1724436918127},{"deleted":true,"id":"87237c1a-dd1b-47f9-9bb1-2b860894fb92","last_modified":1724436918124},{"deleted":true,"id":"8e0aec0a-ed4d-4c0c-bbbd-a1065b883a07","last_modified":1724436918122}]};ipfԳfԳGFfԶ-a,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/translations-models/changeset?_expected=1724444594146&_since=%221723072994030%22strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAARub25lAAAADlJTQS1QU1MtU0hBMjU2AANmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp1mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAUJMIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBaFw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFLYlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KRmudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIozwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfdu6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p91n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZQjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyzrsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2EiRmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLxKPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA55mCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVvMIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZLubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCcAAAABAAAAAmgyAQEAAAAAUGFub246YmVDb25zZXJ2YXRpdmU6dGxzZmxhZ3MweDAwMDAwMDAwOmZpcmVmb3guc2V0dGluZ3Muc2VydmljZXMubW96aWxsYS5jb206NDQzAAA=request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 11236 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:45:01 GMT -age: 3015 -last-modified: Sat, 31 Aug 2024 00:00:04 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 11236 -access-control-allow-origin: * -access-control-expose-headers: Content-Type, Retry-After, Backoff, Alert, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 17:45:01 GMT -age: 3015 -last-modified: Sat, 31 Aug 2024 00:00:04 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1+ \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B35CB68D624583083B6960EAE29972642993F3AD b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B35CB68D624583083B6960EAE29972642993F3AD deleted file mode 100644 index ecf7387..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B35CB68D624583083B6960EAE29972642993F3AD +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"flags":["startup"],"signature":{"ref":"3sf62f6a9tz3f2r5jxwj9xlew0","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"AuHUARsMFyTqXlk68i5Ooq-_fIaCF598-VaEwVZVihWTWnnTdt-PKR91EZPRYJRJ55N7CIqzR6keHgygSO_4rImPIuZlZD9n-BH-kvbY7wXFTRDZQCsVmqzZe7V5BxGF","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"displayFields":["id","recipe.name"],"id":"normandy-recipes-capabilities","last_modified":1724976063841,"bucket":"main"},"timestamp":1724976063655,"changes":[{"recipe":{"id":1405,"name":"Normandy Diagnostic v129 Release","action":"multi-preference-experiment","arguments":{"slug":"bug-1914439-pref-normandy-diagnostic-v129-release-120-120","branches":[{"slug":"control-string","ratio":100,"preferences":{"app.normandy.test-prefs.string":{"preferenceType":"string","preferenceValue":"normandy-diagnostic-129-release","preferenceBranchType":"user"}}}],"userFacingName":"Normandy Diagnostic v129","isEnrollmentPaused":false,"experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/normandy-diagnostic-v129/","userFacingDescription":"Diagnostic verification of pref setting"},"revision_id":"4287","capabilities":["action.multi-preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"129.!\")>=0)&&(env.version|versionCompare(\"129.*\")<0)) && ([\"firefox-desktop-prefFlips-release-no_targeting-rollout-1\",normandy.userId]|bucketSample(50,50,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"aK5YG-R9s-p5Qg70phOp6Sk13_8thJVt1fBzAgCUO0RyNLzKj9zCM1r2bZMt0lC1iiRQMjvKfYsqQk4GYJPc7SgT3_c-ShQx_1Tv9KC_49GwsiU5wV7u69fpOaEN-s6t","timestamp":"2024-08-30T00:01:03.335218Z","public_key":""},"id":"1405","last_modified":1724976063655},{"recipe":{"id":875,"name":"DoH US Engagement Study V2 - Add-on helper","action":"branched-addon-study","arguments":{"slug":"pref-doh-us-engagement-study-v2-helper-1590831","branches":[{"slug":"helper","ratio":1,"extensionApiId":105}],"userFacingName":"DNS over HTTPS US Rollout","isEnrollmentPaused":false,"userFacingDescription":"Helps maintain the integrity of the DNS over HTTPS Rollout"},"revision_id":"2879","capabilities":["action.branched-addon-study","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.locale in [\"en-GB\",\"en-CA\",\"en-US\"]) && (normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"70.!\")>=0)&&(env.version|versionCompare(\"71.*\")<0)) && ([\"doh-rollout\",normandy.userId]|bucketSample(0,200,10000)) && ((\n \"browser.search.region\"|preferenceValue == \"US\"\n && normandy.os.isWindows\n && \"devtools.policy.disabled\"|preferenceValue != true\n && \"datareporting.policy.dataSubmissionEnabled\"|preferenceValue != false\n && \"identity.fxaccounts.enabled\"|preferenceValue != false\n)\n|| normandy.addons[\"doh-rollout@mozilla.org\"].isActive\n|| \"doh-rollout.enabled\"|preferenceValue)","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"bHLuAo8Gdg_yeJxBeuzHeg3BiordDtY-l0w_M9_YJgP_1JUKERaU8en5Itupxv38-KIhgj-x3drpp8KA7wNeE3sVbf-JoOTm8_bTUPf7WpeNDePdzthKusmd3PMw8q3m","timestamp":"2024-08-27T00:01:09.996530Z","public_key":""},"id":"875","last_modified":1724716872144},{"recipe":{"id":1225,"name":"Heartbeat: Daily Viewpoint Survey (de)","action":"show-heartbeat","arguments":{"message":"Hilf uns mit Deinem Feedback Firefox noch besser zu machen.","surveyId":"hb-dvs-de","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023DE","thanksMessage":"Dankesch\u00F6n","learnMoreMessage":"Mehr dar\u00FCber Erfahren","includeTelemetryUUID":true,"engagementButtonLabel":"Zur Umfrage"},"revision_id":"4032","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"de\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"VFI1WzSueorL2Fwc8f_yOQvV4T6uSrvEwu82srbiGFYZSzDn7BvBADhvvirvGPr08cSC7g1DMyDDy-hh4VMfMq9H0Pe6US2kVNdrPg5l2TIf0oIaqJZTHIfjLBYINuqc","timestamp":"2024-08-27T00:01:06.139866Z","public_key":""},"id":"1225","last_modified":1724716872140},{"recipe":{"id":917,"name":"DoH US Staged Rollout to All US Desktop Users","action":"preference-rollout","arguments":{"slug":"rollout-doh-us-staged-rollout-to-all-us-desktop-users-release-73-77-bug-1586331","preferences":[{"value":true,"preferenceName":"doh-rollout.enabled"},{"value":"1896163212345","preferenceName":"doh-rollout.profileCreationThreshold"}]},"revision_id":"3589","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.country in [\"US\"]) && (normandy.channel in [\"release\"]) && ([\"doh-rollout\",normandy.userId]|bucketSample(0,9900,10000)) && ((env.version|versionCompare(\"76.!\")>=0)&&(env.version|versionCompare(\"91.*\")<0))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"bSXMBw-pgfEO-0eqBlXVmlfgB8Mxb0bnYVCaxNfB1HAPBVlCHEumzmoif5ckbR4tr4d2GWSB_WOdm70KqVzksIuRy_3cbpRj3rgOYuVBmlXIDT444MbWb9HDnNsxaLb8","timestamp":"2024-08-27T00:01:08.647409Z","public_key":""},"id":"917","last_modified":1724716872137},{"recipe":{"id":1316,"name":"Disable background task on macOS","action":"multi-preference-experiment","arguments":{"slug":"bug-1828180-pref-disable-background-task-on-macos-release-112-112","branches":[{"slug":"disabled","ratio":100,"preferences":{"dom.quotaManager.backgroundTask.enabled":{"preferenceType":"boolean","preferenceValue":false,"preferenceBranchType":"default"}}}],"userFacingName":"Disable background task on macOS","isEnrollmentPaused":false,"experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/disable-background-task-on-macos/","userFacingDescription":"This prevents the shutdown cleanup process from triggering background task."},"revision_id":"4014","capabilities":["action.multi-preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"112.!\")>=0)&&(env.version|versionCompare(\"112.*\")<0)) && ([\"disable-background-task-on-macos\",normandy.userId]|bucketSample(0,10000,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"ODkuMSXG-mNujDNwMRmIYLo9085N-5zOmGCY_W_GLy1nM-S9hSVp6wVkVg13WXFMjRQDzAQMEHhJBw9C3Hx6V89xEomfxun45F9RuKrREIZHjYfO1ULAn_klb2ee54AN","timestamp":"2024-08-27T00:01:06.677595Z","public_key":""},"id":"1316","last_modified":1724716872134},{"recipe":{"id":1227,"name":"Heartbeat: Daily Viewpoint Survey (ru)","action":"show-heartbeat","arguments":{"message":"\u041F\u043E\u043C\u043E\u0433\u0438\u0442\u0435 \u0441\u0434\u0435\u043B\u0430\u0442\u044C Firefox \u043B\u0443\u0447\u0448\u0435, \u043F\u0440\u0438\u043D\u044F\u0432 \u0443\u0447\u0430\u0441\u0442\u0438\u0435 \u0432 \u044D\u0442\u043E\u043C \u043A\u043E\u0440\u043E\u0442\u043A\u043E\u043C \u043E\u043F\u0440\u043E\u0441\u0435","surveyId":"hb-dvs-ru","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023RU","thanksMessage":"\u0421\u043F\u0430\u0441\u0438\u0431\u043E","learnMoreMessage":"\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435","includeTelemetryUUID":true,"engagementButtonLabel":"\u041F\u0440\u043E\u0439\u0442\u0438 \u043E\u043F\u0440\u043E\u0441"},"revision_id":"4040","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"ru\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"CCiZ1DTy_uncC2fbyC8eP7gJS0Rnbhpff0_e1OkKWHVledEJ5WUmSv1xtl_5JFzKn-Osh59ywZaseBrxBt5GpFcSb_Vsh0urhJAgeoTXpsU03RwapcCukALnFJ0mO8H7","timestamp":"2024-08-27T00:01:04.288540Z","public_key":""},"id":"1227","last_modified":1724716872130},{"recipe":{"id":786,"name":"Preference Rollout: [Trailhead] ETP to new users [Bug 1547192]","action":"preference-rollout","arguments":{"slug":"rollout-etp-new-users-trailhead-1547192","preferences":[{"value":4,"preferenceName":"network.cookie.cookieBehavior"}]},"revision_id":"2698","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"67.!\")>=0)&&(env.version|versionCompare(\"68.*\")<0)) && ([\"trailhead\",normandy.userId]|bucketSample(0,1000,1000)) && ((!normandy.telemetry.main || normandy.telemetry.main.environment.profile.creationDate > 18044))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"Cht5O0q05LATPVBUTLExBbk0khQogOrnaobkFV1HPn7vETjQySHF2FC1lLnZZcI76GR4R6FmSK9rhJ5dfLLW-8BpiobbuS0ZaeNKCRy8uneCd1hzv0czbJaElH-nn4a-","timestamp":"2024-08-27T00:01:10.225820Z","public_key":""},"id":"786","last_modified":1724716872127},{"recipe":{"id":721,"name":"Hotfix: Office 365 Legacy Keycode And Charcode","action":"preference-experiment","arguments":{"slug":"hotfix-office365-legacy-keycode-and-charcode","branches":[{"slug":"default","ratio":1,"value":"powerpoint.officeapps.live.com"}],"isHighVolume":true,"preferenceName":"dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode","preferenceType":"string","isEnrollmentPaused":false,"preferenceBranchType":"default","experimentDocumentUrl":"https://bugzilla.mozilla.org/show_bug.cgi?id=1536453"},"revision_id":"2336","capabilities":["action.preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"66.!\")>=0)&&(env.version|versionCompare(\"66.*\")<0)) && (normandy.version < \"66.0.2\")","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"VliNLF9fntXJHFPbsS60LwP_1mriWwDwBUkgWZ4zPR3euTIwpmF9H9vZ1Aof5BIXU7khAz7zqypfZEpaZ1F8GhdHY6na1Enc70RNn7l2C1sblJ5Zmcaikv00aghVh9n8","timestamp":"2024-08-27T00:01:10.661960Z","public_key":""},"id":"721","last_modified":1724716872124},{"recipe":{"id":259,"name":"Opt-out - Pioneer Enrollment Study (Bug 1382761)","action":"opt-out-study","arguments":{"name":"Pioneer Enrollment","addonUrl":"https://net-mozaws-prod-us-west-2-normandy.s3.amazonaws.com/extensions/pioneer-enrollment-study%40mozilla.org-2.0.4-signed.xpi","description":"Add-on to prompt about enrolling in pioneer: https://support.mozilla.org/en-US/kb/about-firefox-pioneer\n\nThis add-on will auto-uninstall if you decline to participate.","extensionApiId":31,"isEnrollmentPaused":true},"revision_id":"1652","capabilities":["action.opt-out-study"],"filter_expression":"(\n (\n (\n normandy.country == 'US'\n && [normandy.userId]|bucketSample((normandy.request_time // (7*24*60*60*1000)), 1, 500)\n ) || (\n normandy.locale in ['en-US', 'en-AU', 'en-CA', 'en-GB', 'en-NZ', 'en-ZA'] \n && [normandy.userId]|bucketSample((normandy.request_time // (7*24*60*60*1000)), 1, 100)\n )\n ) \n && !normandy.isFirstRun\n && normandy.version >= '57.0'\n && normandy.channel == 'release'\n)","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"yR0d7QpWw2VWHwpD1Zmw9PCs6blcCStgDwwt9W--6ZR6ZeZyeDgqn0iZfwIhU4ynFlwVmyRSf3fEeCwWz4zWt2Xnyj2_RaAKGK1srKOWzPuZTCAUb4YxUDZ6xinc1p4m","timestamp":"2024-08-27T00:01:11.744647Z","public_key":""},"id":"259","last_modified":1724716872120},{"recipe":{"id":839,"name":"pref-rollout-activity-stream-pkt-new-tab-release69-layout-1577008","action":"preference-rollout","arguments":{"slug":"pref-rollout-activity-stream-pkt-new-tab-release69-layout-1577008","preferences":[{"value":true,"preferenceName":"browser.newtabpage.activity-stream.discoverystream.enabled"}]},"revision_id":"2717","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.locale in [\"en-US\"]) && (normandy.country in [\"US\"]) && (normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"69.!\")>=0)&&(env.version|versionCompare(\"69.*\")<0)) && ([729,normandy.userId]|bucketSample(639,940,1000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"e0T_ZqeUEPDZJAOTmPYxLdBWnU99E5-onCOWNKuy0INsxRcWhy2OgM7qfLEXVaH5sYBj-M_x0CEKmnskzqUrE5NFhcBiyzQbJmHeYbG_h2I0C8X5QApepdTcEW5I3FGN","timestamp":"2024-08-27T00:01:09.726038Z","public_key":""},"id":"839","last_modified":1724716872117},{"recipe":{"id":1226,"name":"Heartbeat: Daily Viewpoint Survey (fr)","action":"show-heartbeat","arguments":{"message":"Aidez-nous \u00E0 am\u00E9liorer Firefox en remplissant ce court questionnaire","surveyId":"hb-dvs-fr","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023FR","thanksMessage":"Merci","learnMoreMessage":"Pour en savoir plus","includeTelemetryUUID":true,"engagementButtonLabel":"Remplir le questionnaire"},"revision_id":"4033","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"fr\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"f8XIoRZ99VK6QmZRvBWw8j2uHkeaCyR0z_Lo1a7PDQMrkxpItvx-SbxClHULUKaIov1UJhjqq2SPX2tM2kNxCt6oHI2-axi0OBFWmhMSpwbvMkftZiXi3Cfghoox1PVu","timestamp":"2024-08-27T00:01:05.904471Z","public_key":""},"id":"1226","last_modified":1724716872114},{"recipe":{"id":690,"name":"Pref Flip: Geolocation OS API for <=60, Mac [bug 1527748]","action":"preference-experiment","arguments":{"slug":"pref-rollout-geolocation-os-api-lte-60-mac-1527748","branches":[{"slug":"rollout","ratio":1,"value":true}],"isHighVolume":true,"preferenceName":"geo.provider.use_corelocation","preferenceType":"boolean","isEnrollmentPaused":false,"preferenceBranchType":"default","experimentDocumentUrl":"https://bugzilla.mozilla.org/show_bug.cgi?id=1527748"},"revision_id":"2208","capabilities":["action.preference-experiment","jexl.transform.stableSample"],"filter_expression":"([normandy.recipe.id,normandy.userId]|stableSample(1)) && (normandy.telemetry.main.environment.system.os.name == \"Darwin\"\n&& normandy.version < \"61.\")","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"fkX58XturA0AADc2sLbkTQxVhwOoo4vWiMXx7gIHznqymdybsGtdSFHQynTwio8F7leCLu8wgx2lZPlhMckdsdaKlkWLgNiG5Jsx815NnLe0oQkXqS-h374SPy_UK9YG","timestamp":"2024-08-27T00:01:11.091353Z","public_key":""},"id":"690","last_modified":1724716872111},{"recipe":{"id":1197,"name":"DoH steering in Canada Staggered starting for Nightly, Beta, and Release","action":"preference-rollout","arguments":{"slug":"bug-1750601-rollout-doh-steering-in-canada-staggered-starting-for-release-97-98","preferences":[{"value":true,"preferenceName":"doh-rollout.ca.provider-steering.enabled"},{"value":"[{ \"id\": \"shaw-ca\", \"canonicalName\": \"dns.shaw.ca\", \"uri\": \"https://dns.shaw.ca/dns-query\"}]","preferenceName":"doh-rollout.ca.provider-steering.provider-list"}]},"revision_id":"3795","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.preferenceValue","jexl.transform.versionCompare"],"filter_expression":"('doh-rollout.home-region'|preferenceValue == \"CA\") && ('services.settings.main.doh-config.last_check'|preferenceValue > 1633867200) && (((normandy.channel in [\"release\"]&&[\"doh-steering-canada\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"97.!\")>=0)&&(env.version|versionCompare(\"98.*\")<0))||(normandy.channel in [\"beta\"]&&[\"doh-steering-canada\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"97.!\")>=0)&&(env.version|versionCompare(\"99.05b\")<0))||(normandy.channel in [\"nightly\"]&&[\"doh-steering-canada\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"98.!\")>=0)&&(env.version|versionCompare(\"99.*\")<0))))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"UmerdxB5z6-dNe_ut30deaRFvidR3YjODq5EpWOi7_5ozrKZ4BlnAy2l1TObgOu_YrqRxYNGrDieQSsMwHUzy0RFsINik5LjeBMhZgt4DEqeQ1UD74HydVB5ITs4MMr9","timestamp":"2024-08-27T00:01:07.773379Z","public_key":""},"id":"1197","last_modified":1724716872108},{"recipe":{"id":1235,"name":"Heartbeat: Daily Viewpoint Survey (zh-TW)","action":"show-heartbeat","arguments":{"message":"\u8ACB\u586B\u5BEB\u9019\u4EFD\u7C21\u77ED\u554F\u5377\uFF0C\u5E6B\u52A9 Firefox \u8B8A\u5F97\u66F4\u597D","surveyId":"hb-dvs-zhtw","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023ZHTW","thanksMessage":"\u611F\u8B1D","learnMoreMessage":"\u4E86\u89E3\u66F4\u591A\u8CC7\u8A0A","includeTelemetryUUID":true,"engagementButtonLabel":"\u586B\u5BEB\u554F\u5377"},"revision_id":"4042","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"zh-TW\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"HSRWUrsQJ61WI7jnAfQuhD05Pzj1OcS7PBGiKsJGnCVWNnGffEzGT-VAQugz65bDi9DaYWA7PNOQFJ6k6R6sMsTSd_56BQhOUkiAh_s__WVFKzDbapDnSE_2OB5VaYMP","timestamp":"2024-08-27T00:01:03.852642Z","public_key":""},"id":"1235","last_modified":1724716872105},{"recipe":{"id":1228,"name":"Heartbeat: Daily Viewpoint Survey (es)","action":"show-heartbeat","arguments":{"message":"Ay\u00FAdenos a mejorar Firefox respondiendo esta breve encuesta","surveyId":"hb-dvs-es","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023ESLAT","thanksMessage":"Gracias","learnMoreMessage":"Descubre m\u00E1s","includeTelemetryUUID":true,"engagementButtonLabel":"Contestar la encuesta"},"revision_id":"4036","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"es\",\"es-MX\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"69ZAbweHKrOP6wSfk4il1z4jCDNfQjeuzK4v5vk4EMgKwpT9zPEcCuMHondwsnZ5nrUEHQrSaT-sfJuYiudiEzNexoMXnxbbp_hCa3yXiAF6eW6-VZBrM7YUHM9j5t1d","timestamp":"2024-08-27T00:01:05.212842Z","public_key":""},"id":"1228","last_modified":1724716872102},{"recipe":{"id":1231,"name":"Heartbeat: Daily Viewpoint Survey (pt-PT)","action":"show-heartbeat","arguments":{"message":"Ajude a melhorar o Firefox respondendo a este breve inqu\u00E9rito","surveyId":"hb-dvs-ptpt","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023PTPT","thanksMessage":"Obrigado","learnMoreMessage":"Saber mais","includeTelemetryUUID":true,"engagementButtonLabel":"Responder ao inqu\u00E9rito"},"revision_id":"4039","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"pt-PT\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"R5uAvVGby0FoP86DxcoG6UZ6_joaAPYzM52qkrDW8b2QOli7tZ3_JA8QvDYr-tNjr20tYL6qbVJeHemqp0e1RkOUL5QcRpeoRuw5nQQOKBOLABxHGwqNKaC9ZL855Axo","timestamp":"2024-08-27T00:01:04.543567Z","public_key":""},"id":"1231","last_modified":1724716872099},{"recipe":{"id":1233,"name":"Heartbeat: Daily Viewpoint Survey (ja)","action":"show-heartbeat","arguments":{"message":"\u7C21\u5358\u306A\u30A2\u30F3\u30B1\u30FC\u30C8\u306B\u7B54\u3048\u3066\u3001Firefox \u3092\u3088\u308A\u826F\u3044\u3082\u306E\u306B\u3059\u308B\u305F\u3081\u306B\u3054\u5354\u529B\u304F\u3060\u3055\u3044","surveyId":"hb-dvs-ja","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023JA","thanksMessage":"\u3088\u308D\u3057\u304F\u304A\u9858\u3044\u3044\u305F\u3057\u307E\u3059","learnMoreMessage":"\u3082\u3063\u3068\u8A73\u3057\u304F","includeTelemetryUUID":true,"engagementButtonLabel":"\u30A2\u30F3\u30B1\u30FC\u30C8\u306B\u7B54\u3048\u308B"},"revision_id":"4037","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"ja\",\"ja-JP-mac\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"ylYOg4_okVh8A6ubAt4PL5b34kBlVU6GKWljvh-xVblEjUzrhsdzQApnhP_0Go0TvWbdbPDzrKLSWojlJc2mCAcD47aE8pRa1s_h39YTbMyKiLZwLZG4BKQCrcSfnlB9","timestamp":"2024-08-27T00:01:04.987411Z","public_key":""},"id":"1233","last_modified":1724716872096},{"recipe":{"id":1229,"name":"Heartbeat: Daily Viewpoint Survey (es-ES)","action":"show-heartbeat","arguments":{"message":"Por favor, ay\u00FAdanos a mejorar Firefox contestando esta breve encuesta","surveyId":"hb-dvs-esES","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023ESES","thanksMessage":"Gracias","learnMoreMessage":"Descubre m\u00E1s","includeTelemetryUUID":true,"engagementButtonLabel":"Responder a la encuesta"},"revision_id":"4035","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"es-ES\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"Z5laHp-haHCTQf3M12QSirKiT8Sn_jWY0xJhqDiw6ZDFRCGTKwDPx1IcEF36yJ_X_hyMML6TvZzkwtTN97GV81bQk4iqwdksdkIpiiMoUMAkN2TdERkK_B9cJvRbjF83","timestamp":"2024-08-27T00:01:05.467031Z","public_key":""},"id":"1229","last_modified":1724716872093},{"recipe":{"id":1236,"name":"Heartbeat: Daily Viewpoint Survey (en)","action":"show-heartbeat","arguments":{"message":"Please help make Firefox better by taking this short survey","surveyId":"hb-dvs-en","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023EN","thanksMessage":"Thanks","learnMoreMessage":"Learn more","includeTelemetryUUID":true,"engagementButtonLabel":"Take survey"},"revision_id":"4031","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"en-AU\",\"en-GB\",\"en-CA\",\"en-NZ\",\"en-ZA\",\"en-US\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"CsqXjgSOR0z2-NnBYUfmMokPNWAEaiv6LtCgCKO8zfVFzpcMv7DbaxzwCSO_14zrcBbJSt7-pH7h7DxOJuBKTFYfHwFn5UpeAC2dhPn05p0GGlIfKryd03TLKyJHWt4y","timestamp":"2024-08-27T00:01:06.467251Z","public_key":""},"id":"1236","last_modified":1724716872090},{"recipe":{"id":689,"name":"Pref Flip: Geolocation OS API for <=60, Windows [bug 1527748]","action":"preference-experiment","arguments":{"slug":"pref-rollout-geolocation-os-api-lte-60-windows-1527748","branches":[{"slug":"rollout","ratio":1,"value":true}],"isHighVolume":true,"preferenceName":"geo.provider.ms-windows-location","preferenceType":"boolean","isEnrollmentPaused":false,"preferenceBranchType":"default","experimentDocumentUrl":"https://bugzilla.mozilla.org/show_bug.cgi?id=1527748"},"revision_id":"2207","capabilities":["action.preference-experiment","jexl.transform.stableSample"],"filter_expression":"([normandy.recipe.id,normandy.userId]|stableSample(1)) && (normandy.telemetry.main.environment.system.os.name == \"Windows_NT\"\n&& normandy.version < \"61.\")","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"GUol58t_wx3V3zvKKln7ftGSi38P56gmZ3Qc1ao2d1kGKpTWgzIvYHL1jtN9zl3HQGw6OnCDQIS_5foP0BgD-eWfDd5qeBI3mOwBx882dsGbIsGtytC4V0yYEZgCkD87","timestamp":"2024-08-27T00:01:11.312798Z","public_key":""},"id":"689","last_modified":1724716872087},{"recipe":{"id":691,"name":"Pref Flip: Geolocation OS API for <=60, Linux [bug 1527748]","action":"preference-experiment","arguments":{"slug":"pref-rollout-geolocation-os-api-lte-60-linux-1527748","branches":[{"slug":"rollout","ratio":1,"value":true}],"isHighVolume":true,"preferenceName":"geo.provider.use_gpsd","preferenceType":"boolean","isEnrollmentPaused":false,"preferenceBranchType":"default","experimentDocumentUrl":"https://bugzilla.mozilla.org/show_bug.cgi?id=1527748"},"revision_id":"2205","capabilities":["action.preference-experiment","jexl.transform.stableSample"],"filter_expression":"([normandy.recipe.id,normandy.userId]|stableSample(1)) && (normandy.telemetry.main.environment.system.os.name == \"Linux\"\n&& normandy.version < \"61.\")","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"MI7XlewCgxTWxwhP8jDne3HVtO8hzlOf52u8RZE-WjNmVbSX1IVgls3gFfe_42mF0VrLnWUGk_8w62SERNO1G4nt0_L99yFijSjeMb8stCKsG3N-ZxoqZ76ZI1Sxr-NN","timestamp":"2024-08-27T00:01:10.883616Z","public_key":""},"id":"691","last_modified":1724716872084},{"recipe":{"id":1209,"name":"Initial rollout of TCP","action":"preference-rollout","arguments":{"slug":"bug-1759000-rollout-initial-rollout-of-tcp-release-91-99","preferences":[{"value":5,"preferenceName":"network.cookie.cookieBehavior"}]},"revision_id":"3794","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.country in [\"RU\",\"UA\"]) && (((normandy.channel in [\"release\"]&&[\"tcp-east-eu-rollout\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"91.!\")>=0)&&(env.version|versionCompare(\"120.*\")<0))||(normandy.channel in [\"beta\"]&&[\"tcp-east-eu-rollout\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"99.!\")>=0)&&(env.version|versionCompare(\"120.*\")<0))))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"LKiWks4QkhMJ2ONj2SZxSoopAqdyC3YbJ5TaTDAU6tplHX3N5eKDdFpHQxZik6bPu2PnbZlgwZqutbX7j4TXsa-INfTA05_Ey2-_M9yCk2Kb7jVxZY_tFfDr8CIq3w_e","timestamp":"2024-08-27T00:01:07.993808Z","public_key":""},"id":"1209","last_modified":1724716872081},{"recipe":{"id":1161,"name":"DoH Canada Rollout - Nightly","action":"preference-rollout","arguments":{"slug":"bug-1719588-rollout-doh-canada-rollout-nightly-nightly-92-99","preferences":[{"value":true,"preferenceName":"doh-rollout.ca.enabled"}]},"revision_id":"3647","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.preferenceValue","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"nightly\"]) && ((env.version|versionCompare(\"92.!\")>=0)&&(env.version|versionCompare(\"99.*\")<0)) && ([normandy.userId,\"doh-can-rollout\"]|bucketSample(0,10000,10000)) && ('doh-rollout.home-region'|preferenceValue == \"CA\") && ('services.settings.main.doh-config.last_check'|preferenceValue > 1625820428)","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"gRkrbpYCHgTLvwx2lrmu0f8cZIW3NfKtqu8ayXx0dXwZMz-Z1Wmp28102-OnzMQPkuA9n_290zEClcYLM9Rp-h7TM5Spiyyvn7omZwwT8OW07FMF35Eu9YjcjSYMqjbA","timestamp":"2024-08-27T00:01:08.202635Z","public_key":""},"id":"1161","last_modified":1724716872078},{"recipe":{"id":1014,"name":"Blocklist v3 (Beta Rollback)","action":"preference-rollback","arguments":{"rolloutSlug":"bug-1630682-rollout-blocklist-v3-beta-rollout-beta-78-78"},"revision_id":"3221","capabilities":["action.preference-rollback","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"beta\"]) && ((env.version|versionCompare(\"78.!\")>=0)&&(env.version|versionCompare(\"78.*\")<0)) && ([normandy.userId,\"blocklist-v3-beta\"]|bucketSample(0,2500,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"3ZsAcKxKZj-UjkfMyNvORE6OKDa_vANpS7uYEnjfvRE8IYeUBIDD5nHPcU82sD7ZsFCC9SSjaZdyfNw1lVI5ovlerxM4U8LNac_JqT0u2ItIxkFR4E0xCN7bTrsuDsvi","timestamp":"2024-08-27T00:01:09.292436Z","public_key":""},"id":"1014","last_modified":1724716872075},{"recipe":{"id":1147,"name":"HTTP/3 Support","action":"preference-rollout","arguments":{"slug":"bug-1703186-rollout-http3-support-release-88-89","preferences":[{"value":true,"preferenceName":"network.http.http3.enabled"},{"value":false,"preferenceName":"network.http.http3.enable_0rtt"}]},"revision_id":"3629","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"88.!\")>=0)&&(env.version|versionCompare(\"89.*\")<0)) && ([\"http3-support-rollout\",normandy.userId]|bucketSample(0,10000,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"gdWxcFYti8zwIheHZvAb3c0BBTPik7I3ieE7GcBLco00BlVRUDEdea2_tc6UCrC_WNhTcT9Fk8fGGEpKAj4KfXWb-KIYQZvJIza_IjpuCNAq-MYHFwrL173qHC1YJyqS","timestamp":"2024-08-27T00:01:08.424346Z","public_key":""},"id":"1147","last_modified":1724716872072},{"recipe":{"id":661,"name":"Pref Rollback: CFR Addon Recommendation in 64 Release [Bug 1512212]","action":"preference-rollback","arguments":{"rolloutSlug":"pref-rollout-activity-stream-cfr-64-release-1512212"},"revision_id":"2105","capabilities":["action.preference-rollback","capabilities-v1","jexl.context.env.version","jexl.transform.stableSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"64.!\")>=0)&&(env.version|versionCompare(\"64.*\")<0)) && ([660,normandy.userId]|stableSample(0.01))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"2hDZryCH86nMKcChWeFdXAO8Sf7q6w-UM8U9MjG0BiCng5eg-q9g8jhj23HoTIBQPsFJEWDLuW-Ob014BtgyTNoMOaJN57OkSyVaGHtWPxrytMgVeaKQeJnoemoaRNVN","timestamp":"2024-08-27T00:01:11.525913Z","public_key":""},"id":"661","last_modified":1724716872069},{"recipe":{"id":767,"name":"Pref-Flip Study: Activity Stream CFR Pinned Tabs - Treatment [Bug 1536650]","action":"preference-experiment","arguments":{"slug":"activity-stream-cfr-pinned-tabs-treatment-1536650","branches":[{"slug":"test","ratio":1,"value":"{\"id\":\"cfr\",\"enabled\":true,\"type\":\"local\",\"cohort\":\"Test\",\"localProvider\":\"CFRMessageProvider\",\"frequency\":{\"custom\":[{\"period\":\"daily\",\"cap\":1}]},\"categories\":[\"cfrAddons\",\"cfrFeatures\"]}"}],"isHighVolume":false,"preferenceName":"browser.newtabpage.activity-stream.asrouter.providers.cfr","preferenceType":"string","isEnrollmentPaused":true,"preferenceBranchType":"user","experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/activity-stream-contextual-feature-recommender-pinned-tabs/"},"revision_id":"2566","capabilities":["action.preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.locale in [\"en-US\"]) && (normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"67.!\")>=0)&&(env.version|versionCompare(\"67.*\")<0)) && ([\"global-v1\",normandy.userId]|bucketSample(35,35,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"pRivYeeEzCIR4-to55P7Vp1vI2E-NmswOtSl_An15oToRTOvxBGTMsMEgl3jE9vUNPg52Ong1S4HAPr_n73pR0Zvoc5G-fBdIr7jfQ6bS_Be2Ljj5-rM5Mzswivyh1hO","timestamp":"2024-08-27T00:01:10.439925Z","public_key":""},"id":"767","last_modified":1724716872066},{"recipe":{"id":1266,"name":"Tweetdeck web compatibility 2 Rollback","action":"preference-rollback","arguments":{"rolloutSlug":"bug-1821419-rollout-tweetdeck-web-compatibility-2-release-110-110"},"revision_id":"3934","capabilities":["action.preference-rollback","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"([\"tweetdeck-web-compat\",normandy.userId]|bucketSample(0,10000,10000)) && ((((env.version|versionCompare(\"111.!\")>=0)&&(env.version|versionCompare(\"116.*\")<0)&&normandy.channel in [\"release\"])||((env.version|versionCompare(\"102.9\")>=0)&&(env.version|versionCompare(\"115.6\")<0)&&normandy.channel in [\"esr\"])))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"CPgG9myRioXgsXmQtSc0YycnXvnXP-Ls5Ufz_p8h76u3lllSHV-qD8uJI1E-r7-PrTv9J64_AP2HT5Oc9Ca712RBoyIswLKqKMQipAucPCJff196pAZ2zarjip87k3gJ","timestamp":"2024-08-27T00:01:06.887368Z","public_key":""},"id":"1266","last_modified":1724716872063},{"recipe":{"id":1208,"name":"DoH enablment to new countries - staggered start for Nightly, Beta, and Release V3","action":"preference-rollout","arguments":{"slug":"bug-1758988-rollout-doh-enablment-to-new-countries-staggered-st-release-98-100","preferences":[{"value":true,"preferenceName":"doh-rollout.ru.enabled"}]},"revision_id":"3822","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.context.normandy.appinfo","jexl.transform.bucketSample","jexl.transform.preferenceValue","jexl.transform.versionCompare"],"filter_expression":"(((normandy.channel in [\"release\"]&&[\"doh-russia\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"91.!\")>=0)&&(env.version|versionCompare(\"101.*\")<0))||(normandy.channel in [\"beta\"]&&[\"doh-russia\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"99.0b4\")>=0)&&(env.version|versionCompare(\"101.*\")<0))||(normandy.channel in [\"nightly\"]&&[\"doh-russia\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"100.!\")>=0)&&(env.version|versionCompare(\"101.*\")<0)&&(normandy.appinfo.appBuildID >= '20220315091352')))) && ('doh-rollout.home-region'|preferenceValue == \"RU\") && ('services.settings.main.doh-config.last_check'|preferenceValue > 1633867200)","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"ELw6p7JFsAJROXoeADX10oLtb38rjuuTRUs_yv283_8Tcv2gg4lKkFGHxVA4aXg6eedzq2WZJdGBzGw7xAVJZUeYSxxqKNa1gKYg-NnFPoa6ZMc14CrWDwQK3_s-1xuL","timestamp":"2024-08-27T00:01:07.335066Z","public_key":""},"id":"1208","last_modified":1724716872060},{"recipe":{"id":1207,"name":"Enabling DoH in new countries - staggered start for Nightly, Beta, Release V2","action":"preference-rollout","arguments":{"slug":"bug-1758818-rollout-enabling-doh-in-new-countries-staggered-sta-release-98-100","preferences":[{"value":true,"preferenceName":"doh-rollout.ua.enabled"}]},"revision_id":"3821","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.context.normandy.appinfo","jexl.transform.bucketSample","jexl.transform.preferenceValue","jexl.transform.versionCompare"],"filter_expression":"(((normandy.channel in [\"release\"]&&[\"doh-east-eu\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"91.!\")>=0)&&(env.version|versionCompare(\"101.*\")<0))||(normandy.channel in [\"beta\"]&&[\"doh-east-eu\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"99.0b4\")>=0)&&(env.version|versionCompare(\"101.*\")<0))||(normandy.channel in [\"nightly\"]&&[\"doh-east-eu\",normandy.userId]|bucketSample(0,10000,10000)&&(env.version|versionCompare(\"100.!\")>=0)&&(env.version|versionCompare(\"101.*\")<0)&&(normandy.appinfo.appBuildID >= '20220315091352')))) && ('doh-rollout.home-region'|preferenceValue == \"UA\") && ('services.settings.main.doh-config.last_check'|preferenceValue > 1633867200)","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"skj-nWLnCRn6nRkXx1NW9TyZfWeTmiWpLLGhk-vyNRSbrYNUdcOmPHfsLrNwmOJLcPANjnbZge_7w4g4v_eqK44RyGIUKbiKHEnsoSTPXMFHUP8ZfYj9rxWk2WQQJLdB","timestamp":"2024-08-27T00:01:07.556210Z","public_key":""},"id":"1207","last_modified":1724716872057},{"recipe":{"id":1246,"name":"Fix webcompat shim breakage","action":"preference-rollout","arguments":{"slug":"bug-1802286-rollout-fix-webcompat-shim-breakage-release-103-107","preferences":[{"value":true,"preferenceName":"extensions.webcompat.disabled_shims.AdvertisingDotCom"}]},"revision_id":"3888","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"103.!\")>=0)&&(env.version|versionCompare(\"107.*\")<0)) && ([\"webcompat-shim-rollout-release\",normandy.userId]|bucketSample(0,10000,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"elNXHlpD8hzvQ86N_9JnTkRvGSwmKRas257dVZws6v-Gvp-MCRlHGNKfJEL5UVNy9McUGdiymsgG8H-53pLpgiK3r2y8CQWSuhOC-Ue_4pZcVGDBPpxnnv0EGz3SaTcp","timestamp":"2024-08-27T00:01:07.094763Z","public_key":""},"id":"1246","last_modified":1724716872054},{"recipe":{"id":1343,"name":"Page load time patch beta","action":"multi-preference-experiment","arguments":{"slug":"bug-1848779-pref-page-load-time-patch-beta-beta-117-118","branches":[{"slug":"reset-to-false","ratio":100,"preferences":{"network.http.http3.retry_different_ip_family":{"preferenceType":"boolean","preferenceValue":false,"preferenceBranchType":"default"}}}],"userFacingName":"Page load time patch beta","isEnrollmentPaused":false,"experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/page-load-time-patch-beta/","userFacingDescription":"Reverting a preference that intermittently caused long page load times."},"revision_id":"4129","capabilities":["action.multi-preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"beta\"]) && ((env.version|versionCompare(\"117.!\")>=0)&&(env.version|versionCompare(\"118.*\")<0)) && ([\"page-load-time-patch-beta\",normandy.userId]|bucketSample(0,10000,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"9s2Igl97LLyMJnhhDrxu-SSS1njupj_MtPPJK4V0-r213Trt5FxdP25S04DhAFso52pAexaURMXd0pslGXgPfzQymA4_enKsHeMSO4xE-tarsiFAj17rR7EWnmgIHV12","timestamp":"2024-08-27T00:01:03.299481Z","public_key":""},"id":"1343","last_modified":1724716872051},{"recipe":{"id":1234,"name":"Heartbeat: Daily Viewpoint Survey (zh-CN)","action":"show-heartbeat","arguments":{"message":"\u8BF7\u586B\u5199\u8FD9\u4EFD\u7B80\u77ED\u95EE\u5377\uFF0C\u5E2E\u52A9\u6211\u4EEC\u5B8C\u5584 Firefox","surveyId":"hb-dvs-zhcn","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023ZHCN","thanksMessage":"\u8C22\u8C22\uFF01","learnMoreMessage":"\u8BE6\u7EC6\u4E86\u89E3","includeTelemetryUUID":true,"engagementButtonLabel":"\u586B\u5199\u95EE\u5377"},"revision_id":"4041","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"zh-CN\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"jYXZpKb90cG6Alih0XKLCI3bFlCcl8YBi53KYFTZa8emUYkq2xmFuybri9hRN450_rx56reeQVTyDPQfoRdiDatwNH-5aTrs4pzJA48neoHcFoTQ-DdGh0vDjgJHeC68","timestamp":"2024-08-27T00:01:04.067564Z","public_key":""},"id":"1234","last_modified":1724716872048},{"recipe":{"id":1318,"name":"Heartbeat: Daily Viewpoint Survey (it)","action":"show-heartbeat","arguments":{"message":"Migliora Firefox partecipando a questo breve sondaggio","surveyId":"hb-dvs-it","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023IT","thanksMessage":"Grazie","learnMoreMessage":"Scopri di pi\u00F9","includeTelemetryUUID":true,"engagementButtonLabel":"Participa al sondaggio"},"revision_id":"4043","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"it\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"bCoivVi7I2PpTFqZQQgDEfWtI5rmHoV5PqW8QbPzk9CC6aK6Wwrdys6EECVkzt5RARSTJ1R1hwDmjK_SyH3lJoa4frknBK9HcDGY6moz-FLVtvHzsMzcXAOXo9jHoQV1","timestamp":"2024-08-27T00:01:03.550041Z","public_key":""},"id":"1318","last_modified":1724716872045},{"recipe":{"id":1232,"name":"Heartbeat: Daily Viewpoint Survey (pt-BR)","action":"show-heartbeat","arguments":{"message":"Ajude a tornar o Firefox cada vez melhor participando desta breve pesquisa","surveyId":"hb-dvs-ptbr","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023PTBR","thanksMessage":"Obrigado","learnMoreMessage":"Saiba mais","includeTelemetryUUID":true,"engagementButtonLabel":"Participe da pesquisa"},"revision_id":"4034","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"pt-BR\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"KToftxPX7ASAuVKsg-U_kGId2qAv9PM5eobBDB7jbO3bdKwEfpYSv_U_rt4zr7tiQc9048M_MJ9tpR6VMTkTEpcSkLQMvvWFjG6CELuF3C30ThygMyp65w3yR1tOywHt","timestamp":"2024-08-27T00:01:05.678566Z","public_key":""},"id":"1232","last_modified":1724716872042},{"recipe":{"id":1230,"name":"Heartbeat: Daily Viewpoint Survey (pl)","action":"show-heartbeat","arguments":{"message":"Pom\u00F3\u017C nam ulepszy\u0107 Firefox, bior\u0105c udzia\u0142 w tej kr\u00F3tkiej ankiecie","surveyId":"hb-dvs-pl","learnMoreUrl":"https://support.mozilla.org/kb/rate-your-firefox-experience-heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/vp2023PL","thanksMessage":"Dzi\u0119kujemy","learnMoreMessage":"Dowiedz si\u0119 wi\u0119cej","includeTelemetryUUID":true,"engagementButtonLabel":"Wype\u0142nij ankiet\u0119"},"revision_id":"4038","capabilities":["action.show-heartbeat"],"filter_expression":"(normandy.channel in [\"release\"]) && (normandy.locale in [\"pl\"]) && (['rolling-viewpoint', normandy.userId]|bucketSample(19468 + normandy.request_time / (24*60*60*1000) + 7, 7, 7000))","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"XJzYfG85MLUGruDxXrdZb2oDikSxaFv_K75GV6aOCK5-qOFn0NaY61RmgYNouigvMylAF5oZGe1hOsEoyFqlbRn6QdEQOxZzHMDIkImz_8zfWCEZVGY8zxplXoqnGkin","timestamp":"2024-08-27T00:01:04.751558Z","public_key":""},"id":"1230","last_modified":1724716872039},{"recipe":{"id":1072,"name":"Rollback SameSite lax change (1006)","action":"preference-rollback","arguments":{"rolloutSlug":"bug-1622091-rollout-beta-rollout-of-samesite-lax-change-beta-79-81"},"revision_id":"3388","capabilities":["action.preference-rollback"],"filter_expression":"normandy.channel in [\"beta\"]","uses_only_baseline_capabilities":true},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"Nc79cavx4TPCY8IPtgN-8-O8w6OZc8EmouIvgBuY3Ykwk8okWLfKoZmi9KSR21L8Ayg6AghsvTzlU0HN4F4nkEt3ixuEBFB8fViMgAaNEehanu9Y-MJEnGepP2tCLN6v","timestamp":"2024-08-27T00:01:09.080645Z","public_key":""},"id":"1072","last_modified":1724716872035},{"recipe":{"id":918,"name":"Protection Report Mobile Callout","action":"preference-rollout","arguments":{"slug":"pref-protection-report-mobile-callout-release-75-80-bug-1619447","preferences":[{"value":true,"preferenceName":"browser.contentblocking.report.show_mobile_app"}]},"revision_id":"2962","capabilities":["action.preference-rollout","capabilities-v1","jexl.context.env.version","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"beta\",\"release\"]) && ((env.version|versionCompare(\"75.!\")>=0)&&(env.version|versionCompare(\"80.*\")<0)) && (normandy.recipe.arguments.slug in \"app.normandy.testing-for-recipe\"|preferenceValue)","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"UO_63Fo73Cwdb4sMx1oq_3ihZZp3Kgxir_yqsETMkq6oEwhEnM-tMw2Kmnba9iqIpnEWUTAB4eHHAICY1T4EJGVYvcCbV_-CwXxMt8WJHZ2NQeR31zP6R79lanaF_QvN","timestamp":"2024-08-27T00:01:09.507865Z","public_key":""},"id":"918","last_modified":1724716872032},{"recipe":{"id":1080,"name":"Rollback Tracker Cookie Purging (1025)","action":"preference-rollback","arguments":{"rolloutSlug":"bug-1653900-rollout-tracker-cookie-purging-release-79-82"},"revision_id":"3410","capabilities":["action.preference-rollback","capabilities-v1","jexl.context.env.version","jexl.transform.versionCompare"],"filter_expression":"(env.version|versionCompare(\"79.!\")>=0)&&(env.version|versionCompare(\"84.*\")<0)","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"nrKks4SGsRjXZ7hf6yYxlV3cHRr8j3gam3OsGob8LHMMZYwfHyAe55EO1RpncGYGEkgFA9rNBT7yCfF403qttbDpnQY-zLdBR6_swnL7O3UmSmVOJYqZ6wKr3DxEURgr","timestamp":"2024-08-27T00:01:08.867856Z","public_key":""},"id":"1080","last_modified":1724716872028},{"recipe":{"id":1345,"name":"Page load time patch","action":"multi-preference-experiment","arguments":{"slug":"bug-1848748-pref-page-load-time-patch-release-116-117","branches":[{"slug":"reset-to-false","ratio":100,"preferences":{"network.http.http3.retry_different_ip_family":{"preferenceType":"boolean","preferenceValue":false,"preferenceBranchType":"default"}}}],"userFacingName":"Page load time patch","isEnrollmentPaused":false,"experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/page-load-time-patch/","userFacingDescription":"Reverting a preference that intermittently caused long page load times."},"revision_id":"4130","capabilities":["action.multi-preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"116.!\")>=0)&&(env.version|versionCompare(\"117.*\")<0)) && ([\"page-load-time-patch-release\",normandy.userId]|bucketSample(0,10000,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"S4-LSHh1INYvwD3xGxUHFcqEvHtYjAImkrUkifpWFhl9dXznljtJKdpx4j6nY5VG27qI3kX0IcPlqcZe15cVzOuFfyLwBGAeQhpNe0_FF14fR1DmUO5RYFFH0WHCdRbC","timestamp":"2024-08-25T00:01:03.999046Z","public_key":""},"id":"1345","last_modified":1724544064306},{"recipe":{"id":1392,"name":"HTTP download configuration","action":"multi-preference-experiment","arguments":{"slug":"bug-1892259-pref-http-download-configuration-release-120-120","branches":[{"slug":"domblock_download_insecure","ratio":100,"preferences":{"dom.block_download_insecure":{"preferenceType":"boolean","preferenceValue":false,"preferenceBranchType":"default"}}}],"userFacingName":"HTTP download configuration","isEnrollmentPaused":false,"experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/http-download-configuration/","userFacingDescription":"The recently-shipped functionality more proactively blocking downloads from untrusted sources is not working as intended and causing impaired ability to download files in legitimate situations."},"revision_id":"4260","capabilities":["action.multi-preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"(normandy.channel in [\"release\"]) && ((env.version|versionCompare(\"125.0.1\")>=0)&&(env.version|versionCompare(\"125.0.2\")<0)) && ([\"http-download-config\",normandy.userId]|bucketSample(0,10000,10000))","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"cAzWw1CbtnAVSXFEJiPQLMIR4Y0gx35WWEgcaQmM8rzRdgK41UoHVpxyqovnK-Pf0urQjhyjpdGGyhOWCPOSr7SmUTotmboQz4b9HopMVjIKiVPscmPZIe52eX2JBa1Q","timestamp":"2024-08-25T00:01:03.510886Z","public_key":""},"id":"1392","last_modified":1724544064303},{"recipe":{"id":1346,"name":"Page load time patch ESR","action":"multi-preference-experiment","arguments":{"slug":"bug-1849168-pref-page-load-time-patch-esr-beta-115-116","branches":[{"slug":"reset-to-false","ratio":100,"preferences":{"network.http.http3.retry_different_ip_family":{"preferenceType":"boolean","preferenceValue":false,"preferenceBranchType":"default"}}}],"userFacingName":"Page load time patch ESR","isEnrollmentPaused":false,"experimentDocumentUrl":"https://experimenter.services.mozilla.com/experiments/page-load-time-patch-esr/","userFacingDescription":"Reverting a preference that intermittently caused long page load times."},"revision_id":"4132","capabilities":["action.multi-preference-experiment","capabilities-v1","jexl.context.env.version","jexl.transform.bucketSample","jexl.transform.versionCompare"],"filter_expression":"((env.version|versionCompare(\"115.!\")>=0)&&(env.version|versionCompare(\"116.*\")<0)) && ([\"page-load-time-patch-esr\",normandy.userId]|bucketSample(0,10000,10000)) && (normandy.channel in [\"esr\"])","uses_only_baseline_capabilities":false},"signature":{"x5u":"https://content-signature-2.cdn.mozilla.net/chains/202402/normandy.content-signature.mozilla.org-2024-10-13-11-24-52.chain?cachebust=2017-06-13-21-06","signature":"nICObrxirDTkfL9X4jXRbQeom0QoKqAM-qCVgAQjAXKIMtGd1ST1AU97GQ31brYhCPX85tbcf0vKo5ek_LYJjdC32TSMzEK6fixwULAX8HsYmKJC0eviL77g2bceFQ-b","timestamp":"2024-08-25T00:01:03.772876Z","public_key":""},"id":"1346","last_modified":1724544064299}]}TͲv4fԳfԳGFfԺ(a,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/normandy-recipes-capabilities/changeset?_expected=1724976063655strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAAZ4MjU1MTkAAAAOUlNBLVBTUy1TSEEyNTYAA2YKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABWMwggVfMIIER6ADAgECAhIEXXrStAKI8dBG//aIwU4LC7UwDQYJKoZIhvcNAQELBQAwMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDAeFw0yNDA4MTQyMDU4NTFaFw0yNDExMTIyMDU4NTBaMCYxJDAiBgNVBAMTG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPTa53DIjzaqZd5kMT4eo+HUtyGe25t7p0w99s7Ko3/FZv1CO6T9MQPwQrH4eBQVjCTYvYEsN1iV9udxaqFfokQblHsrrauygXHQn4UYRYfEQs372ZtfE+Rea48HEaVuBTCgKMdrMHQnLHzw16sX/jYeNRdUyHy9FM15EU/j8yaqw4x26zX4hA75FHyl7y1i81qKuLuKdyUCNzHell07rbcBwkEh+K8RlT7eAccJDCtpeBPaDbhB0nYqD0XAhAgSTd1FHkgZAGQLZIdZQH7OnSBtGFz6Ls5ucoXCRaxndYykg0EwtLl2aXrWx6GDo8ifQpEqJ44C68x2CAYaYOpo1q8CAwEAAaOCAngwggJ0MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUCkSuZlXfRX9PMZIKrdW+OmaMb6QwHwYDVR0jBBgwFoAUu7zDR6XkvKnGw6RyDBCNojXhyOgwVwYIKwYBBQUHAQEESzBJMCIGCCsGAQUFBzABhhZodHRwOi8vcjEwLm8ubGVuY3Iub3JnMCMGCCsGAQUFBzAChhdodHRwOi8vcjEwLmkubGVuY3Iub3JnLzB/BgNVHREEeDB2giVmaXJlZm94LnNldHRpbmdzLnNlcnZpY2VzLm1vemlsbGEuY29tgjBwcm9kLnJlbW90ZS1zZXR0aW5ncy5wcm9kLndlYnNlcnZpY2VzLm1vemdjcC5uZXSCG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzATBgNVHSAEDDAKMAgGBmeBDAECATCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AN/hVuuqBa+1nA+GcY2owDJOrlbZbqf1pWoB0cE7vlJcAAABkVLlQI4AAAQDAEcwRQIhAKqbN2T48PzhSjc67vDtTPRR3FQLCWBayH1G/1BDXXxeAiB/eN7mXE1c04QZA0EHd0plfxSBBuYmwqV5XE4JuLkyAgB2AEiw42vapkc0D+VqAvqdMOscUgHLVt0sgdm7v6s52IRzAAABkVLlQekAAAQDAEcwRQIgPUPh11LsJ2rF7UW1PAqm3RcKq9peuaLV63kZwjqwMuQCIQCZP+6m0nk+krD7txRzWL4YtdGaDkui61PQCGsFMuQbPDANBgkqhkiG9w0BAQsFAAOCAQEAznnoXVWiW7JA2ts94vIDBN2YeAbjNH9ITzb/LAyCMQFA+NTuF7U/XI9szFkgFxLr0M4cxs68oSPTW0HI0jfs0hfkx8pgB+QCfmAwNzV0nHmZo5g5I/4PSEr5GG6VkMEXMVQuH3Z9SWmXv1x0XYQzIBnvYvamrT+tuTrP/bd1A8z0LDHZ3p8W5TNjsxw/DwF1z6M39C6RrbDb1f016C4amVQribnmW9R24tKWlr4H6/tD4HkuTsdereu9WVKM7c1dta2mg8jLxBCdbWeJ5ckwtQQUUc4STU2To10XCjYjFvUl+b40xrzn+2bM4y1GxTXCYXFsWkXo68DsqN5SNPcenWYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABQkwggUFMIIC7aADAgECAhBLqFKT95ovonMGS6gEjXXQMA0GCSqGSIb3DQEBCwUAME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMB4XDTI0MDMxMzAwMDAwMFoXDTI3MDMxMjIzNTk1OVowMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM9X5ebEVBLttEf+ySdYdkZQKIwdPojfBZ3VtRgpvd21Wr/69s6jvq8AIUtiWlo8AS/FWAP2if+OEUPrwbXgFAeWj28f1+e6gTkJdWW3wq8YWzcmKOej9AcrbRr/q1i8la5A/+nLV8S1W394DRhhvBfnVMa7SZHNbhjRgIXupmU2vHTqvFBM6vwh8zgWk5S6sNNrOAbNFhJ6ylJ1yK12ssKcXZhFXG9he8Yt7jwTUoYB2VfmOBzfjbUfkpGa50oczEWoclXwsOajB+z9pxtmnj9Ii3GEcVjJOvrvXvJbRCs8dOePskfBB2rNmrcNlvcSgSZRVArsYfb39eLyisiVDY0CAwEAAaOB+DCB9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLu8w0el5LypxsOkcgwQjaI14cjoMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAEDDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5jci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQCSsedBN+t5nYHmzeIl4Tog6ZBElaOBXM/DXf29oHDVsZYoIgvS8ijPDOfU5kOMJCIdwUKS0Qmvn0v0yHBPIBaxWt0B9h/4H2FrFCewco1jru7izkvPN927o9TN561Qrb2/4+w+YjZwmTGn6I3d6mLiEq71nNQ9LAyq0Jx5vuo9XERuljFjWn3Wfk8koEsFf15v0tTqXzNLE9ZXtsreUbhdowmCdP3HeJ6zuawW2korlsO2i2KP+XQZop4D3ulvm7AP0qBa9oVcwgS3yNVOMsS/BF28Kfb3gY8MXTxTyUCQi/u2CGW5pCHVCeUThIQ3gs4QKPx2wgYlekZSTdpTcqQnP2JwrL5pSAD7Zw/bW6Ho1wMhLdfJ9plCOYND33cKEgjxJda6lBlUGIilxY7hGpmTeWvsHPkxQLDMMgDfn17ntJKrkIKRjQ3gHpW6WTsuS1/Ct0Y1UjkGwL2qrFLBIqBEl5n3DKAhp6FscUcWFwFowMqmJmUEfLOuyeeUVcJvmzwcqfkuxSAa8HbgvuwY1k/YJft2Eei/5iEP6OjMtban1bj3n0HPYSJGaoO2aJcufOpOldsj6y7IKyiEpGDpSfRELjv5ymJXAeJdkBb5yfx6I0iOptWBcvEo+l3O++1Oc4+ULtJBlJiZ26evcF/1vvsCIL9mJ2y0rfp1EgsrPs4DnmYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABW8wggVrMIIDU6ADAgECAhEAghDPsNJA41lEY+C7Y4KLADANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0xNTA2MDQxMTA0MzhaFw0zNTA2MDQxMTA0MzhaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAregkc/QUN/ObnitXKByHvty33ziQjG485legePd1wqL+9Wpu9gBPKNveaIZsRJO2sWP9FBJrvx/S6jGbIX7RMzy6SPXded+zuP8S8SGaS8GKhnFpSmZmbI9+PHC/rSkiBvPkwOaAruJLj7eZfpQDn9NHl3yZSCNT6DiuTwpvgy7RSVeMgHS22i/QOI17A3AhG3XyMDz6j67d2mOr6xZPwo4RS37PC+j/tXcu9LJ7SuBMEiUMcI0DKaDhUyTsE9nuGb8Qs0qMP4mjYVHerIcHlPRjcewu4m9bmIHhiVw0eWx27zuQYnnm26SaLybF0BDhDt7ZEI4W+7f3qPfH5QIHmI82CJXn4jeWDTZ1nvsOcrEdm7wD+UkF2IHdBbQq1kHprAF2lQoP2N/VvRIfNS8oF2zSmMGoCWR3bkc3us6sWV5onX9y1onFBkEpPlk+3Sb1JMkRp1qjTEAfRqGZtac6UW6GO559cqcSBXhZ7T5ReBULA4+N0C8Fsj57ShxLcwUS/Mbq4FATfEOTdLPKdOeOHwEI0DDUW3E2tAe6wTAwXEi3gjuYpn1giqKjKYLMur2DBBuigwNBodYF8RvCtvCofIY7RqhIKojcdpp2vx9qpT0Zj+s482TeyCsNCij/99viFULUItAnXeF5/hjncIitTubZizrG3SdRbv+8ZPUzQ08CAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHm0WeZ7tuXkAXOACIjIGlj26ZtuMA0GCSqGSIb3DQEBCwUAA4ICAQBVH1ipvLKoUNAMsdgaaSAnKQisYXVcim74guVpL9X2Vku5uHMQWdMhl37nTHH7stJgrTmoC+oXIVaF8VAOWevO4FnpuskV74adj4SA9uTpkZDcF5tiG0XwZpXSfG/C6jvvH8/L1q4n8amwyK79fX6a+iIE6//Zf+qRKyKxFw6P8oo0W1jY/AHJVLm4JsyKiDOJTC2EPILf7pZXBbosu/fEt8dOO4K+Mcgic3OS0cKApDk5EDMjgkw8n4ayVZgdvimGjCKbnuJrO1c6gnBN3AnHicsKB01s6F2Oye/Oq8e7tStORdZK0CbM5XLKCGqlleMVofek7cksX6X7/6woAi6+13u743F7kBbTB15GU3w3B0KM08SWnNWZtSrglRqASK5MOQfOzEekUpUrurj7rdIzU33lHU1t1aGxx0Jv5kAnNVyjKLcHjeeNM5DnI5/7UJx5bEbVtBWzlm5+mwyWOrhSLT/WW+H7CMKE/iSoo4narGrhGCqxqENhW9Mf3DuNdvIt6I113xczbD1T+3vLQV//3KLQYTjhlrisXYs313XVM8CZEa6dQcFydYS+AkFCX2ckSJTRmye+Bz+5uE+BdFHherftnSPivuDVKAQTPDEDnt16bI/GBxjGf95Hjj8ongQGz6VUNHe97Imb6RdD31vbX/6OHleizUCdfmIi2t4YJwAAAAEAAAACaDIAAQAAAABQYW5vbjpiZUNvbnNlcnZhdGl2ZTp0bHNmbGFnczB4MDAwMDAwMDA6ZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbTo0NDMBAA==request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 57097 -access-control-allow-origin: * -access-control-expose-headers: Alert, Content-Type, Retry-After, Backoff, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:02:00 GMT -age: 1966 -last-modified: Fri, 30 Aug 2024 00:01:03 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 57097 -access-control-allow-origin: * -access-control-expose-headers: Alert, Content-Type, Retry-After, Backoff, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:02:00 GMT -age: 1966 -last-modified: Fri, 30 Aug 2024 00:01:03 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1 \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B41683ABC57047A618A422CF225544FE4B5EE02C b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B41683ABC57047A618A422CF225544FE4B5EE02C deleted file mode 100644 index c56d15c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/B41683ABC57047A618A422CF225544FE4B5EE02C and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BB95D0607349D05725D5FE01D4FB300E319072AD b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BB95D0607349D05725D5FE01D4FB300E319072AD deleted file mode 100644 index a5ecd7e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BB95D0607349D05725D5FE01D4FB300E319072AD and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BCB28362F610E7C6F8262879603C72019735A1DC b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BCB28362F610E7C6F8262879603C72019735A1DC deleted file mode 100644 index 8bc8ea1..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BCB28362F610E7C6F8262879603C72019735A1DC and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BDF7447DC076611BFA49B67CE11AA3BE4DA6EDB4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BDF7447DC076611BFA49B67CE11AA3BE4DA6EDB4 deleted file mode 100644 index f1eecda..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BDF7447DC076611BFA49B67CE11AA3BE4DA6EDB4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BF77712BD13FE5A700D59BA5C3520558F7B68F07 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BF77712BD13FE5A700D59BA5C3520558F7B68F07 deleted file mode 100644 index dfd33ea..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/BF77712BD13FE5A700D59BA5C3520558F7B68F07 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C0024F6CECC698C352CE35A59E2C4B47116F5387 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C0024F6CECC698C352CE35A59E2C4B47116F5387 deleted file mode 100644 index f72e742..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C0024F6CECC698C352CE35A59E2C4B47116F5387 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C1E524C45A6EA2D80C2097F6D5E992174FEC1D41 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C1E524C45A6EA2D80C2097F6D5E992174FEC1D41 deleted file mode 100644 index e4dd7e1..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C1E524C45A6EA2D80C2097F6D5E992174FEC1D41 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C7323537924CDC72CDA8149C08020E045D92ACD1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C7323537924CDC72CDA8149C08020E045D92ACD1 deleted file mode 100644 index 72f6550..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C7323537924CDC72CDA8149C08020E045D92ACD1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C773E624E2E18DC193D380278A15C487608D0E4C b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C773E624E2E18DC193D380278A15C487608D0E4C deleted file mode 100644 index 4bdf00b..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C773E624E2E18DC193D380278A15C487608D0E4C and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C93C171CDFCF72234BEC6356BD3F9D8519295C85 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C93C171CDFCF72234BEC6356BD3F9D8519295C85 deleted file mode 100644 index 0564895..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/C93C171CDFCF72234BEC6356BD3F9D8519295C85 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CADBBF405AC345499780EFD34AD2411DFB74F618 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CADBBF405AC345499780EFD34AD2411DFB74F618 deleted file mode 100644 index 335442d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CADBBF405AC345499780EFD34AD2411DFB74F618 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CAF1108C8910DA561541E889C3DDC23C685C8024 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CAF1108C8910DA561541E889C3DDC23C685C8024 deleted file mode 100644 index bdea373..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CAF1108C8910DA561541E889C3DDC23C685C8024 +++ /dev/null @@ -1,32 +0,0 @@ -{"metadata":{"flags":["startup"],"signature":{"ref":"9y3jlothhz0ivjsusb1bm8oe","x5u":"https://content-signature-2.cdn.mozilla.net/chains/remote-settings.content-signature.mozilla.org-2024-10-08-14-46-07.chain","mode":"p384ecdsa","type":"contentsignaturepki","signature":"GUhIuat6NaazhuX2CJiniaaPmMiOY5i8MrttYgDVzHsyCD6f2ASlGpLljl1NsodixPzzL6AO0_Ch5j03u0AYawXAsnGVQOq5Bg3XO95W0Ft7sw-RIYPo04RX421iiMWT","signer_id":"remote-settings","public_key":"MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPwTWFWzvjFmz7X0Cx7+k8evTkkXD2hDRVlnjAGIt27bjMA/8+KLmmKEVieoTrmylQqzGrh0o8fQ38y6pUEkn0BChJz+ge/omB+9CKbFaYKY8KqS9WdHXldILKniCW4mD"},"id":"nimbus-desktop-experiments","last_modified":1725048161451,"bucket":"main"},"timestamp":1725048161144,"changes":[{"slug":"browser-maxdiff-survey-q3-2024-brazil","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["pt-BR"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"survey":{"message":"Ajude a tornar o Firefox cada vez melhor participando desta breve pesquisa.","surveyId":"browser-maxdiff-survey-q3-2024-brazil","learnMoreUrl":"https://wiki.mozilla.org/Firefox/Shield/Heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/feat-pt","thanksMessage":"Obrigado!","learnMoreMessage":"Saiba mais.","includeTelemetryUUID":true,"engagementButtonLabel":"Participe da pesquisa."}},"enabled":true,"featureId":"legacyHeartbeat"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-08-29","targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('127.!') >= 0) && (locale in ['pt-BR']) && (region in ['BR']) && (('legacy-nimbus-test-1-viewpoint' in enrollments) == false) && (('legacy-heartbeat-test-2-viewpoint-en' in enrollments) == false)","featureIds":["legacyHeartbeat"],"application":"firefox-desktop","bucketConfig":{"count":400,"start":2100,"total":10000,"namespace":"firefox-desktop-legacyHeartbeat-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-29T18:38:25.766528Z","schemaVersion":"1.12.0","userFacingName":"Browser MaxDiff Survey Q3 2024 (Brazil)","referenceBranch":"control","proposedDuration":7,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This survey helps Firefox collect user perceptions and needs to improve the browser","featureValidationOptOut":false,"id":"browser-maxdiff-survey-q3-2024-brazil","last_modified":1725048161144},{"slug":"browser-maxdiff-survey-q3-2024-germany","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["de"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"survey":{"message":"Hilf uns mit Deinem Feedback Firefox noch besser zu machen.","surveyId":"browser-maxdiff-survey-q3-2024-germany","learnMoreUrl":"https://wiki.mozilla.org/Firefox/Shield/Heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/feat-de","thanksMessage":"Dankesch\u00F6n!","learnMoreMessage":"Mehr dar\u00FCber Erfahren.","includeTelemetryUUID":true,"engagementButtonLabel":"Zur Umfrage."}},"enabled":true,"featureId":"legacyHeartbeat"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-08-29","targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('127.!') >= 0) && (locale in ['de']) && (region in ['DE']) && (('legacy-nimbus-test-1-viewpoint' in enrollments) == false) && (('legacy-heartbeat-test-2-viewpoint-en' in enrollments) == false)","featureIds":["legacyHeartbeat"],"application":"firefox-desktop","bucketConfig":{"count":300,"start":1800,"total":10000,"namespace":"firefox-desktop-legacyHeartbeat-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-29T18:38:50.159486Z","schemaVersion":"1.12.0","userFacingName":"Browser MaxDiff Survey Q3 2024 (Germany)","referenceBranch":"control","proposedDuration":7,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This survey helps Firefox collect user perceptions and needs to improve the browser","featureValidationOptOut":false,"id":"browser-maxdiff-survey-q3-2024-germany","last_modified":1725047964121},{"slug":"browser-maxdiff-survey-q3-2024-usa","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"survey":{"message":"Please help make Firefox better by taking this short survey.","surveyId":"browser-maxdiff-survey-q3-2024-usa","learnMoreUrl":"https://wiki.mozilla.org/Firefox/Shield/Heartbeat","repeatOption":"once","postAnswerUrl":"https://qsurvey.mozilla.com/s3/feat-en","thanksMessage":"Thanks!","learnMoreMessage":"Learn more.","includeTelemetryUUID":true,"engagementButtonLabel":"Take survey."}},"enabled":true,"featureId":"legacyHeartbeat"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('127.!') >= 0) && (locale in ['en-US']) && (region in ['US']) && (('legacy-nimbus-test-1-viewpoint' in enrollments) == false) && (('legacy-heartbeat-test-2-viewpoint-en' in enrollments) == false)","featureIds":["legacyHeartbeat"],"application":"firefox-desktop","bucketConfig":{"count":100,"start":1500,"total":10000,"namespace":"firefox-desktop-legacyHeartbeat-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-29T18:36:18.866921Z","schemaVersion":"1.12.0","userFacingName":"Browser MaxDiff Survey Q3 2024 (USA)","referenceBranch":"control","proposedDuration":7,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This survey helps Firefox collect user perceptions and needs to improve the browser","featureValidationOptOut":false,"id":"browser-maxdiff-survey-q3-2024-usa","last_modified":1724956608646},{"slug":"recommend-media-extension-add-ons-part-2","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","groups":["cfr"],"trigger":{"id":"defaultBrowserCheck"},"frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","groups":["cfr"],"content":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","screens":[{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT:treatment_a","anchors":[{"selector":"#unified-extensions-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Boost your browsing with add-ons"},"width":"350px","padding":16,"position":"callout","subtitle":{"raw":"Make browsing faster, safer, or just plain fun. Check out our top media tools!","marginBlock":"-4px 0","paddingInline":"24px 0"},"title_logo":{"width":"16px","height":"16px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/d17d97c1-96ae-477b-ad92-fcb7ef5eeba9.svg","alignment":"top","marginInline":"0 8px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfraddons","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"secondary_button":{"label":{"raw":"Explore add-ons"},"style":"primary","action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/must-have-media/?page=1&collection_sort=-popularity","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","groups":["cfr"],"content":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","padding":"16","screens":[{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT:treatment_b","anchors":[{"selector":"#unified-extensions-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Boost your video and music streaming","paddingInline":"8px 0"},"width":"350px","padding":20,"position":"callout","subtitle":{"raw":"Discover the latest extensions for enhancing your online media experiences.","marginBlock":"-4px 0","paddingInline":"44px 0"},"title_logo":{"width":"32px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/0191d9a0-42f8-4053-937c-f704c7bab6dc.svg","alignment":"inline","marginBlock":"3px 0","marginInline":"4px 16px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true,"navigate":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfraddons","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"secondary_button":{"label":{"raw":"Explore extensions"},"style":"primary","action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/must-have-media/?page=1&collection_sort=-popularity","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","groups":["cfr"],"content":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT","padding":"16","screens":[{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT:treatment_c","anchors":[{"selector":"#unified-extensions-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Get more out of your music and video","paddingInline":"8px 0"},"width":"350px","padding":20,"position":"callout","subtitle":{"raw":"Improve your online media experiences with these performance-boosting extensions.","marginBlock":"-4px 0","paddingInline":"44px 0"},"title_logo":{"width":"32px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/f2f3fa55-e0e8-4f5a-b64b-a1baa3063950.svg","alignment":"inline","marginBlock":"3px 0","marginInline":"4px 16px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"MEDIA_ADDONS_PT_2_EARLY_DAYS_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true,"navigate":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfraddons","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"secondary_button":{"label":{"raw":"Explore extensions"},"style":"primary","action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/must-have-media/?page=1&collection_sort=-popularity","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-08-14","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((currentDate|date - profileAgeCreated|date) / 86400000 <= 28) && (version|versionCompare('123.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US'])))","featureIds":["featureCallout"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-featureCallout-release-111","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-14T08:25:51.776543Z","schemaVersion":"1.12.0","userFacingName":"Recommend Media Extension Add-ons - Part 2, early days","referenceBranch":"control","proposedDuration":42,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":14,"userFacingDescription":"Experimenting with educating and recommending add-ons to users.","featureValidationOptOut":false,"id":"recommend-media-extension-add-ons-part-2","last_modified":1724953219380},{"slug":"pin-email-and-calendar-tabs-early-day-user","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"content":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","screens":[{"id":"PIN_EMAIL_AND_CALENDAR_TABS:treatment_a","anchors":[{"selector":"#tabbrowser-tabs:not([overflow]):not([haspinnedtabs]) %triggerTab%[visuallyselected]","arrow_width":"15.5564","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topcenter"}}],"content":{"title":{"raw":"Keep your most-used sites open and within reach","marginInline":"0 30px"},"width":"300px","padding":16,"position":"callout","subtitle":{"raw":"Right-click on a tab and select Pin Tab for easy access to a site in your tabs.","marginBlock":"-4px 0","paddingInline":"24px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5e2d5b63-db0b-43fb-b419-1381794a5863.svg","alignment":"top","marginBlock":"5px 0px","marginInline":"0 10px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfrfeatures","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"TabPinned","selectors":"#main-window"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"content":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","screens":[{"id":"PIN_EMAIL_AND_CALENDAR_TABS:treatment_b","anchors":[{"selector":"#tabbrowser-tabs:not([overflow]):not([haspinnedtabs]) %triggerTab%[visuallyselected]","arrow_width":"33.94","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topcenter"}}],"content":{"logo":{"width":"337px","height":"200px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/ca06c820-16bd-461c-bc6a-a8662994c7a9.svg"},"title":{"raw":"Keep your most-used sites open and within reach","marginInline":"0 30px"},"width":"369px","padding":16,"position":"callout","subtitle":{"raw":"Right-click on a tab and select Pin Tab for easy access to a site in your tabs.","marginBlock":"-4px 0","marginInline":"5px 0px","paddingInline":"24px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5e2d5b63-db0b-43fb-b419-1381794a5863.svg","alignment":"top","marginBlock":"5px -5px","marginInline":"0 8px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfrfeatures","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"TabPinned","selectors":"#main-window"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"content":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","screens":[{"id":"PIN_EMAIL_AND_CALENDAR_TABS:treatment_c","anchors":[{"selector":"#tabbrowser-tabs:not([overflow]):not([haspinnedtabs]) %triggerTab%[visuallyselected]","arrow_width":"33.94","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topcenter"}}],"content":{"logo":{"width":"337px","height":"163px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/43f7a3c1-1da3-4002-89e7-af4751cafd0e.svg"},"title":{"raw":"Keep an eye on your most-used websites"},"width":"369px","padding":16,"position":"callout","subtitle":{"raw":"Right-click on a tab and select Pin Tab. Your site stays open in your tabs and a green dot appears when there\u2019s an update.","marginBlock":"-4px 0","marginInline":"5px 0px","paddingInline":"24px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5e2d5b63-db0b-43fb-b419-1381794a5863.svg","alignment":"top","marginBlock":"5px -5px","marginInline":"0 8px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfrfeatures","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"TabPinned","selectors":"#main-window"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-07-29","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((currentDate|date - profileAgeCreated|date) / 86400000 < 28) && (version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (enrollmentsMap['long-term-holdback-2024-h2-velocity-desktop'] == 'delivery')))","featureIds":["fxms-message-9"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-fxms-message-9-release-12","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-29T14:38:16.820750Z","schemaVersion":"1.12.0","userFacingName":"Pin: Email and Calendar tabs - Early day user","referenceBranch":"control","proposedDuration":49,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":14,"userFacingDescription":"Recommending Pinned Tabs for frequently visited sites","featureValidationOptOut":false,"id":"pin-email-and-calendar-tabs-early-day-user","last_modified":1724903832618},{"slug":"fpp-floating-point-protection-rollout-linux-only","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"fdlibm_math":true},"enabled":true,"featureId":"fingerprintingProtection"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (os.isLinux) && (version|versionCompare('128.!') >= 0) && ((experiment.slug in activeRollouts) || ((!('javascript.options.use_fdlibm_for_sin_cos_tan'|preferenceIsUserSet)) && (!('privacy.fingerprintingProtection'|preferenceIsUserSet)) && (!('privacy.fingerprintingProtection.overrides'|preferenceIsUserSet)) && (!('privacy.fingerprintingProtection.pbmode'|preferenceIsUserSet))))","featureIds":["fingerprintingProtection"],"application":"firefox-desktop","bucketConfig":{"count":1000,"start":0,"total":10000,"namespace":"firefox-desktop-fingerprintingProtection-release-linux_only-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-28T19:46:17.112790Z","schemaVersion":"1.12.0","userFacingName":"FPP: Floating Point Protection Rollout (Linux Only)","referenceBranch":"control","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This is a rollout of FPP Floating Point Value protections on Desktop for Linux and Mac so that floating point values cannot be used as a fingerprinting vector between platforms.","featureValidationOptOut":false,"id":"fpp-floating-point-protection-rollout-linux-only","last_modified":1724874392768},{"slug":"home-and-newtab-recommendations-thumbs-up-down-relaunch","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"wallpapersV2":true,"regionWeatherConfig":"US, CA","weatherLocationSearch":true},"enabled":true,"featureId":"pocketNewtab"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"thumbsUpDown":true,"wallpapersV2":true,"regionWeatherConfig":"US, CA","weatherLocationSearch":true,"thumbsUpDownCompactLayout":true},"enabled":true,"featureId":"pocketNewtab"}]}],"outcomes":[{"slug":"newtab_do_no_harm","priority":"primary"},{"slug":"pocket_newtab","priority":"secondary"}],"arguments":{},"isRollout":false,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('129.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US'])","featureIds":["pocketNewtab"],"application":"firefox-desktop","bucketConfig":{"count":800,"start":0,"total":10000,"namespace":"firefox-desktop-pocketNewtab-release-36","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-28T18:21:18.475465Z","schemaVersion":"1.12.0","userFacingName":"Home and newtab recommendations thumbs up down relaunch","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Testing thumbs up and down on newtab","featureValidationOptOut":false,"id":"home-and-newtab-recommendations-thumbs-up-down-relaunch","last_modified":1724869287666},{"slug":"group-id-ab-validation-v2","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"eventCount":1},"enabled":true,"featureId":"nimbusIsReady"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"eventCount":10},"enabled":true,"featureId":"nimbusIsReady"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"beta\") && (version|versionCompare('130.!') >= 0)","featureIds":["nimbusIsReady"],"application":"firefox-desktop","bucketConfig":{"count":5000,"start":5000,"total":10000,"namespace":"firefox-desktop-nimbusIsReady-beta-group_id-2","randomizationUnit":"group_id"},"localizations":null,"publishedDate":"2024-08-27T21:02:24.017646Z","schemaVersion":"1.12.0","userFacingName":"Group ID A/B Validation v2","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This is a diagnostic validation of the experimentation platform.","featureValidationOptOut":false,"id":"group-id-ab-validation-v2","last_modified":1724792553008},{"slug":"group-id-aa-validation","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"eventCount":1},"enabled":true,"featureId":"nimbusIsReady"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"eventCount":1},"enabled":true,"featureId":"nimbusIsReady"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"beta\") && (version|versionCompare('130.!') >= 0)","featureIds":["nimbusIsReady"],"application":"firefox-desktop","bucketConfig":{"count":5000,"start":0,"total":10000,"namespace":"firefox-desktop-nimbusIsReady-beta-group_id-2","randomizationUnit":"group_id"},"localizations":null,"publishedDate":"2024-08-27T19:07:13.017357Z","schemaVersion":"1.12.0","userFacingName":"Group ID A/A Validation","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This is a diagnostic validation of the experimentation platform.","featureValidationOptOut":false,"id":"group-id-aa-validation","last_modified":1724785655049},{"slug":"embedded-import-spotlight","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"trigger":{"id":"defaultBrowserCheck"},"frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_a","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/6b49c8e1-ce36-4d6f-9397-58d2d2db2d6b.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Find your stuff faster in Firefox","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more for a seamless experience.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_b","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/c21217b2-220b-4f4e-bbe9-cf9071c9e2f7.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Find your stuff faster in Firefox","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more for a seamless experience.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_c","content":{"tiles":{"type":"migration-wizard"},"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5cb2354d-bebc-4b42-994f-9ff43de4a998.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Find your stuff faster in Firefox","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more for a seamless experience.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-08-06","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((currentDate|date - profileAgeCreated|date) / 86400000 < 28 && os.windowsBuildNumber >= 18362 && isDefaultBrowser) && (version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US'])))","featureIds":["spotlight"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-spotlight-release-126","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-06T18:04:46.832750Z","schemaVersion":"1.12.0","userFacingName":"Embedded Import Spotlight - Early Day User","referenceBranch":"control","proposedDuration":56,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":21,"userFacingDescription":"This experiment shows a modal to users on startup that provides them a way to import browser settings from other sources.","featureValidationOptOut":false,"id":"embedded-import-spotlight","last_modified":1724777616076},{"slug":"encrypted-client-hello-fallback-mechanism","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"insecureFallback":true},"enabled":true,"featureId":"echPrefs"}]}],"outcomes":[{"slug":"networking","priority":"primary"},{"slug":"page_load_performance_minimal","priority":"secondary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-08-23","targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('117.!') >= 0)","featureIds":["echPrefs"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-echPrefs-release-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-23T15:42:02.051742Z","schemaVersion":"1.12.0","userFacingName":"Encrypted Client Hello - Fallback Mechanism","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This experiment enables a fallback mechanism for Encrypted Client Hello. This feature maximizes compatibility with websites that have misconfigured or unexpected DNS configurations.","featureValidationOptOut":false,"id":"encrypted-client-hello-fallback-mechanism","last_modified":1724685030750},{"slug":"localized-privacy-addon-recommendations-onboarding","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["fr","de","it"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"addon-recommendations-in-nuo:control","screens":[{"id":"AW_WELCOME_BACK","content":{"logo":{},"title":{"string_id":"onboarding-device-migration-title"},"position":"split","subtitle":{"string_id":"onboarding-device-migration-subtitle2"},"background":"url('chrome://activity-stream/content/data/content/assets/device-migration.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"onboarding-device-migration-image-alt"},"primary_button":{"label":{"string_id":"onboarding-device-migration-primary-button-label"},"action":{"data":{"entrypoint":"fx-device-migration-onboarding","extraParams":{"utm_medium":"firefox-desktop","utm_source":"fx-new-device-sync","utm_content":"migration-onboarding","utm_campaign":"migration"}},"type":"FXA_SIGNIN_FLOW","navigate":"actionResult"}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"split_narrow_bkg_position":"-100px"},"targeting":"isDeviceMigration"},{"id":"AW_EASY_SETUP_NEEDS_DEFAULT_AND_PIN","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-pin-primary-button-label"},"action":{"type":"PIN_FIREFOX_TO_TASKBAR"},"defaultValue":true},{"id":"checkbox-2","label":{"string_id":"mr2022-onboarding-easy-setup-set-default-checkbox-label"},"action":{"type":"SET_DEFAULT_BROWSER"},"defaultValue":true},{"id":"checkbox-3","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"hide_secondary_section":"responsive","split_narrow_bkg_position":"-60px"},"targeting":"doesAppNeedPin && 'browser.shell.checkDefaultBrowser'|preferenceValue && !isDefaultBrowser"},{"id":"AW_EASY_SETUP_NEEDS_DEFAULT","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-easy-setup-set-default-checkbox-label"},"action":{"type":"SET_DEFAULT_BROWSER"},"defaultValue":true},{"id":"checkbox-2","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"split_narrow_bkg_position":"-60px"},"targeting":"!doesAppNeedPin && 'browser.shell.checkDefaultBrowser'|preferenceValue && !isDefaultBrowser"},{"id":"AW_EASY_SETUP_NEEDS_PIN","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-pin-primary-button-label"},"action":{"type":"PIN_FIREFOX_TO_TASKBAR"},"defaultValue":true},{"id":"checkbox-2","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"split_narrow_bkg_position":"-60px"},"targeting":"doesAppNeedPin && (!'browser.shell.checkDefaultBrowser'|preferenceValue || isDefaultBrowser)"},{"id":"AW_EASY_SETUP_ONLY_IMPORT","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"split_narrow_bkg_position":"-60px"},"targeting":"!doesAppNeedPin && (!'browser.shell.checkDefaultBrowser'|preferenceValue || isDefaultBrowser)"},{"id":"AW_LANGUAGE_MISMATCH","content":{"logo":{},"title":{"string_id":"mr2022-onboarding-live-language-text"},"position":"split","subtitle":{"string_id":"mr2022-language-mismatch-subtitle"},"hero_text":{"string_id":"mr2022-onboarding-live-language-text","useLangPack":true},"background":"var(--mr-screen-background-color)","progress_bar":true,"languageSwitcher":{"skip":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"cancel":{"string_id":"onboarding-live-language-secondary-cancel-download"},"switch":{"string_id":"mr2022-onboarding-live-language-switch-to","useLangPack":true},"waiting":{"string_id":"onboarding-live-language-waiting-button"},"continue":{"string_id":"mr2022-onboarding-live-language-continue-in"},"downloading":{"string_id":"onboarding-live-language-button-label-downloading"}}}},{"id":"AW_IMPORT_SETTINGS_EMBEDDED","content":{"tiles":{"type":"migration-wizard"},"position":"split","background":"url('chrome://activity-stream/content/data/content/assets/mr-import.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"image_alt_text":{"string_id":"mr2022-onboarding-import-image-alt"},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"hide_secondary_section":"responsive","split_narrow_bkg_position":"-42px"},"targeting":"('messaging-system-action.showEmbeddedImport' |preferenceValue == true) && useEmbeddedMigrationWizard"},{"id":"AW_MOBILE_DOWNLOAD","content":{"logo":{},"title":{"string_id":"onboarding-mobile-download-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-mobile-download-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-mobilecrosspromo.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","hero_image":{"url":"chrome://activity-stream/content/data/content/assets/mobile-download-qr-new-user.svg"},"progress_bar":true,"cta_paragraph":{"text":{"string_id":"mr2022-onboarding-mobile-download-cta-text","string_name":"download-label"},"action":{"data":{"args":"https://www.mozilla.org/firefox/mobile/get-app/?utm_medium=firefox-desktop&utm_source=onboarding-modal&utm_campaign=mr2022&utm_content=new-global","where":"tab"},"type":"OPEN_URL"}},"image_alt_text":{"string_id":"mr2022-onboarding-mobile-download-image-alt"},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"split_narrow_bkg_position":"-160px"},"targeting":"!isFxASignedIn || sync.mobileDevices == 0"},{"id":"AW_AMO_INTRODUCE","content":{"logo":{},"title":{"string_id":"amo-screen-title"},"position":"split","subtitle":{"string_id":"amo-screen-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-amo-collection.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"primary_button":{"label":{"string_id":"amo-screen-primary-cta"},"action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/25c2b44583534b3fa8fea977c419cd/?page=1&collection_sort=-added","where":"tabshifted"},"type":"OPEN_URL","navigate":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true}},"split_narrow_bkg_position":"-58px"},"targeting":"localeLanguageCode == 'en'"},{"id":"AW_GRATITUDE","content":{"logo":{},"title":{"string_id":"onboarding-gratitude-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-gratitude-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-gratitude.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-gratitude-image-alt"},"primary_button":{"label":{"string_id":"mr2-onboarding-start-browsing-button-label"},"action":{"navigate":true}},"split_narrow_bkg_position":"-228px"}}],"transitions":true},"enabled":true,"featureId":"aboutwelcome"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"addon-recommendations-in-nuo:treatment-a","screens":[{"id":"AW_WELCOME_BACK","content":{"logo":{},"title":{"string_id":"onboarding-device-migration-title"},"position":"split","subtitle":{"string_id":"onboarding-device-migration-subtitle2"},"background":"url('chrome://activity-stream/content/data/content/assets/device-migration.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"onboarding-device-migration-image-alt"},"primary_button":{"label":{"string_id":"onboarding-device-migration-primary-button-label"},"action":{"data":{"entrypoint":"fx-device-migration-onboarding","extraParams":{"utm_medium":"firefox-desktop","utm_source":"fx-new-device-sync","utm_content":"migration-onboarding","utm_campaign":"migration"}},"type":"FXA_SIGNIN_FLOW","navigate":"actionResult"}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"split_narrow_bkg_position":"-100px"},"targeting":"isDeviceMigration"},{"id":"AW_EASY_SETUP_NEEDS_DEFAULT_AND_PIN","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-pin-primary-button-label"},"action":{"type":"PIN_FIREFOX_TO_TASKBAR"},"defaultValue":true},{"id":"checkbox-2","label":{"string_id":"mr2022-onboarding-easy-setup-set-default-checkbox-label"},"action":{"type":"SET_DEFAULT_BROWSER"},"defaultValue":true},{"id":"checkbox-3","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"hide_secondary_section":"responsive","split_narrow_bkg_position":"-60px"},"targeting":"doesAppNeedPin && 'browser.shell.checkDefaultBrowser'|preferenceValue && !isDefaultBrowser"},{"id":"AW_EASY_SETUP_NEEDS_DEFAULT","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-easy-setup-set-default-checkbox-label"},"action":{"type":"SET_DEFAULT_BROWSER"},"defaultValue":true},{"id":"checkbox-2","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"split_narrow_bkg_position":"-60px"},"targeting":"!doesAppNeedPin && 'browser.shell.checkDefaultBrowser'|preferenceValue && !isDefaultBrowser"},{"id":"AW_EASY_SETUP_NEEDS_PIN","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-pin-primary-button-label"},"action":{"type":"PIN_FIREFOX_TO_TASKBAR"},"defaultValue":true},{"id":"checkbox-2","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"split_narrow_bkg_position":"-60px"},"targeting":"doesAppNeedPin && (!'browser.shell.checkDefaultBrowser'|preferenceValue || isDefaultBrowser)"},{"id":"AW_EASY_SETUP_ONLY_IMPORT","content":{"logo":{},"tiles":{"data":[{"id":"checkbox-1","label":{"string_id":"mr2022-onboarding-easy-setup-import-checkbox-label"},"defaultValue":true,"checkedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"},"uncheckedAction":{"data":{"actions":[{"data":{"pref":{"name":"showEmbeddedImport"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION"}}],"type":"multiselect"},"title":{"string_id":"onboarding-easy-setup-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-easy-setup-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-default-image-alt"},"primary_button":{"label":{"string_id":"mr2022-onboarding-easy-setup-primary-button-label"},"action":{"data":{"actions":[]},"type":"MULTI_ACTION","navigate":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"secondary_button_top":{"label":{"string_id":"mr1-onboarding-sign-in-button-label"},"action":{"data":{"where":"tab","entrypoint":"activity-stream-firstrun"},"type":"SHOW_FIREFOX_ACCOUNTS","addFlowParams":true}},"split_narrow_bkg_position":"-60px"},"targeting":"!doesAppNeedPin && (!'browser.shell.checkDefaultBrowser'|preferenceValue || isDefaultBrowser)"},{"id":"AW_LANGUAGE_MISMATCH","content":{"logo":{},"title":{"string_id":"mr2022-onboarding-live-language-text"},"position":"split","subtitle":{"string_id":"mr2022-language-mismatch-subtitle"},"hero_text":{"string_id":"mr2022-onboarding-live-language-text","useLangPack":true},"background":"var(--mr-screen-background-color)","progress_bar":true,"languageSwitcher":{"skip":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"cancel":{"string_id":"onboarding-live-language-secondary-cancel-download"},"switch":{"string_id":"mr2022-onboarding-live-language-switch-to","useLangPack":true},"waiting":{"string_id":"onboarding-live-language-waiting-button"},"continue":{"string_id":"mr2022-onboarding-live-language-continue-in"},"downloading":{"string_id":"onboarding-live-language-button-label-downloading"}}}},{"id":"AW_IMPORT_SETTINGS_EMBEDDED","content":{"tiles":{"type":"migration-wizard"},"position":"split","background":"url('chrome://activity-stream/content/data/content/assets/mr-import.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"image_alt_text":{"string_id":"mr2022-onboarding-import-image-alt"},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"hide_secondary_section":"responsive","split_narrow_bkg_position":"-42px"},"targeting":"('messaging-system-action.showEmbeddedImport' |preferenceValue == true) && useEmbeddedMigrationWizard"},{"id":"AW_MOBILE_DOWNLOAD","content":{"logo":{},"title":{"string_id":"onboarding-mobile-download-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-mobile-download-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-mobilecrosspromo.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","hero_image":{"url":"chrome://activity-stream/content/data/content/assets/mobile-download-qr-new-user.svg"},"progress_bar":true,"cta_paragraph":{"text":{"string_id":"mr2022-onboarding-mobile-download-cta-text","string_name":"download-label"},"action":{"data":{"args":"https://www.mozilla.org/firefox/mobile/get-app/?utm_medium=firefox-desktop&utm_source=onboarding-modal&utm_campaign=mr2022&utm_content=new-global","where":"tab"},"type":"OPEN_URL"}},"image_alt_text":{"string_id":"mr2022-onboarding-mobile-download-image-alt"},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true},"has_arrow_icon":true},"split_narrow_bkg_position":"-160px"},"targeting":"!isFxASignedIn || sync.mobileDevices == 0"},{"id":"AW_AMO_INTRODUCE","content":{"logo":{},"title":{"string_id":"amo-screen-title"},"position":"split","subtitle":{"string_id":"amo-screen-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-amo-collection.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"primary_button":{"label":{"string_id":"amo-screen-primary-cta"},"action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/25c2b44583534b3fa8fea977c419cd/?page=1&collection_sort=-added","where":"tabshifted"},"type":"OPEN_URL","navigate":true}},"secondary_button":{"label":{"string_id":"mr2022-onboarding-secondary-skip-button-label"},"action":{"navigate":true}},"split_narrow_bkg_position":"-58px"},"targeting":"localeLanguageCode == 'en'"},{"id":"AW_ADDONS_PICKER","content":{"logo":{},"tiles":{"data":[{"id":"jid1-MnnxcxisBPnSXQ@jetpack","icon":"https://addons.mozilla.org/user-media/addon_icons/506/506646-64.png?modified=mcrushed","name":{"$l10n":{"id":"addons-picker-privacy-badger-name","text":"Privacy Badger by EFD Technologists","comment":"The name and author should remain as is, but 'by' should be localized. The link to the extension is https://addons.mozilla.org/firefox/addon/privacy-badger17/"}},"type":"extension","action":{"data":{"url":"https://addons.mozilla.org/firefox/downloads/file/4129240/privacy_badger17-2023.6.23.xpi","telemetrySource":"aboutwelcome-addon"},"type":"INSTALL_ADDON_FROM_URL"},"source_id":"ADD_EXTENSION_BUTTON_PRIVACY_1","description":{"$l10n":{"id":"addons-picker-privacy-badger-description","text":"Automatically block invisible trackers.","comment":"This is the description for the Privacy Badger addon"}},"install_label":{"$l10n":{"id":"addons-picker-install-button-label","text":"Add to Firefox"}}},{"id":"CookieAutoDelete@kennydo.com","icon":"https://addons.mozilla.org/user-media/addon_icons/784/784287-64.png?modified=mcrushed","name":{"$l10n":{"id":"addons-picker-cookie-auto-delete-name","text":"Cookie Auto-Delete by CAD Team","comment":"The name and author should remain as is, but 'by' should be localized. The link to the extension is https://addons.mozilla.org/firefox/addon/cookie-autodelete/"}},"type":"extension","action":{"data":{"url":"https://addons.mozilla.org/firefox/downloads/file/4040738/cookie_autodelete-3.8.2.xpi","telemetrySource":"aboutwelcome-addon"},"type":"INSTALL_ADDON_FROM_URL"},"source_id":"ADD_EXTENSION_BUTTON_PRIVACY_2","description":{"$l10n":{"id":"addons-picker-cookie-auto-delete-description","text":"Automatically delete unwanted cookies when you close a tab.","comment":"This is the description of the 'Cookie Auto Delete' addon."}},"install_label":{"$l10n":{"id":"addons-picker-install-button-label","text":"Add to Firefox"}}},{"id":"@contain-facebook","icon":"https://addons.mozilla.org/user-media/addon_icons/954/954390-64.png?modified=97d4c956","name":{"$l10n":{"id":"addons-picker-facebook-container-name","text":"Facebook Container by Mozilla Firefox","comment":"The name and author should remain as is, but 'by' should be localized. The link to the extension is https://addons.mozilla.org/firefox/addon/facebook-container"}},"type":"extension","action":{"data":{"url":"https://addons.mozilla.org/firefox/downloads/file/4141092/facebook_container-2.3.11.xpi","telemetrySource":"aboutwelcome-addon"},"type":"INSTALL_ADDON_FROM_URL"},"source_id":"ADD_EXTENSION_BUTTON_PRIVACY_3","description":{"$l10n":{"id":"addons-picker-facebook-container-description","text":"Prevent Facebook from tracking you around the web.","comment":"This is the description of the 'Facebook Container' addon."}},"install_label":{"$l10n":{"id":"addons-picker-install-button-label","text":"Add to Firefox"}}}],"type":"addons-picker"},"title":{"$l10n":{"id":"addons-picker-privacy-boost-title","text":"Give your privacy a boost","comment":"This is the title of a screen that presents a few privacy-centric addons to the user."}},"position":"center","subtitle":{"$l10n":{"id":"addons-picker-privacy-boost-subtitle","text":"Try our recommended extensions to add even more privacy and security to your browsing."}},"progress_bar":true,"secondary_button":{"label":{"string_id":"migration-continue-button-label"},"style":"secondary","action":{"navigate":true}},"additional_button":{"label":{"$l10n":{"id":"addons-picker-privacy-boost-button","text":"Explore more extensions","comment":"This text is displayed on a button that will"}},"style":"link","action":{"data":{"args":"https://addons.mozilla.org","where":"tab"},"type":"OPEN_URL"}}}},{"id":"AW_GRATITUDE","content":{"logo":{},"title":{"string_id":"onboarding-gratitude-security-and-privacy-title"},"position":"split","subtitle":{"string_id":"onboarding-gratitude-security-and-privacy-subtitle"},"background":"url('chrome://activity-stream/content/data/content/assets/mr-gratitude.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)","progress_bar":true,"image_alt_text":{"string_id":"mr2022-onboarding-gratitude-image-alt"},"primary_button":{"label":{"string_id":"mr2-onboarding-start-browsing-button-label"},"action":{"navigate":true}},"split_narrow_bkg_position":"-228px"}}],"transitions":true},"enabled":true,"featureId":"aboutwelcome"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-08-07","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((isFirstStartup && !('trailhead.firstrun.didSeeAboutWelcome'|preferenceValue)) && os.windowsBuildNumber >= 18362) && (version|versionCompare('128.!') >= 0) && (locale in ['de', 'fr', 'it']) && (enrollmentsMap['long-term-holdback-2024-h2-velocity-desktop'] == 'delivery')))","featureIds":["aboutwelcome"],"application":"firefox-desktop","bucketConfig":{"count":6600,"start":0,"total":10000,"namespace":"firefox-desktop-aboutwelcome-release-97","randomizationUnit":"normandy_id"},"localizations":{"de":{"addons-picker-privacy-badger-name":"Privacy Badger von EFD Technologists","addons-picker-privacy-boost-title":"Verbessern Sie Ihre Privatsph\u00E4re","addons-picker-install-button-label":"Zu Firefox hinzuf\u00FCgen","addons-picker-privacy-boost-button":"Entdecken Sie mehr Erweiterungen","addons-picker-privacy-boost-subtitle":"Probieren Sie unsere empfohlenen Erweiterungen aus, um noch mehr Privatsph\u00E4re und Sicherheit beim Surfen zu erhalten.","addons-picker-cookie-auto-delete-name":"Cookie Auto-Delete von CAD Team","addons-picker-facebook-container-name":"Facebook Container von Mozilla Firefox","addons-picker-privacy-badger-description":"Unsichtbare Tracker automatisch blockieren","addons-picker-cookie-auto-delete-description":"L\u00F6schen Sie unerw\u00FCnschte Cookies automatisch beim Schlie\u00DFen eines Tabs.","addons-picker-facebook-container-description":"Hindern Sie Facebook daran, Sie im Web zu verfolgen."},"fr":{"addons-picker-privacy-badger-name":"Privacy Badger par EFD Technologists","addons-picker-privacy-boost-title":"Un coup de pouce pour prot\u00E9ger votre vie priv\u00E9e","addons-picker-install-button-label":"Ajouter \u00E0 Firefox","addons-picker-privacy-boost-button":"D\u00E9couvrez d\u2019autres extensions","addons-picker-privacy-boost-subtitle":"Essayez nos extensions recommand\u00E9es pour davantage de confidentialit\u00E9 et de s\u00E9curit\u00E9 lorsque vous naviguez.","addons-picker-cookie-auto-delete-name":"Cookie Auto-Delete par CAD Team","addons-picker-facebook-container-name":"Facebook Container par Mozilla Firefox","addons-picker-privacy-badger-description":"Bloquez automatiquement les traqueurs invisibles.","addons-picker-cookie-auto-delete-description":"Supprimez automatiquement les cookies ind\u00E9sirables \u00E0 la fermeture d\u2019un onglet.","addons-picker-facebook-container-description":"Emp\u00EAchez Facebook de vous pister sur le Web."},"it":{"addons-picker-privacy-badger-name":"Privacy Badger di EFD Technologists","addons-picker-privacy-boost-title":"Migliora la tua privacy","addons-picker-install-button-label":"Aggiungi a Firefox","addons-picker-privacy-boost-button":"Scopri altre estensioni","addons-picker-privacy-boost-subtitle":"Prova le estensioni consigliate per garantire ancora pi\u00F9 privacy e sicurezza alla tua navigazione.","addons-picker-cookie-auto-delete-name":"Cookie Auto-Delete di CAD Team","addons-picker-facebook-container-name":"Facebook Container di Mozilla Firefox","addons-picker-privacy-badger-description":"Blocca automaticamente gli elementi traccianti invisibili.","addons-picker-cookie-auto-delete-description":"Elimina automaticamente i cookie indesiderati alla chiusura di una scheda.","addons-picker-facebook-container-description":"Impedisci a Facebook di tracciarti sul Web."}},"publishedDate":"2024-08-07T19:23:01.490474Z","schemaVersion":"1.12.0","userFacingName":"Localized Privacy Addon Recommendations Onboarding","referenceBranch":"control","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Add-ons help users customize Firefox to their browser needs and habits, making for a more personalized browsing experience. This experiment adds a screen to onboarding that has a selection of add-ons that can be installed directly from the screen.","featureValidationOptOut":false,"id":"localized-privacy-addon-recommendations-onboarding","last_modified":1724260409881},{"slug":"fpp-floating-point-protection-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"fdlibm_math":true},"enabled":true,"featureId":"fingerprintingProtection"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-07-24","targeting":"(browserSettings.update.channel == \"release\") && (os.isMac) && (version|versionCompare('128.!') >= 0) && ((experiment.slug in activeRollouts) || ((!('javascript.options.use_fdlibm_for_sin_cos_tan'|preferenceIsUserSet)) && (!('privacy.fingerprintingProtection'|preferenceIsUserSet)) && (!('privacy.fingerprintingProtection.overrides'|preferenceIsUserSet)) && (!('privacy.fingerprintingProtection.pbmode'|preferenceIsUserSet))))","featureIds":["fingerprintingProtection"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-fingerprintingProtection-release-mac_only-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-24T16:44:57.093511Z","schemaVersion":"1.12.0","userFacingName":"FPP: Floating Point Protection Rollout (Mac Only)","referenceBranch":"control","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This is a rollout of FPP Floating Point Value protections on Desktop for Linux and Mac so that floating point values cannot be used as a fingerprinting vector between platforms.","featureValidationOptOut":false,"id":"fpp-floating-point-protection-rollout","last_modified":1724255803131},{"slug":"recommend-media-extension-add-ons-part-2-existing-user","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","groups":["cfr"],"trigger":{"id":"defaultBrowserCheck"},"frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","groups":["cfr"],"content":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","screens":[{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT:treatment_a","anchors":[{"selector":"#unified-extensions-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Boost your browsing with add-ons"},"width":"350px","padding":16,"position":"callout","subtitle":{"raw":"Make browsing faster, safer, or just plain fun. Check out our top media tools!","marginBlock":"-4px 0","paddingInline":"24px 0"},"title_logo":{"width":"16px","height":"16px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/d17d97c1-96ae-477b-ad92-fcb7ef5eeba9.svg","alignment":"top","marginInline":"0 8px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfraddons","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"secondary_button":{"label":{"raw":"Explore add-ons"},"style":"primary","action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/must-have-media/?page=1&collection_sort=-popularity","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","groups":["cfr"],"content":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","padding":"16","screens":[{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT:treatment_b","anchors":[{"selector":"#unified-extensions-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Boost your video and music streaming","paddingInline":"8px 0"},"width":"350px","padding":20,"position":"callout","subtitle":{"raw":"Discover the latest extensions for enhancing your online media experiences.","marginBlock":"-4px 0","paddingInline":"44px 0"},"title_logo":{"width":"32px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/0191d9a0-42f8-4053-937c-f704c7bab6dc.svg","alignment":"inline","marginBlock":"3px 0","marginInline":"4px 16px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true,"navigate":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfraddons","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"secondary_button":{"label":{"raw":"Explore extensions"},"style":"primary","action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/must-have-media/?page=1&collection_sort=-popularity","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","groups":["cfr"],"content":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT","padding":"16","screens":[{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT:treatment_c","anchors":[{"selector":"#unified-extensions-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Get more out of your music and video","paddingInline":"8px 0"},"width":"350px","padding":20,"position":"callout","subtitle":{"raw":"Improve your online media experiences with these performance-boosting extensions.","marginBlock":"-4px 0","paddingInline":"44px 0"},"title_logo":{"width":"32px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/f2f3fa55-e0e8-4f5a-b64b-a1baa3063950.svg","alignment":"inline","marginBlock":"3px 0","marginInline":"4px 16px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"MEDIA_ADDONS_PT_2_EXISTING_USER_FEATURE_CALLOUT"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true,"navigate":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfraddons","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"secondary_button":{"label":{"raw":"Explore extensions"},"style":"primary","action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/must-have-media/?page=1&collection_sort=-popularity","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":2},"targeting":"userPrefs.cfrAddons && 'browser.discovery.enabled'|preferenceValue && source == 'newtab'"},"enabled":true,"featureId":"featureCallout"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-08-14","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((currentDate|date - profileAgeCreated|date) / 86400000 >= 28) && (version|versionCompare('123.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US'])))","featureIds":["featureCallout"],"application":"firefox-desktop","bucketConfig":{"count":1500,"start":0,"total":10000,"namespace":"firefox-desktop-featureCallout-release-112","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-14T08:26:18.179745Z","schemaVersion":"1.12.0","userFacingName":"Recommend Media Extension Add-ons Part 2 - Existing User","referenceBranch":"control","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Experimenting with educating and recommending add-ons to users.","featureValidationOptOut":false,"id":"recommend-media-extension-add-ons-part-2-existing-user","last_modified":1724251479313},{"slug":"tab-hover-preview-release-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"tabPreviewsEnabled":true},"enabled":true,"featureId":"tabPreview"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-08-06","targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('129.!') >= 0) && ((experiment.slug in activeRollouts) || ((!('browser.tabs.hoverPreview.enabled'|preferenceIsUserSet))))","featureIds":["tabPreview"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-tabPreview-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-06T19:35:46.557377Z","schemaVersion":"1.12.0","userFacingName":"Tab Hover Preview Release Rollout","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Enable Tab Hover Preview.","featureValidationOptOut":false,"id":"tab-hover-preview-release-rollout","last_modified":1724183543812},{"slug":"one-click-set-to-default-new-users-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"setDefaultBrowserUserChoice":true,"setDefaultGuidanceNotifications":false,"setDefaultBrowserUserChoiceRegRename":true},"enabled":true,"featureId":"shellService"}]}],"outcomes":[{"slug":"new_user_onboarding","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || (((isFirstStartup && !('trailhead.firstrun.didSeeAboutWelcome'|preferenceValue)) && os.windowsBuildNumber >= 18362 && (currentDate|date - profileAgeCreated|date) / 3600000 <= 24) && (version|versionCompare('128.!') >= 0) && (enrollmentsMap['long-term-holdback-2024-h2-velocity-desktop'] == 'delivery'))) && ((experiment.slug in activeRollouts) || ((!('browser.shell.disableStartMenuPin'|preferenceIsUserSet)) && (!('browser.shell.setDefaultBrowserUserChoice'|preferenceIsUserSet)) && (!('browser.shell.setDefaultBrowserUserChoice.regRename'|preferenceIsUserSet))))","featureIds":["shellService"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-shellService-release-first_run_new_profile_win1903-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-20T19:18:08.133389Z","schemaVersion":"1.12.0","userFacingName":"One-Click Set To Default - New Users Rollout","referenceBranch":"treatment-b","proposedDuration":7,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Rollout of 1-click Default prompt highlighting benefits of choosing Firefox (new profiles)","featureValidationOptOut":false,"id":"one-click-set-to-default-new-users-rollout","last_modified":1724181507428},{"slug":"embedded-import-spotlight-existing-users","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"trigger":{"id":"defaultBrowserCheck"},"frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_a","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/6b49c8e1-ce36-4d6f-9397-58d2d2db2d6b.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Find your stuff faster in Firefox","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more for a seamless experience.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_b","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/c21217b2-220b-4f4e-bbe9-cf9071c9e2f7.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Find your stuff faster in Firefox","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more for a seamless experience.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_c","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5cb2354d-bebc-4b42-994f-9ff43de4a998.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Find your stuff faster in Firefox","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more for a seamless experience.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-d","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_d","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/6b49c8e1-ce36-4d6f-9397-58d2d2db2d6b.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Make Firefox feel more like home","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more in one simple step.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]},{"slug":"treatment-e","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","groups":["eco"],"weight":100,"content":{"id":"EMBEDDED_IMPORT_SPOTLIGHT","screens":[{"id":"EMBEDDED_IMPORT_SPOTLIGHT:treatment_e","content":{"tiles":{"type":"migration-wizard"},"no_rdm":true,"position":"split","background":"url('https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/757d630f-b0ac-4623-a6e2-e1fdc791a33f.svg') center / auto 100% no-repeat var(--mr-screen-background-color)","progress_bar":false,"migrate_close":{"action":{"navigate":true}},"migrate_start":{"action":{}},"reverse_split":true,"dismiss_button":{"action":{"dismiss":true}},"migration_wizard_options":{"hide_select_all":true,"header_font_size":"2em","header_font_weight":"600","header_margin_block":"-40px 0","import_button_class":"import-button-test-class","subheader_font_size":"4px 0","import_button_string":"Import to Firefox","checkbox_margin_block":"8px 0","force_show_import_all":"true","subheader_font_weight":"400","checkbox_margin_inline":"4px 0","subheader_margin_block":"4px 28px","selection_header_string":"Make Firefox feel more like home","selection_subheader_string":"Bring over your passwords, bookmarks, history, and more in one simple step.","option_expander_title_string":"Import all available data","hide_option_expander_subtitle":true,"data_import_complete_success_string":"Data Import Complete Success"},"split_content_padding_block":"110px 0","split_content_padding_inline":"50px","split_content_justify_content":"flex-start"},"targeting":"true"}],"backdrop":"transparent","template":"multistage"},"trigger":{"id":"defaultBrowserCheck"},"provider":"onboarding","template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'newtab' && os.isWindows && profileRestartCount > 0 && !(hasMigratedBookmarks || hasMigratedCSVPasswords || hasMigratedHistory || hasMigratedPasswords)"},"enabled":true,"featureId":"spotlight"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-08-06","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((currentDate|date - profileAgeCreated|date) / 86400000 >= 28 && os.windowsBuildNumber >= 18362 && isDefaultBrowser) && (version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (('embedded-import-spotlight' in enrollments) == false)))","featureIds":["spotlight"],"application":"firefox-desktop","bucketConfig":{"count":3000,"start":0,"total":10000,"namespace":"firefox-desktop-spotlight-release-127","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-06T18:05:41.302421Z","schemaVersion":"1.12.0","userFacingName":"Embedded Import Spotlight - Existing Users","referenceBranch":"control","proposedDuration":42,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"This experiment shows a modal to users on startup that provides them a way to import browser settings from other sources.","featureValidationOptOut":false,"id":"embedded-import-spotlight-existing-users","last_modified":1723677908723},{"slug":"off-main-thread-decompression-experiment-beta","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"control-all-main-thread","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"sendOnDataFinished":false,"sendOnDataFinishedToCssLoader":false,"sendOnDataFinishedToHtml5parser":false,"sendOnDataFinshedFromInputStreamPump":false,"enableOffMainThreadStreamDecompression":false},"enabled":true,"featureId":"networking"}]},{"slug":"treatment-a-all-omt","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"sendOnDataFinished":true,"sendOnDataFinishedToCssLoader":true,"sendOnDataFinishedToHtml5parser":true,"sendOnDataFinshedFromInputStreamPump":true,"enableOffMainThreadStreamDecompression":true},"enabled":true,"featureId":"networking"}]},{"slug":"treatment-b-omt-decompression","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"sendOnDataFinished":false,"sendOnDataFinishedToCssLoader":false,"sendOnDataFinishedToHtml5parser":false,"sendOnDataFinshedFromInputStreamPump":false,"enableOffMainThreadStreamDecompression":true},"enabled":true,"featureId":"networking"}]},{"slug":"treatment-c-main-thread-decompression-omt-ondatafinished","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"sendOnDataFinished":true,"sendOnDataFinishedToCssLoader":true,"sendOnDataFinishedToHtml5parser":true,"sendOnDataFinshedFromInputStreamPump":true,"enableOffMainThreadStreamDecompression":false},"enabled":true,"featureId":"networking"}]}],"outcomes":[{"slug":"page_load_performance","priority":"primary"},{"slug":"networking_performance","priority":"secondary"}],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-08-01","targeting":"(browserSettings.update.channel == \"beta\") && (version|versionCompare('129.!') >= 0)","featureIds":["networking"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-networking-beta-6","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-01T15:12:23.447251Z","schemaVersion":"1.12.0","userFacingName":"Off-Main-Thread Decompression Experiment Beta","referenceBranch":"control-all-main-thread","proposedDuration":27,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"The experiment alters parameters that control whether HTML5 parsing, CSS parsing, and stream decompression are processed on the main thread or a background thread","featureValidationOptOut":false,"id":"off-main-thread-decompression-experiment-beta","last_modified":1723541551260},{"slug":"rollout-sponsored-topsites-in-eu-regions","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"topSitesContileEnabled":false},"enabled":true,"featureId":"newtab"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('110.!') >= 0) && (region in ['AT', 'BE', 'CH', 'LU', 'NL', 'PL'])","featureIds":["newtab"],"application":"firefox-desktop","bucketConfig":{"count":7500,"start":0,"total":10000,"namespace":"firefox-desktop-newtab-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-09T19:12:54.034985Z","schemaVersion":"1.12.0","userFacingName":"Rollout sponsored topsites in EU regions","referenceBranch":"control","proposedDuration":7,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Roll out sponsored topsites features in additional EU regions.","featureValidationOptOut":false,"id":"rollout-sponsored-topsites-in-eu-regions","last_modified":1723230778612},{"slug":"us-review-checker-v2-holdback-experiment","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{},"enabled":true,"featureId":"fxms-message-7"},{"value":{},"enabled":true,"featureId":"shopping2023"}]},{"slug":"treatment-a-no-survey","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"FAKESPOT_CALLOUT_NO_OP_DUMMY","trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":2,"targeting":"true"},{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","content":{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","screens":[{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"chrome://browser/content/shopping/assets/priceTagButtonCallout.svg"},"title":{"string_id":"shopping-callout-closed-not-opted-in-revised-title"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-closed-not-opted-in-revised-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-closed-not-opted-in-revised-button","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","content":{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","screens":[{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"alt":{"string_id":"shopping-callout-not-opted-in-reminder-img-alt"},"height":"214px","imageURL":"chrome://browser/content/shopping/assets/reviewsVisualCallout.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"string_id":"shopping-callout-not-opted-in-reminder-ignore-checkbox"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"fontSize":"20px","string_id":"shopping-callout-not-opted-in-reminder-title","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-not-opted-in-reminder-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-close-button","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-open-button","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":4,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":3},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN[messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN | length - 1] | date) / 3600000 > 24","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","content":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","screens":[{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"tiles":{"data":[{"id":"fakespot-opted-out-survey-hard-to-understand","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s hard to understand"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-too-slow","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s too slow"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-accurate","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not accurate"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-helpful","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not helpful to me"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-check-reviews-myself","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"I\u2019d rather check reviews myself"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-other","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"Other"},"defaultValue":false}],"type":"multiselect","label":"Please let us know why you turned off Review Checker. Select multiple if needed.","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":"Help improve Firefox","width":"332px","layout":"survey","padding":"20","position":"callout","title_logo":{"imageURL":"chrome://branding/content/about-logo.png"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"actions":[{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":"Submit","style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress","value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2\",\"complete\":false}"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","collectSelect":true},"disabled":"hasActiveMultiSelect"}},"force_hide_steps_indicator":true},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"title":"Thanks for your feedback!","layout":"inline","position":"callout","title_logo":{"imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/706c7a85-cf23-442e-8a92-7ebc7f537375.svg"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF","dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"timeout","options":{"once":true,"interval":20000}}},{"action":{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},"params":{"type":"tourend","options":{"once":true}}}]},"force_hide_steps_indicator":true}],"backdrop":"transparent","template":"multistage","transitions":false,"tour_pref_name":"messaging-system-action.fakespot-opted-out-survey.progress","disableHistoryUpdates":true,"tour_pref_default_value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1\",\"complete\":false}"},"trigger":{"id":"preferenceObserver","params":["browser.shopping.experience2023.optedIn"]},"priority":2,"template":"feature_callout","targeting":"'browser.shopping.experience2023.optedIn' | preferenceValue == 2 && !'browser.shopping.experience2023.active' | preferenceValue && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false"}],"template":"multi"},"enabled":true,"featureId":"fxms-message-7"},{"value":{"enabled":true,"autoOpenEnabled":true},"enabled":true,"featureId":"shopping2023"}]},{"slug":"treatment-b-survey","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"FAKESPOT_CALLOUT_NO_OP_DUMMY","trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":2,"targeting":"true"},{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","content":{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","screens":[{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"chrome://browser/content/shopping/assets/priceTagButtonCallout.svg"},"title":{"string_id":"shopping-callout-closed-not-opted-in-revised-title"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-closed-not-opted-in-revised-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-closed-not-opted-in-revised-button","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","content":{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","screens":[{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"alt":{"string_id":"shopping-callout-not-opted-in-reminder-img-alt"},"height":"214px","imageURL":"chrome://browser/content/shopping/assets/reviewsVisualCallout.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"string_id":"shopping-callout-not-opted-in-reminder-ignore-checkbox"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"fontSize":"20px","string_id":"shopping-callout-not-opted-in-reminder-title","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-not-opted-in-reminder-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-close-button","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-open-button","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":4,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":3},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN[messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN | length - 1] | date) / 3600000 > 24","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","content":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","screens":[{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"tiles":{"data":[{"id":"fakespot-opted-out-survey-hard-to-understand","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s hard to understand"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-too-slow","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s too slow"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-accurate","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not accurate"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-helpful","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not helpful to me"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-check-reviews-myself","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"I\u2019d rather check reviews myself"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-other","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"Other"},"defaultValue":false}],"type":"multiselect","label":"Please let us know why you turned off Review Checker. Select multiple if needed.","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":"Help improve Firefox","width":"332px","layout":"survey","padding":"20","position":"callout","title_logo":{"imageURL":"chrome://branding/content/about-logo.png"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"actions":[{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":"Submit","style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress","value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2\",\"complete\":false}"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","collectSelect":true},"disabled":"hasActiveMultiSelect"}},"force_hide_steps_indicator":true},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"title":"Thanks for your feedback!","layout":"inline","position":"callout","title_logo":{"imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/706c7a85-cf23-442e-8a92-7ebc7f537375.svg"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF","dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"timeout","options":{"once":true,"interval":20000}}},{"action":{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},"params":{"type":"tourend","options":{"once":true}}}]},"force_hide_steps_indicator":true}],"backdrop":"transparent","template":"multistage","transitions":false,"tour_pref_name":"messaging-system-action.fakespot-opted-out-survey.progress","disableHistoryUpdates":true,"tour_pref_default_value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1\",\"complete\":false}"},"trigger":{"id":"preferenceObserver","params":["browser.shopping.experience2023.optedIn"]},"priority":2,"template":"feature_callout","targeting":"'browser.shopping.experience2023.optedIn' | preferenceValue == 2 && !'browser.shopping.experience2023.active' | preferenceValue && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false"}],"template":"multi"},"enabled":true,"featureId":"fxms-message-7"},{"value":{"enabled":true,"surveyEnabled":true,"autoOpenEnabled":true},"enabled":true,"featureId":"shopping2023"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-07-16","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || ((version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US']) && (('review-checker-staged-rollout-no-survey' in enrollments) == false) && ((enrollmentsMap['us-review-checker-rollout-v2'] == 'treatment-a') == false) && (('review-checker-continuity-rollout-post-119' in enrollments) == false))) && ((experiment.slug in activeExperiments) || ((!('browser.shopping.experience2023.ads.enabled'|preferenceIsUserSet)) && (!('browser.shopping.experience2023.ads.exposure'|preferenceIsUserSet)) && (!('browser.shopping.experience2023.autoOpen.enabled'|preferenceIsUserSet))))","featureIds":["fxms-message-7","shopping2023"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-fxms-message-7-shopping2023-release-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-16T20:33:30.656464Z","schemaVersion":"1.12.0","userFacingName":"US Review Checker V2 Holdback Experiment","referenceBranch":"control","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Review Checker experiment with the most recent (2.0) configuration.","featureValidationOptOut":false,"id":"us-review-checker-v2-holdback-experiment","last_modified":1723139573504},{"slug":"home-and-newtab-wallpapers-v2-rollout-global-relaunch","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"wallpapersV2":true},"enabled":true,"featureId":"pocketNewtab"}]}],"outcomes":[{"slug":"newtab_do_no_harm","priority":"primary"},{"slug":"pocket_newtab","priority":"secondary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('128.!') >= 0) && (('home-and-newtab-wallpapers-v1-rollout-us-and-ca' in enrollments) == false)","featureIds":["pocketNewtab"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-pocketNewtab-release-no_targeting-rollout-12","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-05T18:12:33.316462Z","schemaVersion":"1.12.0","userFacingName":"Home and newtab wallpapers v2 Rollout Global Relaunch","referenceBranch":"control","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Rollout of New Tab wallpaper selection.","featureValidationOptOut":false,"id":"home-and-newtab-wallpapers-v2-rollout-global-relaunch","last_modified":1722881557814},{"slug":"pin-email-and-calendar-tabs-existing-user","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"content":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","screens":[{"id":"PIN_EMAIL_AND_CALENDAR_TABS:treatment_a","anchors":[{"selector":"#tabbrowser-tabs:not([overflow]):not([haspinnedtabs]) %triggerTab%[visuallyselected]","arrow_width":"15.5564","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topcenter"}}],"content":{"title":{"raw":"Keep your most-used sites open and within reach","marginInline":"0 30px"},"width":"300px","padding":16,"position":"callout","subtitle":{"raw":"Right-click on a tab and select Pin Tab for easy access to a site in your tabs.","marginBlock":"-4px 0","paddingInline":"24px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5e2d5b63-db0b-43fb-b419-1381794a5863.svg","alignment":"top","marginBlock":"5px 0px","marginInline":"0 10px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfrfeatures","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"TabPinned","selectors":"#main-window"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"content":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","screens":[{"id":"PIN_EMAIL_AND_CALENDAR_TABS:treatment_b","anchors":[{"selector":"#tabbrowser-tabs:not([overflow]):not([haspinnedtabs]) %triggerTab%[visuallyselected]","arrow_width":"33.94","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topcenter"}}],"content":{"logo":{"width":"337px","height":"200px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/ca06c820-16bd-461c-bc6a-a8662994c7a9.svg"},"title":{"raw":"Keep your most-used sites open and within reach","marginInline":"0 30px"},"width":"369px","padding":16,"position":"callout","subtitle":{"raw":"Right-click on a tab and select Pin Tab for easy access to a site in your tabs.","marginBlock":"-4px 0","marginInline":"5px 0px","paddingInline":"24px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5e2d5b63-db0b-43fb-b419-1381794a5863.svg","alignment":"top","marginBlock":"5px -5px","marginInline":"0 8px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfrfeatures","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"TabPinned","selectors":"#main-window"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","groups":["cfr"],"content":{"id":"PIN_EMAIL_AND_CALENDAR_TABS","screens":[{"id":"PIN_EMAIL_AND_CALENDAR_TABS:treatment_c","anchors":[{"selector":"#tabbrowser-tabs:not([overflow]):not([haspinnedtabs]) %triggerTab%[visuallyselected]","arrow_width":"33.94","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topcenter"}}],"content":{"logo":{"width":"337px","height":"163px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/43f7a3c1-1da3-4002-89e7-af4751cafd0e.svg"},"title":{"raw":"Keep an eye on your most-used websites"},"width":"369px","padding":16,"position":"callout","subtitle":{"raw":"Right-click on a tab and select Pin Tab. Your site stays open in your tabs and a green dot appears when there\u2019s an update.","marginBlock":"-4px 0","marginInline":"5px 0px","paddingInline":"24px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/5e2d5b63-db0b-43fb-b419-1381794a5863.svg","alignment":"top","marginBlock":"5px -5px","marginInline":"0 8px"},"submenu_button":{"style":"secondary","submenu":[{"id":"item1","type":"action","label":{"raw":"Don't show this recommendation again"},"action":{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE","dismiss":true}},{"id":"item2","type":"action","label":{"raw":"Show fewer recommendations"},"action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.show-fewer-addon-recommendations","value":true}},"type":"SET_PREF"},{"data":{"id":"PIN_EMAIL_AND_CALENDAR_TABS"},"type":"BLOCK_MESSAGE"}]},"type":"MULTI_ACTION","dismiss":true}},{"type":"separator"},{"id":"item3","type":"action","label":{"raw":"Manage Settings"},"action":{"data":{"args":"preferences#general-cfrfeatures","where":"tab"},"type":"OPEN_ABOUT_PAGE","dismiss":true}}],"attached_to":"additional_button"},"additional_button":{"label":{"raw":"Dismiss"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"TabPinned","selectors":"#main-window"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"openURL","patterns":["https://mail.google.com/*","https://mail.aol.com/*","https://outlook.live.com/*","https://app.neo.space/mail/*","https://mail.yahoo.com/*","https://www.icloud.com/mail/*","https://www.zoho.com/mail/*","https://account.proton.me/mail/*","https://navigator-bs.gmx.com/mail/*","https://tuta.com/*","https://mailfence.com/*","https://360.yandex.com/mail/*","https://titan.email/*","https://posteo.de/en/*","https://runbox.com/*","https://webmail.countermail.com/*","https://kolabnow.com/*","https://soverin.net/mail/*","https://calendar.google.com/*","https://www.calendar.com/*","https://www.icloud.com/calendar/*","https://www.zoho.com/calendar/*","https://www.cozi.com/*","https://kalender.digital/*","https://www.kalender.com/*","https://proton.me/de/calendar/*","https://www.stackfield.com/de/*","https://www.any.do/*","https://zeeg.me/en/*","https://www.pandora.com/*","https://open.spotify.com/*","https://tunein.com/radio/home/*","https://www.iheart.com/*","https://www.accuradio.com/*","https://www.siriusxm.com/*","https://www.jango.com/*","https://live365.com/*","https://www.radioguide.fm/*","https://worldwidefm.net/*","https://www.radio.net/s/fip/*","https://www.nts.live/*","https://vintagefm.com.au/*","https://www.kcrw.com/music/shows/eclectic24/*","https://sohoradiolondon.com/*","https://power1051.iheart.com/*","https://www.balamii.com/*","https://www.cinemix.us/*","https://www.kexp.org/*","https://www.dublab.com/*","https://www.facebook.com/*","https://www.reddit.com/*","https://www.instagram.com/*","https://www.TikTok.com/*","https://www.Pinterest.com/*","https://twitter.com/*","https://www.linkedin.com/*","https://www.quora.com/*","https://www.tumblr.com/*"]},"priority":1,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"userPrefs.cfrFeatures && visitsCount >= 3"},"enabled":true,"featureId":"fxms-message-9"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-07-29","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || (((currentDate|date - profileAgeCreated|date) / 86400000 >= 28) && (version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (enrollmentsMap['long-term-holdback-2024-h2-velocity-desktop'] == 'delivery')))","featureIds":["fxms-message-9"],"application":"firefox-desktop","bucketConfig":{"count":7000,"start":0,"total":10000,"namespace":"firefox-desktop-fxms-message-9-release-13","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-29T14:41:27.593452Z","schemaVersion":"1.12.0","userFacingName":"Pin: Email and Calendar tabs - Existing user","referenceBranch":"control","proposedDuration":42,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Recommending Pinned Tabs for frequently visited sites","featureValidationOptOut":false,"id":"pin-email-and-calendar-tabs-existing-user","last_modified":1722874671363},{"slug":"higher-placement-holdback","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{},"enabled":true,"featureId":"urlbar"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"quickSuggestSponsoredIndex":-1},"enabled":true,"featureId":"urlbar"}]}],"outcomes":[{"slug":"firefox_suggest","priority":"primary"}],"arguments":{},"isRollout":false,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('128.!') >= 0) && (locale in ['en-US']) && (region in ['US'])","featureIds":["urlbar"],"application":"firefox-desktop","bucketConfig":{"count":500,"start":4586,"total":10000,"namespace":"firefox-desktop-urlbar-release-14","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-08-01T19:18:36.057067Z","schemaVersion":"1.12.0","userFacingName":"Higher Placement Holdback","referenceBranch":"control","proposedDuration":84,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Holdback of updated placement of sponsored suggestions in the address bar to monitor impact of the change.","featureValidationOptOut":false,"id":"higher-placement-holdback","last_modified":1722539924354},{"slug":"home-and-newtab-wallpapers-v1-rollout-us-and-ca","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"wallpapers":true,"wallpapersV2":true,"regionWeatherConfig":"US, CA","weatherLocationSearch":true},"enabled":true,"featureId":"pocketNewtab"}]}],"outcomes":[{"slug":"newtab_do_no_harm","priority":"primary"},{"slug":"pocket_newtab","priority":"secondary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['CA', 'US'])","featureIds":["pocketNewtab"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-pocketNewtab-release-no_targeting-rollout-10","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-30T20:30:05.332671Z","schemaVersion":"1.12.0","userFacingName":"Home and newtab wallpapers v2 Rollout -- US and CA","referenceBranch":"control","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Rollout of New Tab wallpaper selection.","featureValidationOptOut":false,"id":"home-and-newtab-wallpapers-v1-rollout-us-and-ca","last_modified":1722371413058},{"slug":"cbb-row-hold-back-with-promo-v2","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enablePromo":false,"enableDetectOnly":false,"enableGlobalRules":false,"modeNormalBrowsing":0,"modePrivateBrowsing":0,"enableFirefoxDesktopUI":false,"enableGlobalRulesSubFrames":false,"enableDesktopFeatureCallout":false},"enabled":true,"featureId":"cookieBannerHandling"},{"value":{"enabledNormalBrowsing":false,"enabledPrivateBrowsing":false},"enabled":true,"featureId":"queryStripping"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enablePromo":true,"enableDetectOnly":false,"enableGlobalRules":true,"modeNormalBrowsing":0,"modePrivateBrowsing":1,"enableFirefoxDesktopUI":true,"enableGlobalRulesSubFrames":true,"enableDesktopFeatureCallout":true},"enabled":true,"featureId":"cookieBannerHandling"},{"value":{"enabledNormalBrowsing":false,"enabledPrivateBrowsing":false},"enabled":true,"featureId":"queryStripping"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-07-15","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || ((version|versionCompare('128.!') >= 0) && (region in ['AD', 'AE', 'AF', 'AG', 'AI', 'AL', 'AM', 'AO', 'AQ', 'AR', 'AS', 'AU', 'AW', 'AX', 'AZ', 'BA', 'BB', 'BD', 'BF', 'BH', 'BI', 'BJ', 'BL', 'BM', 'BN', 'BO', 'BQ', 'BR', 'BS', 'BT', 'BV', 'BW', 'BY', 'BZ', 'CA', 'CC', 'CD', 'CF', 'CG', 'CH', 'CI', 'CK', 'CL', 'CM', 'CN', 'CO', 'CR', 'CU', 'CV', 'CW', 'CX', 'DJ', 'DM', 'DO', 'DZ', 'EC', 'EG', 'EH', 'ER', 'ET', 'FJ', 'FK', 'FM', 'FO', 'GA', 'GD', 'GE', 'GF', 'GG', 'GH', 'GI', 'GL', 'GM', 'GN', 'GP', 'GQ', 'GS', 'GT', 'GU', 'GW', 'GY', 'HK', 'HM', 'HN', 'HT', 'ID', 'IL', 'IM', 'IN', 'IO', 'IQ', 'IR', 'IS', 'JE', 'JM', 'JO', 'JP', 'KE', 'KG', 'KH', 'KI', 'KM', 'KN', 'KP', 'KR', 'KW', 'KY', 'KZ', 'LA', 'LB', 'LC', 'LI', 'LK', 'LR', 'LS', 'LY', 'MA', 'MC', 'MD', 'ME', 'MF', 'MG', 'MH', 'MK', 'ML', 'MM', 'MN', 'MO', 'MP', 'MQ', 'MR', 'MS', 'MU', 'MV', 'MW', 'MX', 'MY', 'MZ', 'NA', 'NC', 'NE', 'NF', 'NG', 'NI', 'NO', 'NP', 'NR', 'NU', 'NZ', 'OM', 'PA', 'PE', 'PF', 'PG', 'PH', 'PK', 'PM', 'PN', 'PR', 'PS', 'PW', 'PY', 'QA', 'RE', 'RS', 'RU', 'RW', 'SA', 'SB', 'SC', 'SD', 'SG', 'SH', 'SJ', 'SL', 'SM', 'SN', 'SO', 'SR', 'SS', 'ST', 'SV', 'SX', 'SY', 'SZ', 'TC', 'TD', 'TF', 'TG', 'TH', 'TJ', 'TK', 'TL', 'TM', 'TN', 'TO', 'TR', 'TT', 'TV', 'TW', 'TZ', 'UA', 'UG', 'UM', 'UY', 'UZ', 'VA', 'VC', 'VE', 'VG', 'VI', 'VN', 'VU', 'WF', 'WS', 'YE', 'YT', 'ZA', 'ZM', 'ZW'])))","featureIds":["cookieBannerHandling","queryStripping"],"application":"firefox-desktop","bucketConfig":{"count":1000,"start":0,"total":10000,"namespace":"firefox-desktop-cookieBannerHandling-queryStripping-release-15","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-15T15:12:59.182689Z","schemaVersion":"1.12.0","userFacingName":"CBB ROW Hold-back with Promo v2","referenceBranch":"control","proposedDuration":49,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Redo of Cookie banner blocker feature hold-back in Germany (private windows only) to include recently landed Promo UI","featureValidationOptOut":false,"id":"cbb-row-hold-back-with-promo-v2","last_modified":1721748109497},{"slug":"cbb-eu-hold-back-with-promo-v2","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enablePromo":false,"enableDetectOnly":false,"enableGlobalRules":false,"modeNormalBrowsing":0,"modePrivateBrowsing":0,"enableFirefoxDesktopUI":false,"enableGlobalRulesSubFrames":false,"enableDesktopFeatureCallout":false},"enabled":true,"featureId":"cookieBannerHandling"},{"value":{"enabledNormalBrowsing":false,"enabledPrivateBrowsing":false},"enabled":true,"featureId":"queryStripping"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enablePromo":true,"enableDetectOnly":false,"enableGlobalRules":true,"modeNormalBrowsing":0,"modePrivateBrowsing":1,"enableFirefoxDesktopUI":true,"enableGlobalRulesSubFrames":true,"enableDesktopFeatureCallout":true},"enabled":true,"featureId":"cookieBannerHandling"},{"value":{"enabledNormalBrowsing":false,"enabledPrivateBrowsing":false},"enabled":true,"featureId":"queryStripping"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-07-15","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || ((version|versionCompare('128.!') >= 0) && (region in ['AT', 'BE', 'BG', 'CY', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'IE', 'IT', 'LT', 'LU', 'LV', 'MT', 'NL', 'PL', 'PT', 'RO', 'SE', 'SI', 'SK'])))","featureIds":["cookieBannerHandling","queryStripping"],"application":"firefox-desktop","bucketConfig":{"count":1200,"start":1000,"total":10000,"namespace":"firefox-desktop-cookieBannerHandling-queryStripping-release-15","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-15T15:13:17.655398Z","schemaVersion":"1.12.0","userFacingName":"CBB EU Hold-back with Promo v2","referenceBranch":"control","proposedDuration":49,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Redo of Cookie banner blocker feature hold-back in Germany (private windows only) to include recently landed Promo UI","featureValidationOptOut":false,"id":"cbb-eu-hold-back-with-promo-v2","last_modified":1721748065962},{"slug":"cbb-us-hold-back-with-promo-v2","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enablePromo":false,"enableDetectOnly":false,"enableGlobalRules":false,"modeNormalBrowsing":0,"modePrivateBrowsing":0,"enableFirefoxDesktopUI":false,"enableGlobalRulesSubFrames":false,"enableDesktopFeatureCallout":false},"enabled":true,"featureId":"cookieBannerHandling"},{"value":{"enabledNormalBrowsing":false,"enabledPrivateBrowsing":false},"enabled":true,"featureId":"queryStripping"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enablePromo":true,"enableDetectOnly":false,"enableGlobalRules":true,"modeNormalBrowsing":0,"modePrivateBrowsing":1,"enableFirefoxDesktopUI":true,"enableGlobalRulesSubFrames":true,"enableDesktopFeatureCallout":true},"enabled":true,"featureId":"cookieBannerHandling"},{"value":{"enabledNormalBrowsing":false,"enabledPrivateBrowsing":false},"enabled":true,"featureId":"queryStripping"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-07-15","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || ((version|versionCompare('128.!') >= 0) && (region in ['US'])))","featureIds":["cookieBannerHandling","queryStripping"],"application":"firefox-desktop","bucketConfig":{"count":2100,"start":2200,"total":10000,"namespace":"firefox-desktop-cookieBannerHandling-queryStripping-release-15","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-15T15:13:31.499602Z","schemaVersion":"1.12.0","userFacingName":"CBB US Hold-back with Promo v2","referenceBranch":"control","proposedDuration":49,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Redo of Cookie banner blocker feature hold-back in Germany (private windows only) to include recently landed Promo UI","featureValidationOptOut":false,"id":"cbb-us-hold-back-with-promo-v2","last_modified":1721748017567},{"slug":"disable-redirects-for-authretries","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"redirectForAuthRetriesEnabled":false},"enabled":true,"featureId":"networkingAuth"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('128.!') >= 0)","featureIds":["networkingAuth"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-networkingAuth-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-18T19:54:04.300533Z","schemaVersion":"1.12.0","userFacingName":"Disable Redirects for Authretries","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Rollback Redirection of the http channel for Authentication retries.","featureValidationOptOut":false,"id":"disable-redirects-for-authretries","last_modified":1721332456028},{"slug":"yelp-suggestions-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"exposureResults":"rust_yelp","yelpFeatureGate":true,"showExposureResults":true,"yelpSuggestPriority":false,"yelpMinKeywordLength":4,"yelpShowLessFrequentlyCap":3},"enabled":true,"featureId":"urlbar"}]}],"outcomes":[{"slug":"firefox_suggest","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('129.*') <= 0) && (!('browser.urlbar.suggest.quicksuggest.sponsored'|preferenceIsUserSet) || 'browser.urlbar.suggest.quicksuggest.sponsored'|preferenceValue) && (version|versionCompare('128.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US'])","featureIds":["urlbar"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-urlbar-release-urlbar_firefox_suggest_sponsored_enabled-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-15T18:10:24.660155Z","schemaVersion":"1.12.0","userFacingName":"Yelp Suggestions Rollout","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Yelp suggestions","featureValidationOptOut":false,"id":"yelp-suggestions-rollout","last_modified":1721067045253},{"slug":"tab-hover-preview-beta-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"tabPreviewsEnabled":true},"enabled":true,"featureId":"tabPreview"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-06-24","targeting":"(browserSettings.update.channel == \"beta\") && (version|versionCompare('128.!') >= 0) && ((experiment.slug in activeRollouts) || ((!('browser.tabs.hoverPreview.enabled'|preferenceIsUserSet))))","featureIds":["tabPreview"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-tabPreview-beta-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-06-24T20:04:15.541398Z","schemaVersion":"1.12.0","userFacingName":"Tab Hover Preview Beta Rollout","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Enable Tab Hover Preview.","featureValidationOptOut":false,"id":"tab-hover-preview-beta-rollout","last_modified":1720535212152},{"slug":"us-review-checker-rollout-v2","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"FAKESPOT_CALLOUT_NO_OP_DUMMY","trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":2,"targeting":"true"},{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","content":{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","screens":[{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"chrome://browser/content/shopping/assets/priceTagButtonCallout.svg"},"title":{"string_id":"shopping-callout-closed-not-opted-in-revised-title"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-closed-not-opted-in-revised-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-closed-not-opted-in-revised-button","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","content":{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","screens":[{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"alt":{"string_id":"shopping-callout-not-opted-in-reminder-img-alt"},"height":"214px","imageURL":"chrome://browser/content/shopping/assets/reviewsVisualCallout.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"string_id":"shopping-callout-not-opted-in-reminder-ignore-checkbox"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"fontSize":"20px","string_id":"shopping-callout-not-opted-in-reminder-title","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-not-opted-in-reminder-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-close-button","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-open-button","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":4,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":3},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN[messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN | length - 1] | date) / 3600000 > 24","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","content":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","screens":[{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"tiles":{"data":[{"id":"fakespot-opted-out-survey-hard-to-understand","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s hard to understand"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-too-slow","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s too slow"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-accurate","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not accurate"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-helpful","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not helpful to me"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-check-reviews-myself","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"I\u2019d rather check reviews myself"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-other","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"Other"},"defaultValue":false}],"type":"multiselect","label":"Please let us know why you turned off Review Checker. Select multiple if needed.","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":"Help improve Firefox","width":"332px","layout":"survey","padding":"20","position":"callout","title_logo":{"imageURL":"chrome://branding/content/about-logo.png"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"actions":[{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":"Submit","style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress","value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2\",\"complete\":false}"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","collectSelect":true},"disabled":"hasActiveMultiSelect"}},"force_hide_steps_indicator":true},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"title":"Thanks for your feedback!","layout":"inline","position":"callout","title_logo":{"imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/706c7a85-cf23-442e-8a92-7ebc7f537375.svg"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF","dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"timeout","options":{"once":true,"interval":20000}}},{"action":{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},"params":{"type":"tourend","options":{"once":true}}}]},"force_hide_steps_indicator":true}],"backdrop":"transparent","template":"multistage","transitions":false,"tour_pref_name":"messaging-system-action.fakespot-opted-out-survey.progress","disableHistoryUpdates":true,"tour_pref_default_value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1\",\"complete\":false}"},"trigger":{"id":"preferenceObserver","params":["browser.shopping.experience2023.optedIn"]},"priority":2,"template":"feature_callout","targeting":"'browser.shopping.experience2023.optedIn' | preferenceValue == 2 && !'browser.shopping.experience2023.active' | preferenceValue && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false"}],"template":"multi"},"enabled":true,"featureId":"fxms-message-7"},{"value":{"enabled":true,"autoOpenEnabled":true},"enabled":true,"featureId":"shopping2023"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-06-25","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((version|versionCompare('127.0.1') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US']))) && ((experiment.slug in activeRollouts) || ((!('browser.shopping.experience2023.ads.enabled'|preferenceIsUserSet)) && (!('browser.shopping.experience2023.ads.exposure'|preferenceIsUserSet)) && (!('browser.shopping.experience2023.autoOpen.enabled'|preferenceIsUserSet))))","featureIds":["fxms-message-7","shopping2023"],"application":"firefox-desktop","bucketConfig":{"count":8000,"start":0,"total":10000,"namespace":"firefox-desktop-fxms-message-7-shopping2023-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-06-25T18:16:05.626760Z","schemaVersion":"1.12.0","userFacingName":"US Review Checker Rollout V2","referenceBranch":"treatment-a","proposedDuration":168,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Rollout of Review Checker.","featureValidationOptOut":false,"id":"us-review-checker-rollout-v2","last_modified":1719867536118},{"slug":"long-term-holdback-2024-h2-velocity-desktop","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"delivery","ratio":19,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{},"enabled":true,"featureId":"no-feature-firefox-desktop"}]},{"slug":"holdback","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{},"enabled":true,"featureId":"no-feature-firefox-desktop"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || ((version|versionCompare('123.!') >= 0)))","featureIds":["no-feature-firefox-desktop"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-no-feature-firefox-desktop-release-4","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-07-01T14:37:50.737442Z","schemaVersion":"1.12.0","userFacingName":"Long term holdback 2024 H2 Velocity Desktop","referenceBranch":"holdback","proposedDuration":180,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":180,"userFacingDescription":"Long-term holdback for H2 Velocity experiments","featureValidationOptOut":false,"id":"long-term-holdback-2024-h2-velocity-desktop","last_modified":1719844747320},{"slug":"consolidated-search-configuration-row-desktop-relaunch","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"newSearchConfigEnabled":true},"enabled":true,"featureId":"search"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-05-22","targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('126.!') >= 0) && (region in ['AD', 'AE', 'AF', 'AG', 'AI', 'AL', 'AM', 'AO', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AW', 'AX', 'AZ', 'BA', 'BB', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BL', 'BM', 'BN', 'BO', 'BQ', 'BR', 'BS', 'BT', 'BV', 'BW', 'BY', 'BZ', 'CA', 'CC', 'CD', 'CF', 'CG', 'CH', 'CI', 'CK', 'CL', 'CM', 'CN', 'CO', 'CR', 'CU', 'CV', 'CW', 'CX', 'CY', 'CZ', 'DE', 'DJ', 'DK', 'DM', 'DO', 'DZ', 'EC', 'EE', 'EG', 'EH', 'ER', 'ES', 'ET', 'FI', 'FJ', 'FK', 'FM', 'FO', 'FR', 'GA', 'GB', 'GD', 'GE', 'GF', 'GG', 'GH', 'GI', 'GL', 'GM', 'GN', 'GP', 'GQ', 'GR', 'GS', 'GT', 'GU', 'GW', 'GY', 'HK', 'HM', 'HN', 'HR', 'HT', 'HU', 'ID', 'IE', 'IL', 'IM', 'IN', 'IO', 'IQ', 'IR', 'IS', 'IT', 'JE', 'JM', 'JO', 'JP', 'KE', 'KG', 'KH', 'KI', 'KM', 'KN', 'KP', 'KR', 'KW', 'KY', 'KZ', 'LA', 'LB', 'LC', 'LI', 'LK', 'LR', 'LS', 'LT', 'LU', 'LV', 'LY', 'MA', 'MC', 'MD', 'ME', 'MF', 'MG', 'MH', 'MK', 'ML', 'MM', 'MN', 'MO', 'MP', 'MQ', 'MR', 'MS', 'MT', 'MU', 'MV', 'MW', 'MX', 'MY', 'MZ', 'NA', 'NC', 'NE', 'NF', 'NG', 'NI', 'NL', 'NO', 'NP', 'NR', 'NU', 'NZ', 'OM', 'PA', 'PE', 'PF', 'PG', 'PH', 'PK', 'PL', 'PM', 'PN', 'PR', 'PS', 'PT', 'PW', 'PY', 'QA', 'RE', 'RO', 'RS', 'RU', 'RW', 'SA', 'SB', 'SC', 'SD', 'SE', 'SG', 'SH', 'SI', 'SJ', 'SK', 'SL', 'SM', 'SN', 'SO', 'SR', 'SS', 'ST', 'SV', 'SX', 'SY', 'SZ', 'TC', 'TD', 'TF', 'TG', 'TH', 'TJ', 'TK', 'TL', 'TM', 'TN', 'TO', 'TR', 'TT', 'TV', 'TW', 'TZ', 'UA', 'UG', 'UM', 'UY', 'UZ', 'VA', 'VC', 'VE', 'VG', 'VI', 'VN', 'VU', 'WF', 'WS', 'YE', 'YT', 'ZA', 'ZM', 'ZW']) && ((experiment.slug in activeRollouts) || ((!('browser.search.newSearchConfig.enabled'|preferenceIsUserSet)) && (!('browser.search.serpEventTelemetryCategorization.enabled'|preferenceIsUserSet)) && (!('browser.urlbar.richSuggestions.featureGate'|preferenceIsUserSet)) && (!('browser.urlbar.trending.featureGate'|preferenceIsUserSet)) && (!('browser.urlbar.trending.maxResultsNoSearchMode'|preferenceIsUserSet)) && (!('browser.urlbar.trending.requireSearchMode'|preferenceIsUserSet))))","featureIds":["search"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-search-release-search_rollout_1-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-05-22T21:06:38.898690Z","schemaVersion":"1.12.0","userFacingName":"Consolidated Search Configuration (ROW) [Desktop] Relaunch","referenceBranch":"rollout","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Consolidated search configuration for desktop and mobile Firefox","featureValidationOptOut":false,"id":"consolidated-search-configuration-row-desktop-relaunch","last_modified":1717509912782},{"slug":"recommend-add-ons-staff-pick-relaunch-treatment-a-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"id":"ADDONS_STAFF_PICK","groups":["cfr"],"content":{"id":"ADDONS_STAFF_PICK","screens":[{"id":"ADDONS_STAFF_PICK_A","anchors":[{"selector":"#unified-extensions-button","arrow_width":"26.9","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"}}],"content":{"title":{"raw":"Give your browsing a boost","marginInline":"0 48px"},"width":"310px","padding":16,"position":"callout","subtitle":{"raw":"Make browsing faster, safer, or just plain fun with Firefox add-ons. See what our staff recommends!","paddingInline":"34px 0"},"title_logo":{"width":"24px","height":"24px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/173414e1-81f7-4612-b868-e78df0557011.svg","marginInline":"4px 14px"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"14px 0","marginInline":"0 14px"},"primary_button":{"label":{"raw":"Explore add-ons"},"action":{"data":{"args":"https://addons.mozilla.org/en-US/firefox/collections/4757633/25c2b44583534b3fa8fea977c419cd/?page=1&collection_sort=-added","where":"tabshifted"},"type":"OPEN_URL","dismiss":true}}}}],"backdrop":"transparent","template":"multistage","transitions":false},"trigger":{"id":"defaultBrowserCheck"},"template":"feature_callout","frequency":{"lifetime":1},"targeting":"!screenImpressions.AW_AMO_INTRODUCE && !willShowDefaultPrompt && !activeNotifications && source == 'newtab' && !isFirstStartup"},"enabled":true,"featureId":"fxms-message-1"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || (((currentDate|date - profileAgeCreated|date) / 86400000 < 28) && (version|versionCompare('123.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && ((enrollmentsMap['recommend-add-ons-staff-pick'] == 'treatment-a') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick'] == 'treatment-b') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick'] == 'treatment-c') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick'] == 'treatment-d') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick-relaunch'] == 'treatment-a') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick-relaunch'] == 'treatment-b') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick-relaunch'] == 'treatment-c') == false) && ((enrollmentsMap['recommend-add-ons-staff-pick-relaunch'] == 'treatment-d') == false) && (enrollmentsMap['long-term-holdback-2024-h1-velocity-desktop'] == 'delivery')))","featureIds":["fxms-message-1"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-fxms-message-1-release-early_day_user_v2-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-05-28T21:50:15.680102Z","schemaVersion":"1.12.0","userFacingName":"Recommend Add-ons - Staff pick Relaunch - Treatment A Rollout","referenceBranch":"treatment-a","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Recommending staff pick add-ons after first run.","featureValidationOptOut":false,"id":"recommend-add-ons-staff-pick-relaunch-treatment-a-rollout","last_modified":1716933026807},{"slug":"serp-categorization-and-consolidated-search-config-us-desktop-relaunch","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"newSearchConfigEnabled":true,"serpEventTelemetryCategorizationEnabled":true},"enabled":true,"featureId":"search"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-05-22","targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('126.!') >= 0) && (region in ['US']) && ((experiment.slug in activeRollouts) || ((!('browser.search.newSearchConfig.enabled'|preferenceIsUserSet)) && (!('browser.search.serpEventTelemetryCategorization.enabled'|preferenceIsUserSet)) && (!('browser.urlbar.richSuggestions.featureGate'|preferenceIsUserSet)) && (!('browser.urlbar.trending.featureGate'|preferenceIsUserSet)) && (!('browser.urlbar.trending.maxResultsNoSearchMode'|preferenceIsUserSet)) && (!('browser.urlbar.trending.requireSearchMode'|preferenceIsUserSet))))","featureIds":["search"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-search-release-search_rollout_2-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-05-22T21:08:46.809160Z","schemaVersion":"1.12.0","userFacingName":"SERP Categorization and Consolidated Search Config (US) [Desktop] Relaunch","referenceBranch":"control","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"SERP Categorization\n\nConsolidated search configuration for desktop and mobile Firefox","featureValidationOptOut":false,"id":"serp-categorization-and-consolidated-search-config-us-desktop-relaunch","last_modified":1716920347513},{"slug":"highlighting-in-pdfs-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"addHighlight":true},"enabled":true,"featureId":"pdfjs"}]}],"outcomes":[{"slug":"pdf","priority":"primary"},{"slug":"defaults_and_os_integration","priority":"secondary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((version|versionCompare('125.!') >= 0) && (('highlighting-in-pdfs' in enrollments) == false))) && ((experiment.slug in activeRollouts) || ((!('pdfjs.enableHighlightEditor'|preferenceIsUserSet))))","featureIds":["pdfjs"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-pdfjs-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-04-23T22:09:32.384223Z","schemaVersion":"1.12.0","userFacingName":"Highlighting in PDFs - Rollout","referenceBranch":"treatment","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Feature to highlight text and other content in PDFs","featureValidationOptOut":false,"id":"highlighting-in-pdfs-rollout","last_modified":1713910246532},{"slug":"showing-3rd-sponsored-tile-on-the-newtab-page-holdback","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US","fr","de","it","es-ES"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"topSitesMaxSponsored":2,"contileTopsitesPositions":"0,1","topSitesContileSovEnabled":false,"topSitesContileMaxSponsored":2,"spocTopsitesPlacementEnabled":false},"enabled":true,"featureId":"pocketNewtab"}]},{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"topSitesMaxSponsored":3,"contileTopsitesPositions":"0,1,2","topSitesContileSovEnabled":false,"topSitesContileMaxSponsored":3,"spocTopsitesPlacementEnabled":false},"enabled":true,"featureId":"pocketNewtab"}]}],"outcomes":[{"slug":"newtab_do_no_harm","priority":"primary"}],"arguments":{},"isRollout":false,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeExperiments) || ((\n 'browser.newtabpage.activity-stream.showSponsoredTopSites'|preferenceValue\n ) && (version|versionCompare('121.0.1') >= 0) && (locale in ['de', 'en-CA', 'en-GB', 'en-US', 'es-ES', 'fr', 'it']) && (region in ['DE', 'ES', 'FR', 'GB', 'IT', 'US'])))","featureIds":["pocketNewtab"],"application":"firefox-desktop","bucketConfig":{"count":300,"start":600,"total":10000,"namespace":"firefox-desktop-pocketNewtab-release-35","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-04-08T16:41:32.754288Z","schemaVersion":"1.12.0","userFacingName":"Showing 3rd sponsored tile on the newtab page (Holdback)","referenceBranch":"control","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":365,"userFacingDescription":"Experimenting to show a variable number of sponsored tiles in the \"shortcuts\" section on the newtab page.","featureValidationOptOut":false,"id":"showing-3rd-sponsored-tile-on-the-newtab-page-holdback","last_modified":1712594516937},{"slug":"review-checker-v11-experiment","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{},"enabled":true,"featureId":"featureCallout"},{"value":{"enabled":true,"autoOpenEnabled":false},"enabled":true,"featureId":"shopping2023"}]},{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"FAKESPOT_CALLOUT_NO_OP_DUMMY","trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":2,"targeting":"true"},{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","content":{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","screens":[{"id":"FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"chrome://browser/content/shopping/assets/priceTagButtonCallout.svg"},"title":{"string_id":"shopping-callout-closed-not-opted-in-revised-title"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-closed-not-opted-in-revised-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-closed-not-opted-in-revised-button","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"},{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","content":{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","screens":[{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_REMINDER","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"alt":{"string_id":"shopping-callout-not-opted-in-reminder-img-alt"},"height":"214px","imageURL":"chrome://browser/content/shopping/assets/reviewsVisualCallout.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"string_id":"shopping-callout-not-opted-in-reminder-ignore-checkbox"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"fontSize":"20px","string_id":"shopping-callout-not-opted-in-reminder-title","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"string_id":"shopping-callout-not-opted-in-reminder-subtitle","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-close-button","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"string_id":"shopping-callout-not-opted-in-reminder-open-button","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":4,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":3},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.autoOpen.enabled' | preferenceValue == true && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN[messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_AUTO_OPEN | length - 1] | date) / 3600000 > 24","skip_in_tests":"not tested in automation and might pop up unexpectedly during review checker tests"}],"template":"multi"},"enabled":true,"featureId":"featureCallout"},{"value":{"enabled":true,"autoOpenEnabled":true},"enabled":true,"featureId":"shopping2023"}]},{"slug":"treatment-b","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"FAKESPOT_CALLOUT_NO_OP_DUMMY","trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":2,"targeting":"true"},{"id":"FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT","content":{"id":"FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT","screens":[{"id":"FAKESPOT_CALLOUT_CLOSED_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/088fd2b1-e4b1-4b59-a2aa-57c6322cadcd.svg"},"title":{"raw":"One click to trustworthy reviews"},"width":"401px","position":"callout","subtitle":{"raw":"Just click the price tag icon in the address bar to get back to Review Checker.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Got it","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue < 2 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT|length && !messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_DEFAULT|length"},{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT","content":{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT","screens":[{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/865530b3-7851-44f5-aae6-ec1d0ee1f2f2.svg"},"title":{"raw":"Can you trust these reviews?","fontSize":"20px","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"raw":"Use Review Checker from Firefox to find out.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Dismiss","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"secondary_button":{"label":{"raw":"Open Review Checker","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF","dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue == 1 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT[messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT | length - 1] | date) / 3600000 > 24"},{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_CHECKBOX_V1_1","content":{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_CHECKBOX_V1_1","screens":[{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_CHECKBOX_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/865530b3-7851-44f5-aae6-ec1d0ee1f2f2.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"raw":"Don't show again"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"raw":"Can you trust these reviews?","fontSize":"20px","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"raw":"Use Review Checker from Firefox to find out.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Dismiss","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"raw":"Open Review Checker","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":2},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue == 1 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT[messageImpressions.FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT | length - 1] | date) / 3600000 > 120"},{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_V1_1","content":{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_V1_1","screens":[{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/865530b3-7851-44f5-aae6-ec1d0ee1f2f2.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"raw":"Don't show again"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"raw":"Shop with confidence","fontSize":"20px","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"raw":"Not sure if a product's reviews are real or fake? Review Checker from Firefox can help.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Dismiss","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"raw":"Open Review Checker","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":3},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT[messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT | length - 1] | date) / 3600000 > 24"}],"template":"multi"},"enabled":true,"featureId":"featureCallout"},{"value":{"enabled":true,"autoOpenEnabled":false},"enabled":true,"featureId":"shopping2023"}]},{"slug":"treatment-c","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"FAKESPOT_CALLOUT_NO_OP_DUMMY","trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":2,"targeting":"true"},{"id":"FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT","content":{"id":"FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT","screens":[{"id":"FAKESPOT_CALLOUT_CLOSED_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/088fd2b1-e4b1-4b59-a2aa-57c6322cadcd.svg"},"title":{"raw":"One click to trustworthy reviews"},"width":"401px","position":"callout","subtitle":{"raw":"Just click the price tag icon in the address bar to get back to Review Checker.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Got it","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue < 2 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT|length && !messageImpressions.FAKESPOT_CALLOUT_CLOSED_NOT_OPTED_IN_DEFAULT|length"},{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT","content":{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT","screens":[{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/865530b3-7851-44f5-aae6-ec1d0ee1f2f2.svg"},"title":{"raw":"Can you trust these reviews?","fontSize":"20px","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"raw":"Use Review Checker from Firefox to find out.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"dismiss":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Dismiss","marginBlock":"0 -8px"},"style":"secondary","action":{"dismiss":true}},"secondary_button":{"label":{"raw":"Open Review Checker","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF","dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"lifetime":1},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue == 1 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT[messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT | length - 1] | date) / 3600000 > 24"},{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_CHECKBOX_V1_1","content":{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_CHECKBOX_V1_1","screens":[{"id":"FAKESPOT_CALLOUT_PDP_OPTED_IN_CHECKBOX_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/865530b3-7851-44f5-aae6-ec1d0ee1f2f2.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"raw":"Don't show again"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"raw":"Can you trust these reviews?","fontSize":"20px","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"raw":"Use Review Checker from Firefox to find out.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Dismiss","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"raw":"Open Review Checker","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":2},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue == 1 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT[messageImpressions.FAKESPOT_CALLOUT_PDP_OPTED_IN_DEFAULT | length - 1] | date) / 3600000 > 120"},{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_V1_1","content":{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_V1_1","screens":[{"id":"FAKESPOT_CALLOUT_PDP_NOT_OPTED_IN_V1_1","anchors":[{"selector":"#shopping-sidebar-button","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"logo":{"height":"214px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/865530b3-7851-44f5-aae6-ec1d0ee1f2f2.svg"},"tiles":{"data":[{"id":"checkbox-dont-show-again","icon":{"style":{"width":"16px","height":"16px","marginInline":"0 8px"}},"type":"checkbox","label":{"raw":"Don't show again"},"style":{"alignItems":"center"},"action":{"data":{"pref":{"name":"messaging-system-action.shopping-callouts-1-block","value":true}},"type":"SET_PREF"},"defaultValue":false}],"type":"multiselect","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":{"raw":"Shop with confidence","fontSize":"20px","letterSpacing":"0"},"width":"401px","position":"callout","subtitle":{"raw":"Not sure if a product's reviews are real or fake? Review Checker from Firefox can help.","letterSpacing":"0"},"dismiss_button":{"size":"small","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true},"marginBlock":"28px 0","marginInline":"0 28px"},"primary_button":{"label":{"raw":"Dismiss","marginBlock":"0 -8px"},"style":"secondary","action":{"data":{"actions":[]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":{"raw":"Open Review Checker","marginBlock":"0 -8px"},"style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"browser.shopping.experience2023.active","value":true}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"click","selectors":"#shopping-sidebar-button"}}]}}],"backdrop":"transparent","template":"multistage","transitions":false,"disableHistoryUpdates":true},"trigger":{"id":"shoppingProductPageWithSidebarClosed"},"priority":3,"template":"feature_callout","frequency":{"custom":[{"cap":1,"period":432000000}],"lifetime":3},"targeting":"!isSidebarClosing && 'browser.shopping.experience2023.optedIn' | preferenceValue == 0 && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false && !'messaging-system-action.shopping-callouts-1-block' | preferenceValue && (currentDate | date - messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT[messageImpressions.FAKESPOT_CALLOUT_CLOSED_OPTED_IN_DEFAULT | length - 1] | date) / 3600000 > 24"},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","content":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY","screens":[{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"tiles":{"data":[{"id":"fakespot-opted-out-survey-hard-to-understand","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s hard to understand"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-too-slow","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s too slow"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-accurate","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not accurate"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-not-helpful","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"It\u2019s not helpful to me"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-check-reviews-myself","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"I\u2019d rather check reviews myself"},"randomize":true,"defaultValue":false},{"id":"fakespot-opted-out-survey-other","icon":{"style":{"marginInline":"2px 8px"}},"type":"checkbox","group":"checkboxes","label":{"raw":"Other"},"defaultValue":false}],"type":"multiselect","label":"Please let us know why you turned off Review Checker. Select multiple if needed.","style":{"alignItems":"flex-start","flexDirection":"column"}},"title":"Help improve Firefox","width":"332px","layout":"survey","padding":"20","position":"callout","title_logo":{"imageURL":"chrome://branding/content/about-logo.png"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"actions":[{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","dismiss":true,"collectSelect":true}},"secondary_button":{"label":"Submit","style":"primary","action":{"data":{"actions":[{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress","value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2\",\"complete\":false}"}},"type":"SET_PREF"}]},"type":"MULTI_ACTION","collectSelect":true},"disabled":"hasActiveMultiSelect"}},"force_hide_steps_indicator":true},{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_2","anchors":[{"selector":"#shopping-sidebar-button","arrow_width":"22.62742","panel_position":{"anchor_attachment":"bottomcenter","callout_attachment":"topright"},"no_open_on_anchor":true}],"content":{"title":"Thanks for your feedback!","layout":"inline","position":"callout","title_logo":{"imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/706c7a85-cf23-442e-8a92-7ebc7f537375.svg"},"dismiss_button":{"size":"small","label":{"aria_label":"Close"},"action":{"data":{"pref":{"name":"messaging-system-action.fakespot-opted-out-survey.progress"}},"type":"SET_PREF","dismiss":true}},"page_event_listeners":[{"action":{"dismiss":true},"params":{"type":"timeout","options":{"once":true,"interval":20000}}},{"action":{"data":{"id":"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY"},"type":"BLOCK_MESSAGE"},"params":{"type":"tourend","options":{"once":true}}}]},"force_hide_steps_indicator":true}],"backdrop":"transparent","template":"multistage","transitions":false,"tour_pref_name":"messaging-system-action.fakespot-opted-out-survey.progress","disableHistoryUpdates":true,"tour_pref_default_value":"{\"screen\":\"FAKESPOT_CALLOUT_OPTED_OUT_SURVEY_1\",\"complete\":false}"},"trigger":{"id":"preferenceObserver","params":["browser.shopping.experience2023.optedIn"]},"priority":2,"template":"feature_callout","targeting":"'browser.shopping.experience2023.optedIn' | preferenceValue == 2 && !'browser.shopping.experience2023.active' | preferenceValue && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features' | preferenceValue != false"}],"template":"multi"},"enabled":true,"featureId":"featureCallout"},{"value":{"enabled":true,"autoOpenEnabled":false},"enabled":true,"featureId":"shopping2023"}]}],"outcomes":[],"arguments":{},"isRollout":false,"probeSets":[],"startDate":"2024-03-27","targeting":"(browserSettings.update.channel == \"release\") && (addonsInfo.addons['{44df5123-f715-9146-bfaa-c6e8d4461d44}'] == null && ('browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue)) && (version|versionCompare('124.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US']) && (('review-checker-119-existing-user-profiles' in enrollments) == false) && ((enrollmentsMap['review-checker-staged-rollout-no-survey'] == 'treatment-a') == false) && (('review-checker-119-new-profiles' in enrollments) == false) && (('review-checker-119-existing-profiles' in enrollments) == false)","featureIds":["featureCallout","shopping2023"],"application":"firefox-desktop","bucketConfig":{"count":500,"start":0,"total":10000,"namespace":"firefox-desktop-featureCallout-shopping2023-release-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-03-27T16:45:57.161098Z","schemaVersion":"1.12.0","userFacingName":"Review Checker v1.1 Experiment","referenceBranch":"control","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":true,"proposedEnrollment":7,"userFacingDescription":"Testing rediscoverability updates to improve Review Checker retention.","featureValidationOptOut":false,"id":"review-checker-v11-experiment","last_modified":1712165055813},{"slug":"backgroundupdate-enable-unelevated-installations-rollout-3-release","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"enabled","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enableUpdatesForUnelevatedInstallations":true},"enabled":true,"featureId":"backgroundUpdate"}]}],"outcomes":[{"slug":"defaults_and_os_integration","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-11-22","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((os.windowsBuildNumber >= 17763) && (version|versionCompare('120.!') >= 0)))","featureIds":["backgroundUpdate"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-backgroundUpdate-release-windows_userchoice-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":null,"schemaVersion":"1.12.0","userFacingName":"BackgroundUpdate: Enable unelevated installations (Rollout) -- 3-release","referenceBranch":"enabled","proposedDuration":14,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":14,"userFacingDescription":"Update Firefox when it is not running if the application directory can be written (even without the Mozilla Maintenance Service).","featureValidationOptOut":false,"id":"backgroundupdate-enable-unelevated-installations-rollout-3-release","last_modified":1710430275986},{"slug":"phc-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"phcEnabled":true},"enabled":true,"featureId":"phc"}]}],"outcomes":[{"slug":"defaults_and_os_integration","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (!os.isMac) && (version|versionCompare('123.!') >= 0) && ((experiment.slug in activeRollouts) || ((!('memory.phc.avg_delay.first'|preferenceIsUserSet)) && (!('memory.phc.avg_delay.normal'|preferenceIsUserSet)) && (!('memory.phc.avg_delay.page_reuse'|preferenceIsUserSet)) && (!('memory.phc.enabled'|preferenceIsUserSet)) && (!('memory.phc.min_ram_mb'|preferenceIsUserSet))))","featureIds":["phc"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-phc-release-not_mac_users-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-03-14T14:46:08.572154Z","schemaVersion":"1.12.0","userFacingName":"PHC Rollout","referenceBranch":"rollout","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Roll out the Probabilistic Heap Checker in Firefox Release.","featureValidationOptOut":false,"id":"phc-rollout","last_modified":1710427572251},{"slug":"address-autofill-desktop-pref-release-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"enable-address-autofill","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"status":true},"enabled":true,"featureId":"address-autofill-feature"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('124.!') >= 0) && (region in ['CA', 'US'])","featureIds":["address-autofill-feature"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-address-autofill-feature-release-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-02-15T21:33:56.573217Z","schemaVersion":"1.12.0","userFacingName":"Address Autofill Desktop ( Pref, Release Rollout )","referenceBranch":"enable-address-autofill","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Enable address autofill feature.","featureValidationOptOut":false,"id":"address-autofill-desktop-pref-release-rollout","last_modified":1708032841230},{"slug":"address-autofill-desktop-pref-beta-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"enable-address-autofill","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"status":true},"enabled":true,"featureId":"address-autofill-feature"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"beta\") && (version|versionCompare('124.!') >= 0) && (region in ['CA', 'US'])","featureIds":["address-autofill-feature"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-address-autofill-feature-beta-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-02-15T21:33:41.568155Z","schemaVersion":"1.12.0","userFacingName":"Address Autofill Desktop ( Pref, Beta Rollout )","referenceBranch":"enable-address-autofill","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Enable address autofill feature.","featureValidationOptOut":false,"id":"address-autofill-desktop-pref-beta-rollout","last_modified":1708032826645},{"slug":"address-autofill-desktop-pref-nightly-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"nightly","endDate":null,"locales":null,"branches":[{"slug":"enable-address-autofill","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"status":true},"enabled":true,"featureId":"address-autofill-feature"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"nightly\") && (version|versionCompare('124.!') >= 0) && (region in ['CA', 'US'])","featureIds":["address-autofill-feature"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-address-autofill-feature-nightly-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-02-15T21:33:22.241114Z","schemaVersion":"1.12.0","userFacingName":"Address Autofill Desktop ( Pref, Nightly Rollout )","referenceBranch":"enable-address-autofill","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Enable address autofill feature.","featureValidationOptOut":false,"id":"address-autofill-desktop-pref-nightly-rollout","last_modified":1708032811879},{"slug":"launch-firefox-on-os-restart-treatment-a-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"treatment-a","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":true},"enabled":true,"featureId":"windowsLaunchOnLogin"}]}],"outcomes":[{"slug":"newtab_do_no_harm","priority":"secondary"},{"slug":"sponsored_tiles","priority":"secondary"},{"slug":"page_load_performance_minimal","priority":"secondary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2024-01-29","targeting":"(browserSettings.update.channel == \"release\") && ((os.isWindows && os.windowsVersion >= 10)) && (version|versionCompare('122.!') >= 0)","featureIds":["windowsLaunchOnLogin"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-windowsLaunchOnLogin-release-windows_10_plus-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-01-29T18:12:35.330724Z","schemaVersion":"1.12.0","userFacingName":"Launch Firefox on OS Restart - Treatment A Rollout","referenceBranch":"treatment-a","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Mozilla\u2019s Firefox now offers the option to set up an automatic browser launch at the time of an OS login. This will prove to be useful for those that want to get straight to browsing the web again after previously logging off/out for the day. This will also apply to scenarios where the system requires a mandatory restart due to performance and security updates or various application installations.","featureValidationOptOut":false,"id":"launch-firefox-on-os-restart-treatment-a-rollout","last_modified":1707349159150},{"slug":"device-migration-q4-spotlights-remaining-population-esr","appId":"firefox-desktop","appName":"firefox_desktop","channel":"esr","endDate":null,"locales":null,"branches":[{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","groups":["eco"],"content":{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","modal":"tab","screens":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT_BACKUP","content":{"logo":{"height":"152px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/c92a41e4-82cf-4ad5-8480-04a138bfb3cd.png"},"title":{"fontSize":"24px","string_id":"device-migration-fxa-spotlight-heavy-user-header","letterSpacing":0},"subtitle":{"fontSize":"15px","string_id":"device-migration-fxa-spotlight-heavy-user-body","lineHeight":"1.4","marginBlock":"8px 20px","letterSpacing":0,"paddingInline":"20px"},"dismiss_button":{"action":{"navigate":true}},"primary_button":{"label":{"string_id":"device-migration-fxa-spotlight-heavy-user-primary-button","paddingBlock":"4px","paddingInline":"16px"},"action":{"data":{"args":"https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/switching-devices?utm_source=spotlight-default&utm_medium=firefox-desktop&utm_campaign=migration&utm_content=dont-forget-to-backup&entrypoint=device-migration-spotlight-experiment-v2","where":"tabshifted"},"type":"OPEN_URL","navigate":true}}}}],"backdrop":"transparent","template":"multistage","transitions":true},"trigger":{"id":"defaultBrowserCheck"},"template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'startup' && !willShowDefaultPrompt && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue && !usesFirefoxSync && !hasActiveEnterprisePolicies && userMonthlyActivity[userMonthlyActivity|length - 2][1]|date >= currentDate|date - (28 * 24 * 60 * 60 * 1000) && (((currentDate|date - profileAgeCreated|date) / 86400000 >= 168) || totalBookmarksCount >= 35)"},{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","groups":["eco"],"content":{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","modal":"tab","screens":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT_PEACE","content":{"logo":{"height":"133px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/4a56d3ed-98c8-4a33-b853-b2cf7646efd8.png","marginBlock":"22px -10px"},"title":{"fontSize":"24px","string_id":"device-migration-fxa-spotlight-older-device-header","letterSpacing":0},"subtitle":{"fontSize":"15px","string_id":"device-migration-fxa-spotlight-older-device-body","lineHeight":"1.4","marginBlock":"8px 20px","letterSpacing":0,"paddingInline":"40px"},"dismiss_button":{"action":{"navigate":true}},"primary_button":{"label":{"string_id":"device-migration-fxa-spotlight-older-device-primary-button","marginBlock":"0 22px","paddingBlock":"4px","paddingInline":"16px"},"action":{"data":{"args":"https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/switching-devices?utm_source=spotlight-default&utm_medium=firefox-desktop&utm_campaign=migration&utm_content=peace-of-mind&entrypoint=device-migration-spotlight-experiment-v2","where":"tabshifted"},"type":"OPEN_URL","navigate":true}}}}],"backdrop":"transparent","template":"multistage","transitions":true},"trigger":{"id":"defaultBrowserCheck"},"template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'startup' && !willShowDefaultPrompt && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue && !usesFirefoxSync && !hasActiveEnterprisePolicies && userMonthlyActivity[userMonthlyActivity|length - 2][1]|date >= currentDate|date - (28 * 24 * 60 * 60 * 1000) && !(((currentDate|date - profileAgeCreated|date) / 86400000 >= 168) || totalBookmarksCount >= 35) && os.isWindows && os.windowsVersion >= 6.1 && os.windowsBuildNumber < 22000"},{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","groups":["eco"],"content":{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","modal":"tab","screens":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT_NEW_DEVICE","content":{"logo":{"height":"149px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/a43cd9cc-e8b2-477c-92f2-345557370de1.svg"},"title":{"fontSize":"24px","string_id":"device-migration-fxa-spotlight-getting-new-device-header-2","letterSpacing":0},"subtitle":{"fontSize":"15px","string_id":"device-migration-fxa-spotlight-getting-new-device-body-2","lineHeight":"1.4","marginBlock":"8px 20px","letterSpacing":0,"paddingInline":"40px"},"dismiss_button":{"action":{"navigate":true}},"primary_button":{"label":{"string_id":"device-migration-fxa-spotlight-getting-new-device-primary-button","paddingBlock":"4px","paddingInline":"16px"},"action":{"data":{"args":"https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/switching-devices?utm_source=spotlight-default&utm_medium=firefox-desktop&utm_campaign=migration&utm_content=new-device-in-your-future&entrypoint=device-migration-spotlight-experiment-v2","where":"tabshifted"},"type":"OPEN_URL","navigate":true}}}}],"backdrop":"transparent","template":"multistage","transitions":true},"trigger":{"id":"defaultBrowserCheck"},"template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'startup' && !willShowDefaultPrompt && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue && !usesFirefoxSync && !hasActiveEnterprisePolicies && userMonthlyActivity[userMonthlyActivity|length - 2][1]|date >= currentDate|date - (28 * 24 * 60 * 60 * 1000) && !(((currentDate|date - profileAgeCreated|date) / 86400000 >= 168) || totalBookmarksCount >= 35) && !(os.isWindows && os.windowsVersion >= 6.1 && os.windowsBuildNumber < 22000)"}],"template":"multi"},"enabled":true,"featureId":"spotlight"}]}],"outcomes":[{"slug":"spotlight_engagement","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"esr\") && ((experiment.slug in activeRollouts) || (((currentDate|date - profileAgeCreated|date) / 86400000 >= 28) && (version|versionCompare('115.7.0') >= 0)))","featureIds":["spotlight"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-spotlight-esr-existing_user-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-02-01T01:03:08.979110Z","schemaVersion":"1.12.0","userFacingName":"Device Migration Q4 Spotlights Remaining Population ESR","referenceBranch":"treatment","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Prompt to offer users support in backing up their Firefox data to seamlessly migrate to a new device.","featureValidationOptOut":false,"id":"device-migration-q4-spotlights-remaining-population-esr","last_modified":1706749394246},{"slug":"device-migration-q4-spotlights-remaining-population","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"messages":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","groups":["eco"],"content":{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","modal":"tab","screens":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT_BACKUP","content":{"logo":{"height":"152px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/c92a41e4-82cf-4ad5-8480-04a138bfb3cd.png"},"title":{"fontSize":"24px","string_id":"device-migration-fxa-spotlight-heavy-user-header","letterSpacing":0},"subtitle":{"fontSize":"15px","string_id":"device-migration-fxa-spotlight-heavy-user-body","lineHeight":"1.4","marginBlock":"8px 20px","letterSpacing":0,"paddingInline":"20px"},"dismiss_button":{"action":{"navigate":true}},"primary_button":{"label":{"string_id":"device-migration-fxa-spotlight-heavy-user-primary-button","paddingBlock":"4px","paddingInline":"16px"},"action":{"data":{"args":"https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/switching-devices?utm_source=spotlight-default&utm_medium=firefox-desktop&utm_campaign=migration&utm_content=dont-forget-to-backup&entrypoint=device-migration-spotlight-experiment-v2","where":"tabshifted"},"type":"OPEN_URL","navigate":true}}}}],"backdrop":"transparent","template":"multistage","transitions":true},"trigger":{"id":"defaultBrowserCheck"},"template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'startup' && !willShowDefaultPrompt && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue && !usesFirefoxSync && !hasActiveEnterprisePolicies && userMonthlyActivity[userMonthlyActivity|length - 2][1]|date >= currentDate|date - (28 * 24 * 60 * 60 * 1000) && (((currentDate|date - profileAgeCreated|date) / 86400000 >= 168) || totalBookmarksCount >= 35)"},{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","groups":["eco"],"content":{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","modal":"tab","screens":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT_PEACE","content":{"logo":{"height":"133px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/4a56d3ed-98c8-4a33-b853-b2cf7646efd8.png","marginBlock":"22px -10px"},"title":{"fontSize":"24px","string_id":"device-migration-fxa-spotlight-older-device-header","letterSpacing":0},"subtitle":{"fontSize":"15px","string_id":"device-migration-fxa-spotlight-older-device-body","lineHeight":"1.4","marginBlock":"8px 20px","letterSpacing":0,"paddingInline":"40px"},"dismiss_button":{"action":{"navigate":true}},"primary_button":{"label":{"string_id":"device-migration-fxa-spotlight-older-device-primary-button","marginBlock":"0 22px","paddingBlock":"4px","paddingInline":"16px"},"action":{"data":{"args":"https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/switching-devices?utm_source=spotlight-default&utm_medium=firefox-desktop&utm_campaign=migration&utm_content=peace-of-mind&entrypoint=device-migration-spotlight-experiment-v2","where":"tabshifted"},"type":"OPEN_URL","navigate":true}}}}],"backdrop":"transparent","template":"multistage","transitions":true},"trigger":{"id":"defaultBrowserCheck"},"template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'startup' && !willShowDefaultPrompt && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue && !usesFirefoxSync && !hasActiveEnterprisePolicies && userMonthlyActivity[userMonthlyActivity|length - 2][1]|date >= currentDate|date - (28 * 24 * 60 * 60 * 1000) && !(((currentDate|date - profileAgeCreated|date) / 86400000 >= 168) || totalBookmarksCount >= 35) && os.isWindows && os.windowsVersion >= 6.1 && os.windowsBuildNumber < 22000"},{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","groups":["eco"],"content":{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT","modal":"tab","screens":[{"id":"Q4_DEVICE_MIGRATION_BACKUP_SPOTLIGHT_NEW_DEVICE","content":{"logo":{"height":"149px","imageURL":"https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/ms-images/a43cd9cc-e8b2-477c-92f2-345557370de1.svg"},"title":{"fontSize":"24px","string_id":"device-migration-fxa-spotlight-getting-new-device-header-2","letterSpacing":0},"subtitle":{"fontSize":"15px","string_id":"device-migration-fxa-spotlight-getting-new-device-body-2","lineHeight":"1.4","marginBlock":"8px 20px","letterSpacing":0,"paddingInline":"40px"},"dismiss_button":{"action":{"navigate":true}},"primary_button":{"label":{"string_id":"device-migration-fxa-spotlight-getting-new-device-primary-button","paddingBlock":"4px","paddingInline":"16px"},"action":{"data":{"args":"https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/switching-devices?utm_source=spotlight-default&utm_medium=firefox-desktop&utm_campaign=migration&utm_content=new-device-in-your-future&entrypoint=device-migration-spotlight-experiment-v2","where":"tabshifted"},"type":"OPEN_URL","navigate":true}}}}],"backdrop":"transparent","template":"multistage","transitions":true},"trigger":{"id":"defaultBrowserCheck"},"template":"spotlight","frequency":{"lifetime":1},"targeting":"source == 'startup' && !willShowDefaultPrompt && 'browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue && !usesFirefoxSync && !hasActiveEnterprisePolicies && userMonthlyActivity[userMonthlyActivity|length - 2][1]|date >= currentDate|date - (28 * 24 * 60 * 60 * 1000) && !(((currentDate|date - profileAgeCreated|date) / 86400000 >= 168) || totalBookmarksCount >= 35) && !(os.isWindows && os.windowsVersion >= 6.1 && os.windowsBuildNumber < 22000)"}],"template":"multi"},"enabled":true,"featureId":"spotlight"}]}],"outcomes":[{"slug":"spotlight_engagement","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || (((currentDate|date - profileAgeCreated|date) / 86400000 >= 28) && (version|versionCompare('122.!') >= 0) && ((enrollmentsMap['device-migration-q4-spotlights'] == 'treatment-a') == false)))","featureIds":["spotlight"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-spotlight-release-existing_user-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-01-31T16:51:22.183841Z","schemaVersion":"1.12.0","userFacingName":"Device Migration Q4 Spotlights Remaining Population","referenceBranch":"treatment","proposedDuration":35,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Prompt to offer users support in backing up their Firefox data to seamlessly migrate to a new device.","featureValidationOptOut":false,"id":"device-migration-q4-spotlights-remaining-population","last_modified":1706719928349},{"slug":"product-insight-telemetry-via-server-knobs-v123-and-earlier","appId":"firefox-desktop","appName":"firefox_desktop","channel":"nightly","endDate":null,"locales":["en-US"],"branches":[{"slug":"control-rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"gleanMetricConfiguration":{"urlbar.engagement":true,"urlbar.impression":true,"urlbar.abandonment":true}},"enabled":true,"featureId":"glean"}]}],"outcomes":[{"slug":"firefox_suggest","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"nightly\") && (version|versionCompare('123.*') <= 0) && ((experiment.slug in activeRollouts) || ((version|versionCompare('114.!') >= 0) && (locale in ['en-US']) && (region in ['US'])))","featureIds":["glean"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-glean-nightly-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"publishedDate":"2024-01-31T16:48:54.049278Z","schemaVersion":"1.12.0","userFacingName":"Product Insight Telemetry via Server Knobs v123 and earlier","referenceBranch":"control-rollout","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":28,"userFacingDescription":"Testing out the data and insights capture in the awesome bar.","featureValidationOptOut":false,"id":"product-insight-telemetry-via-server-knobs-v123-and-earlier","last_modified":1706719807881},{"slug":"serp-ad-telemetry-rollout-previous-to-118","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"serpEventTelemetryEnabled":true},"enabled":true,"featureId":"search"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('118.0.2') <= 0) && (version|versionCompare('115.0.2') >= 0)","featureIds":["search"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-search-release-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"serp-ad-telemetry-rollout-previous-to-118","referenceBranch":"control","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Telemetry improvements.","featureValidationOptOut":false,"id":"serp-ad-telemetry-rollout-previous-to-118","last_modified":1705957464725},{"slug":"review-checker-continuity-rollout-post-119","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":true},"enabled":true,"featureId":"shopping2023"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ('browser.shopping.experience2023.autoActivateCount'|preferenceValue >= 1) && (version|versionCompare('119.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US'])","featureIds":["shopping2023"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-shopping2023-release-shopping_onboarding_shown-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Review Checker: Continuity rollout (post-119)","referenceBranch":"control","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Review Checker: let customers keep access to the feature","featureValidationOptOut":false,"id":"review-checker-continuity-rollout-post-119","last_modified":1701878787340},{"slug":"review-checker-staged-rollout-no-survey","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"treatment-a","ratio":4,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":true,"surveyEnabled":false},"enabled":true,"featureId":"shopping2023"}]}],"outcomes":[{"slug":"page_load_performance_minimal","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-10-24","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((addonsInfo.addons['{44df5123-f715-9146-bfaa-c6e8d4461d44}'] == null && ('browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue)) && (version|versionCompare('119.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US'])))","featureIds":["shopping2023"],"application":"firefox-desktop","bucketConfig":{"count":500,"start":0,"total":10000,"namespace":"firefox-desktop-shopping2023-release-review_checker_sidebar_recommendation-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Review Checker Staged Rollout No Survey","referenceBranch":"treatment-a","proposedDuration":100,"enrollmentEndDate":"2024-02-01","isEnrollmentPaused":false,"proposedEnrollment":100,"userFacingDescription":"Experimenting with integration of a review quality checking feature to assist customers in checking the reliability of product reviews while shopping.","featureValidationOptOut":false,"id":"review-checker-staged-rollout-no-survey","last_modified":1698684898448},{"slug":"backgroundupdate-enable-unelevated-installations-rollout-3","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"enabled","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enableUpdatesForUnelevatedInstallations":true},"enabled":true,"featureId":"backgroundUpdate"}]}],"outcomes":[{"slug":"defaults_and_os_integration","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"beta\") && ((experiment.slug in activeRollouts) || ((os.windowsBuildNumber >= 17763) && (version|versionCompare('120.!') >= 0)))","featureIds":["backgroundUpdate"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-backgroundUpdate-beta-windows_userchoice-rollout-3","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"BackgroundUpdate: Enable unelevated installations (Rollout) -- 3","referenceBranch":"enabled","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":14,"userFacingDescription":"Update Firefox when it is not running if the application directory can be written (even without the Mozilla Maintenance Service).","featureValidationOptOut":false,"id":"backgroundupdate-enable-unelevated-installations-rollout-3","last_modified":1698269674605},{"slug":"review-checker-staged-rollout-no-survey-beta","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":["en-GB","en-CA","en-US"],"branches":[{"slug":"treatment-a","ratio":4,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":true,"surveyEnabled":false},"enabled":true,"featureId":"shopping2023"}]}],"outcomes":[{"slug":"page_load_performance_minimal","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"beta\") && ((experiment.slug in activeRollouts) || ((addonsInfo.addons['{44df5123-f715-9146-bfaa-c6e8d4461d44}'] == null && ('browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features'|preferenceValue)) && (version|versionCompare('119.!') >= 0) && (locale in ['en-CA', 'en-GB', 'en-US']) && (region in ['US'])))","featureIds":["shopping2023"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-shopping2023-beta-review_checker_sidebar_recommendation-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Review Checker Staged Rollout No Survey Beta","referenceBranch":"treatment-a","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":100,"userFacingDescription":"Experimenting with integration of a review quality checking feature to assist customers in checking the reliability of product reviews while shopping.","featureValidationOptOut":false,"id":"review-checker-staged-rollout-no-survey-beta","last_modified":1698180475705},{"slug":"add-an-image-to-pdf-with-alt-text-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"boolean":true},"enabled":true,"featureId":"addAnImageInPDF"}]}],"outcomes":[{"slug":"pdf","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((version|versionCompare('119.!') >= 0) && (('add-an-image-to-pdf-with-alt-text' in enrollments) == false)))","featureIds":["addAnImageInPDF"],"application":"firefox-desktop","bucketConfig":{"count":8000,"start":0,"total":10000,"namespace":"firefox-desktop-addAnImageInPDF-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Add an Image to PDF (with Alt Text) - Rollout","referenceBranch":"control","proposedDuration":100,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"One of the important features users need when managing their PDF files is adding an image. Users want an easy way to add an image to their PDF documents that they can easily resize and move around the document. This experiment measures the impact of launching this feature for Firefox users and if that impacts their usage in any way. Specifically, we are trying to understand the impact on Firefox Daily Active Users (DAU) as a result of launching this feature.","featureValidationOptOut":false,"id":"add-an-image-to-pdf-with-alt-text-rollout","last_modified":1697737684495},{"slug":"backgroundupdate-enable-unelevated-installations-rollout-3-nightly","appId":"firefox-desktop","appName":"firefox_desktop","channel":"nightly","endDate":null,"locales":null,"branches":[{"slug":"enabled","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enableUpdatesForUnelevatedInstallations":true},"enabled":true,"featureId":"backgroundUpdate"}]}],"outcomes":[{"slug":"defaults_and_os_integration","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"nightly\") && ((experiment.slug in activeRollouts) || ((os.windowsBuildNumber >= 17763) && (version|versionCompare('120.!') >= 0)))","featureIds":["backgroundUpdate"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-backgroundUpdate-nightly-windows_userchoice-rollout-2","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"BackgroundUpdate: Enable unelevated installations (Rollout) -- 3-nightly","referenceBranch":"enabled","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":14,"userFacingDescription":"Update Firefox when it is not running if the application directory can be written (even without the Mozilla Maintenance Service).","featureValidationOptOut":false,"id":"backgroundupdate-enable-unelevated-installations-rollout-3-nightly","last_modified":1697560443940},{"slug":"relay-integration-into-firefox-118-release-for-all-fxa-and-autofill-users","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"enable-relay-integration","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"firefoxRelayIntegration":true},"enabled":true,"featureId":"password-autocomplete"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-10-05","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((!((\"9ebfe2c2f9ea3c58\" in attachedFxAOAuthClients|mapToProperty(\"id\"))) && isFxAEnabled && usesFirefoxSync) && (version|versionCompare('118.!') >= 0)))","featureIds":["password-autocomplete"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-password-autocomplete-release-not_relay_user-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Relay integration into Firefox 118+ Release for all FXA and autofill users","referenceBranch":"enable-relay-integration","proposedDuration":730,"enrollmentEndDate":"2023-10-12","isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This rollout gives Firefox Account users the ability to make Relay email masks directly in the browser.","featureValidationOptOut":false,"id":"relay-integration-into-firefox-118-release-for-all-fxa-and-autofill-users","last_modified":1696956558970},{"slug":"relay-integration-into-firefox-release-for-all-fxa-users","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"enable-relay-integration","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"firefoxRelayIntegration":true},"enabled":true,"featureId":"password-autocomplete"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-08-29","targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((!((\"9ebfe2c2f9ea3c58\" in attachedFxAOAuthClients|mapToProperty(\"id\"))) && isFxAEnabled && usesFirefoxSync && (addressesSaved == 0)) && (version|versionCompare('117.!') >= 0)))","featureIds":["password-autocomplete"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-password-autocomplete-release-not_relay_user_no_autofill_addresses-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Relay integration into Firefox Release for all FXA users","referenceBranch":"enable-relay-integration","proposedDuration":730,"enrollmentEndDate":"2023-09-05","isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"This rollout gives Firefox Account users the ability to make Relay email masks directly in the browser.","featureValidationOptOut":false,"id":"relay-integration-into-firefox-release-for-all-fxa-users","last_modified":1696518424150},{"slug":"extensions-migration-in-import-wizard-116-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"control","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"useNewWizard":true,"showImportAll":true,"migrateExtensions":true,"showPreferencesEntrypoint":true},"enabled":true,"featureId":"migrationWizard"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (!((currentDate|date - profileAgeCreated|date) / 3600000 <= 24)) && (version|versionCompare('116.!') >= 0)","featureIds":["migrationWizard"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-migrationWizard-release-not_new_profile_created-rollout-3","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Extensions Migration in Import Wizard - 117+","referenceBranch":"control","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":365,"userFacingDescription":"This rollout makes extension migration available to users migrating from Chrome to Firefox.","featureValidationOptOut":false,"id":"extensions-migration-in-import-wizard-116-rollout","last_modified":1694448604536},{"slug":"upgrade-spotlight-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"","endDate":null,"locales":null,"branches":[{"slug":"treatment","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"enabled":false},"enabled":true,"featureId":"upgradeDialog"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-09-01","targeting":"(version|versionCompare('105.!') >= 0)","featureIds":["upgradeDialog"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-upgradeDialog-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Upgrade Spotlight Rollout","referenceBranch":"treatment","proposedDuration":1,"enrollmentEndDate":"2023-09-02","isEnrollmentPaused":false,"proposedEnrollment":1,"userFacingDescription":"Experimenting on onboarding content when you upgrade Firefox.","featureValidationOptOut":false,"id":"upgrade-spotlight-rollout","last_modified":1693931149978},{"slug":"csv-import-release-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"locales":null,"branches":[{"slug":"enable-csv-import","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"csvImport":true},"enabled":true,"featureId":"cm-csv-import"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && ((experiment.slug in activeRollouts) || ((version|versionCompare('116.!') >= 0)))","featureIds":["cm-csv-import"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-cm-csv-import-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"CSV Import (Release Rollout)","referenceBranch":"enable-csv-import","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":1,"userFacingDescription":"This rollout enables users to import logins from a CSV file from the about:logins page.","featureValidationOptOut":false,"id":"csv-import-release-rollout","last_modified":1691697765056},{"slug":"csv-import-beta-rollout","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"enable-csv-import","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"csvImport":true},"enabled":true,"featureId":"cm-csv-import"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"beta\") && ((experiment.slug in activeRollouts) || ((version|versionCompare('116.!') >= 0)))","featureIds":["cm-csv-import"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-cm-csv-import-beta-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"CSV Import (Beta Rollout)","referenceBranch":"enable-csv-import","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":1,"userFacingDescription":"This rollout enables users to import logins from a CSV file from the about:logins page.","featureValidationOptOut":false,"id":"csv-import-beta-rollout","last_modified":1691434053352},{"slug":"csv-import","appId":"firefox-desktop","appName":"firefox_desktop","channel":"nightly","endDate":null,"locales":null,"branches":[{"slug":"enable-csv-import","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"csvImport":true},"enabled":true,"featureId":"cm-csv-import"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"nightly\") && ((experiment.slug in activeRollouts) || ((version|versionCompare('116.!') >= 0)))","featureIds":["cm-csv-import"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-cm-csv-import-nightly-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"CSV Import (Nightly Rollout)","referenceBranch":"enable-csv-import","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":1,"userFacingDescription":"This rollout enables users to import logins from a CSV file from the about:logins page.","featureValidationOptOut":false,"id":"csv-import","last_modified":1691076230742},{"slug":"relay-integration-into-firefox-beta-for-all-fxa-users","appId":"firefox-desktop","appName":"firefox_desktop","channel":"beta","endDate":null,"locales":null,"branches":[{"slug":"enable-relay-integration","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"firefoxRelayIntegration":true},"enabled":true,"featureId":"password-autocomplete"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-07-11","targeting":"(browserSettings.update.channel == \"beta\") && ((experiment.slug in activeRollouts) || ((!((\"9ebfe2c2f9ea3c58\" in attachedFxAOAuthClients|mapToProperty(\"id\"))) && isFxAEnabled && usesFirefoxSync) && (version|versionCompare('116.!') >= 0)))","featureIds":["password-autocomplete"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-password-autocomplete-beta-not_relay_user-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Relay integration into Firefox Beta for all FXA users","referenceBranch":"enable-relay-integration","proposedDuration":365,"enrollmentEndDate":"2023-07-12","isEnrollmentPaused":false,"proposedEnrollment":1,"userFacingDescription":"This rollout gives Firefox Account users the ability to make Relay email masks directly in the browser.","featureValidationOptOut":false,"id":"relay-integration-into-firefox-beta-for-all-fxa-users","last_modified":1689348286434},{"slug":"relay-integration-into-firefox-nightly-for-all-fxa-users","appId":"firefox-desktop","appName":"firefox_desktop","channel":"nightly","endDate":null,"locales":null,"branches":[{"slug":"enable-relay-integration","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"firefoxRelayIntegration":true},"enabled":true,"featureId":"password-autocomplete"}]}],"outcomes":[],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"nightly\") && ((experiment.slug in activeRollouts) || ((!((\"9ebfe2c2f9ea3c58\" in attachedFxAOAuthClients|mapToProperty(\"id\"))) && isFxAEnabled && usesFirefoxSync) && (version|versionCompare('116.!') >= 0)))","featureIds":["password-autocomplete"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-password-autocomplete-nightly-not_relay_user-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Relay integration into Firefox Nightly for all FXA users","referenceBranch":"enable-relay-integration","proposedDuration":365,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":1,"userFacingDescription":"This rollout gives Firefox Account users the ability to make Relay email masks directly in the browser.","featureValidationOptOut":false,"id":"relay-integration-into-firefox-nightly-for-all-fxa-users","last_modified":1688756404008},{"slug":"product-insight-telemetry-via-server-knobs-rollout-release","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"branches":[{"slug":"control-rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"gleanMetricConfiguration":{"urlbar.engagement":true,"urlbar.impression":true,"urlbar.abandonment":true}},"enabled":true,"featureId":"glean"}]}],"outcomes":[{"slug":"firefox_suggest","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"release\") && (version|versionCompare('114.!') >= 0) && (locale in ['en-US']) && (region in ['US'])","featureIds":["glean"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-glean-release-no_targeting-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Product Insight Telemetry via Server Knobs - Rollout - Release","referenceBranch":"control-rollout","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":28,"userFacingDescription":"Testing out the data and insights capture in the awesome bar.","featureValidationOptOut":false,"id":"product-insight-telemetry-via-server-knobs-rollout-release","last_modified":1686070786118},{"slug":"persist-search-term-rollout-phase-1","appId":"firefox-desktop","appName":"firefox_desktop","channel":"release","endDate":null,"branches":[{"slug":"control-rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"showSearchTermsFeatureGate":true},"enabled":true,"featureId":"urlbar"}]}],"outcomes":[{"slug":"firefox_suggest","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":"2023-05-10","targeting":"(browserSettings.update.channel == \"release\") && ('google' in searchEngines.current ||searchEngines.current == 'bing' ||searchEngines.current == 'ddg') && (version|versionCompare('113.!') >= 0) && (locale in ['en-US']) && (region in ['US'])","featureIds":["urlbar"],"application":"firefox-desktop","bucketConfig":{"count":4500,"start":5000,"total":10000,"namespace":"firefox-desktop-urlbar-release-has_google_bing_or_ddg_as_current_default_search_engine-rollout-1","randomizationUnit":"normandy_id"},"localizations":null,"schemaVersion":"1.12.0","userFacingName":"Persist Search Term Rollout (Phase 1)","referenceBranch":"control-rollout","proposedDuration":60,"enrollmentEndDate":"2023-05-24","isEnrollmentPaused":false,"proposedEnrollment":14,"userFacingDescription":"Testing out a prompt and having the search terms stay in the awesome bar.","featureValidationOptOut":false,"id":"persist-search-term-rollout-phase-1","last_modified":1684527280822},{"slug":"rollout-100-experiment-for-additional-metrics-for-product-insights-new","appId":"firefox-desktop","appName":"firefox_desktop","channel":"nightly","endDate":null,"branches":[{"slug":"control-rollout","ratio":1,"feature":{"value":{},"enabled":false,"featureId":"this-is-included-for-desktop-pre-95-support"},"features":[{"value":{"searchEngagementTelemetryEnabled":true},"enabled":true,"featureId":"urlbar"}]}],"outcomes":[{"slug":"firefox_suggest","priority":"primary"}],"arguments":{},"isRollout":true,"probeSets":[],"startDate":null,"targeting":"(browserSettings.update.channel == \"nightly\") && (version|versionCompare('111.!') >= 0) && (locale in ['en-US']) && (region in ['US'])","featureIds":["urlbar"],"application":"firefox-desktop","bucketConfig":{"count":10000,"start":0,"total":10000,"namespace":"firefox-desktop-urlbar-nightly-no_targeting-rollout-2","randomizationUnit":"normandy_id"},"schemaVersion":"1.10.0","userFacingName":"Rollout - 100% - Experiment for Additional Metrics for Product Insights - New","referenceBranch":"control-rollout","proposedDuration":28,"enrollmentEndDate":null,"isEnrollmentPaused":false,"proposedEnrollment":7,"userFacingDescription":"Testing out the data and insights capture in the awesome bar.","featureValidationOptOut":false,"id":"rollout-100-experiment-for-additional-metrics-for-product-insights-new","last_modified":1678377248483}]}FE5fԳfԳGFfԿ{a,:https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/nimbus-desktop-experiments/changeset?_expected=1725048161144strongly-framed1security-infoFnhllAKWRHGAlo+ESXykKAAAAAAAAAAAwAAAAAAAAEaphjojH6pBabDSgSnsfLHeAAAAAgAAAAAAAAAAAAAAAAAAAAEAOQFmCjImkVxP+7sgiYWmMt8FvcOXmlQiTNWFiWlrbpbqgwAAAAAAAAVjMIIFXzCCBEegAwIBAgISBF160rQCiPHQRv/2iMFOCwu1MA0GCSqGSIb3DQEBCwUAMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQDEwNSMTAwHhcNMjQwODE0MjA1ODUxWhcNMjQxMTEyMjA1ODUwWjAmMSQwIgYDVQQDExtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD02udwyI82qmXeZDE+HqPh1Lchntube6dMPfbOyqN/xWb9Qjuk/TED8EKx+HgUFYwk2L2BLDdYlfbncWqhX6JEG5R7K62rsoFx0J+FGEWHxELN+9mbXxPkXmuPBxGlbgUwoCjHazB0Jyx88NerF/42HjUXVMh8vRTNeRFP4/MmqsOMdus1+IQO+RR8pe8tYvNairi7inclAjcx3pZdO623AcJBIfivEZU+3gHHCQwraXgT2g24QdJ2Kg9FwIQIEk3dRR5IGQBkC2SHWUB+zp0gbRhc+i7ObnKFwkWsZ3WMpINBMLS5dml61sehg6PIn0KRKieOAuvMdggGGmDqaNavAgMBAAGjggJ4MIICdDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFApErmZV30V/TzGSCq3VvjpmjG+kMB8GA1UdIwQYMBaAFLu8w0el5LypxsOkcgwQjaI14cjoMFcGCCsGAQUFBwEBBEswSTAiBggrBgEFBQcwAYYWaHR0cDovL3IxMC5vLmxlbmNyLm9yZzAjBggrBgEFBQcwAoYXaHR0cDovL3IxMC5pLmxlbmNyLm9yZy8wfwYDVR0RBHgwdoIlZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbYIwcHJvZC5yZW1vdGUtc2V0dGluZ3MucHJvZC53ZWJzZXJ2aWNlcy5tb3pnY3AubmV0ghtyZW1vdGUtc2V0dGluZ3MubW96aWxsYS5vcmcwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEEBgorBgEEAdZ5AgQCBIH1BIHyAPAAdgDf4VbrqgWvtZwPhnGNqMAyTq5W2W6n9aVqAdHBO75SXAAAAZFS5UCOAAAEAwBHMEUCIQCqmzdk+PD84Uo3Ou7w7Uz0UdxUCwlgWsh9Rv9QQ118XgIgf3je5lxNXNOEGQNBB3dKZX8UgQbmJsKleVxOCbi5MgIAdgBIsONr2qZHNA/lagL6nTDrHFIBy1bdLIHZu7+rOdiEcwAAAZFS5UHpAAAEAwBHMEUCID1D4ddS7Cdqxe1FtTwKpt0XCqvaXrmi1et5GcI6sDLkAiEAmT/uptJ5PpKw+7cUc1i+GLXRmg5LoutT0AhrBTLkGzwwDQYJKoZIhvcNAQELBQADggEBAM556F1VoluyQNrbPeLyAwTdmHgG4zR/SE82/ywMgjEBQPjU7he1P1yPbMxZIBcS69DOHMbOvKEj01tByNI37NIX5MfKYAfkAn5gMDc1dJx5maOYOSP+D0hK+RhulZDBFzFULh92fUlpl79cdF2EMyAZ72L2pq0/rbk6z/23dQPM9Cwx2d6fFuUzY7McPw8Bdc+jN/Quka2w29X9NeguGplUK4m55lvUduLSlpa+B+v7Q+B5Lk7HXq3rvVlSjO3NXbWtpoPIy8QQnW1nieXJMLUEFFHOEk1Nk6NdFwo2Ixb1Jfm+NMa85/tmzOMtRsU1wmFxbFpF6OvA7KjeUjT3Hp3ALwADAAAAAAABAQAAAAAAAAZ4MjU1MTkAAAAOUlNBLVBTUy1TSEEyNTYAA2YKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABWMwggVfMIIER6ADAgECAhIEXXrStAKI8dBG//aIwU4LC7UwDQYJKoZIhvcNAQELBQAwMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDAeFw0yNDA4MTQyMDU4NTFaFw0yNDExMTIyMDU4NTBaMCYxJDAiBgNVBAMTG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPTa53DIjzaqZd5kMT4eo+HUtyGe25t7p0w99s7Ko3/FZv1CO6T9MQPwQrH4eBQVjCTYvYEsN1iV9udxaqFfokQblHsrrauygXHQn4UYRYfEQs372ZtfE+Rea48HEaVuBTCgKMdrMHQnLHzw16sX/jYeNRdUyHy9FM15EU/j8yaqw4x26zX4hA75FHyl7y1i81qKuLuKdyUCNzHell07rbcBwkEh+K8RlT7eAccJDCtpeBPaDbhB0nYqD0XAhAgSTd1FHkgZAGQLZIdZQH7OnSBtGFz6Ls5ucoXCRaxndYykg0EwtLl2aXrWx6GDo8ifQpEqJ44C68x2CAYaYOpo1q8CAwEAAaOCAngwggJ0MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUCkSuZlXfRX9PMZIKrdW+OmaMb6QwHwYDVR0jBBgwFoAUu7zDR6XkvKnGw6RyDBCNojXhyOgwVwYIKwYBBQUHAQEESzBJMCIGCCsGAQUFBzABhhZodHRwOi8vcjEwLm8ubGVuY3Iub3JnMCMGCCsGAQUFBzAChhdodHRwOi8vcjEwLmkubGVuY3Iub3JnLzB/BgNVHREEeDB2giVmaXJlZm94LnNldHRpbmdzLnNlcnZpY2VzLm1vemlsbGEuY29tgjBwcm9kLnJlbW90ZS1zZXR0aW5ncy5wcm9kLndlYnNlcnZpY2VzLm1vemdjcC5uZXSCG3JlbW90ZS1zZXR0aW5ncy5tb3ppbGxhLm9yZzATBgNVHSAEDDAKMAgGBmeBDAECATCCAQQGCisGAQQB1nkCBAIEgfUEgfIA8AB2AN/hVuuqBa+1nA+GcY2owDJOrlbZbqf1pWoB0cE7vlJcAAABkVLlQI4AAAQDAEcwRQIhAKqbN2T48PzhSjc67vDtTPRR3FQLCWBayH1G/1BDXXxeAiB/eN7mXE1c04QZA0EHd0plfxSBBuYmwqV5XE4JuLkyAgB2AEiw42vapkc0D+VqAvqdMOscUgHLVt0sgdm7v6s52IRzAAABkVLlQekAAAQDAEcwRQIgPUPh11LsJ2rF7UW1PAqm3RcKq9peuaLV63kZwjqwMuQCIQCZP+6m0nk+krD7txRzWL4YtdGaDkui61PQCGsFMuQbPDANBgkqhkiG9w0BAQsFAAOCAQEAznnoXVWiW7JA2ts94vIDBN2YeAbjNH9ITzb/LAyCMQFA+NTuF7U/XI9szFkgFxLr0M4cxs68oSPTW0HI0jfs0hfkx8pgB+QCfmAwNzV0nHmZo5g5I/4PSEr5GG6VkMEXMVQuH3Z9SWmXv1x0XYQzIBnvYvamrT+tuTrP/bd1A8z0LDHZ3p8W5TNjsxw/DwF1z6M39C6RrbDb1f016C4amVQribnmW9R24tKWlr4H6/tD4HkuTsdereu9WVKM7c1dta2mg8jLxBCdbWeJ5ckwtQQUUc4STU2To10XCjYjFvUl+b40xrzn+2bM4y1GxTXCYXFsWkXo68DsqN5SNPcenWYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABQkwggUFMIIC7aADAgECAhBLqFKT95ovonMGS6gEjXXQMA0GCSqGSIb3DQEBCwUAME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMB4XDTI0MDMxMzAwMDAwMFoXDTI3MDMxMjIzNTk1OVowMzELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxDDAKBgNVBAMTA1IxMDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM9X5ebEVBLttEf+ySdYdkZQKIwdPojfBZ3VtRgpvd21Wr/69s6jvq8AIUtiWlo8AS/FWAP2if+OEUPrwbXgFAeWj28f1+e6gTkJdWW3wq8YWzcmKOej9AcrbRr/q1i8la5A/+nLV8S1W394DRhhvBfnVMa7SZHNbhjRgIXupmU2vHTqvFBM6vwh8zgWk5S6sNNrOAbNFhJ6ylJ1yK12ssKcXZhFXG9he8Yt7jwTUoYB2VfmOBzfjbUfkpGa50oczEWoclXwsOajB+z9pxtmnj9Ii3GEcVjJOvrvXvJbRCs8dOePskfBB2rNmrcNlvcSgSZRVArsYfb39eLyisiVDY0CAwEAAaOB+DCB9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLu8w0el5LypxsOkcgwQjaI14cjoMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAEDDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5jci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQCSsedBN+t5nYHmzeIl4Tog6ZBElaOBXM/DXf29oHDVsZYoIgvS8ijPDOfU5kOMJCIdwUKS0Qmvn0v0yHBPIBaxWt0B9h/4H2FrFCewco1jru7izkvPN927o9TN561Qrb2/4+w+YjZwmTGn6I3d6mLiEq71nNQ9LAyq0Jx5vuo9XERuljFjWn3Wfk8koEsFf15v0tTqXzNLE9ZXtsreUbhdowmCdP3HeJ6zuawW2korlsO2i2KP+XQZop4D3ulvm7AP0qBa9oVcwgS3yNVOMsS/BF28Kfb3gY8MXTxTyUCQi/u2CGW5pCHVCeUThIQ3gs4QKPx2wgYlekZSTdpTcqQnP2JwrL5pSAD7Zw/bW6Ho1wMhLdfJ9plCOYND33cKEgjxJda6lBlUGIilxY7hGpmTeWvsHPkxQLDMMgDfn17ntJKrkIKRjQ3gHpW6WTsuS1/Ct0Y1UjkGwL2qrFLBIqBEl5n3DKAhp6FscUcWFwFowMqmJmUEfLOuyeeUVcJvmzwcqfkuxSAa8HbgvuwY1k/YJft2Eei/5iEP6OjMtban1bj3n0HPYSJGaoO2aJcufOpOldsj6y7IKyiEpGDpSfRELjv5ymJXAeJdkBb5yfx6I0iOptWBcvEo+l3O++1Oc4+ULtJBlJiZ26evcF/1vvsCIL9mJ2y0rfp1EgsrPs4DnmYKMiaRXE/7uyCJhaYy3wW9w5eaVCJM1YWJaWtuluqDAAAAAAAABW8wggVrMIIDU6ADAgECAhEAghDPsNJA41lEY+C7Y4KLADANBgkqhkiG9w0BAQsFADBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0xNTA2MDQxMTA0MzhaFw0zNTA2MDQxMTA0MzhaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgxMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAregkc/QUN/ObnitXKByHvty33ziQjG485legePd1wqL+9Wpu9gBPKNveaIZsRJO2sWP9FBJrvx/S6jGbIX7RMzy6SPXded+zuP8S8SGaS8GKhnFpSmZmbI9+PHC/rSkiBvPkwOaAruJLj7eZfpQDn9NHl3yZSCNT6DiuTwpvgy7RSVeMgHS22i/QOI17A3AhG3XyMDz6j67d2mOr6xZPwo4RS37PC+j/tXcu9LJ7SuBMEiUMcI0DKaDhUyTsE9nuGb8Qs0qMP4mjYVHerIcHlPRjcewu4m9bmIHhiVw0eWx27zuQYnnm26SaLybF0BDhDt7ZEI4W+7f3qPfH5QIHmI82CJXn4jeWDTZ1nvsOcrEdm7wD+UkF2IHdBbQq1kHprAF2lQoP2N/VvRIfNS8oF2zSmMGoCWR3bkc3us6sWV5onX9y1onFBkEpPlk+3Sb1JMkRp1qjTEAfRqGZtac6UW6GO559cqcSBXhZ7T5ReBULA4+N0C8Fsj57ShxLcwUS/Mbq4FATfEOTdLPKdOeOHwEI0DDUW3E2tAe6wTAwXEi3gjuYpn1giqKjKYLMur2DBBuigwNBodYF8RvCtvCofIY7RqhIKojcdpp2vx9qpT0Zj+s482TeyCsNCij/99viFULUItAnXeF5/hjncIitTubZizrG3SdRbv+8ZPUzQ08CAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHm0WeZ7tuXkAXOACIjIGlj26ZtuMA0GCSqGSIb3DQEBCwUAA4ICAQBVH1ipvLKoUNAMsdgaaSAnKQisYXVcim74guVpL9X2Vku5uHMQWdMhl37nTHH7stJgrTmoC+oXIVaF8VAOWevO4FnpuskV74adj4SA9uTpkZDcF5tiG0XwZpXSfG/C6jvvH8/L1q4n8amwyK79fX6a+iIE6//Zf+qRKyKxFw6P8oo0W1jY/AHJVLm4JsyKiDOJTC2EPILf7pZXBbosu/fEt8dOO4K+Mcgic3OS0cKApDk5EDMjgkw8n4ayVZgdvimGjCKbnuJrO1c6gnBN3AnHicsKB01s6F2Oye/Oq8e7tStORdZK0CbM5XLKCGqlleMVofek7cksX6X7/6woAi6+13u743F7kBbTB15GU3w3B0KM08SWnNWZtSrglRqASK5MOQfOzEekUpUrurj7rdIzU33lHU1t1aGxx0Jv5kAnNVyjKLcHjeeNM5DnI5/7UJx5bEbVtBWzlm5+mwyWOrhSLT/WW+H7CMKE/iSoo4narGrhGCqxqENhW9Mf3DuNdvIt6I113xczbD1T+3vLQV//3KLQYTjhlrisXYs313XVM8CZEa6dQcFydYS+AkFCX2ckSJTRmye+Bz+5uE+BdFHherftnSPivuDVKAQTPDEDnt16bI/GBxjGf95Hjj8ongQGz6VUNHe97Imb6RdD31vbX/6OHleizUCdfmIi2t4YJwAAAAEAAAACaDIAAQAAAABQYW5vbjpiZUNvbnNlcnZhdGl2ZTp0bHNmbGFnczB4MDAwMDAwMDA6ZmlyZWZveC5zZXR0aW5ncy5zZXJ2aWNlcy5tb3ppbGxhLmNvbTo0NDMBAA==request-methodGETresponse-headHTTP/2 200 -server: nginx -content-length: 272548 -access-control-allow-origin: * -access-control-expose-headers: Alert, Content-Type, Retry-After, Backoff, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:24:43 GMT -age: 603 -last-modified: Fri, 30 Aug 2024 20:02:41 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -original-response-headersserver: nginx -content-length: 272548 -access-control-allow-origin: * -access-control-expose-headers: Alert, Content-Type, Retry-After, Backoff, Content-Length -x-content-type-options: nosniff -content-security-policy: default-src 'none'; frame-ancestors 'none'; base-uri 'none'; -strict-transport-security: max-age=31536000 -via: 1.1 google -date: Sun, 01 Sep 2024 18:24:43 GMT -age: 603 -last-modified: Fri, 30 Aug 2024 20:02:41 GMT -content-type: application/json -cache-control: public,max-age=3600 -alt-svc: clear -X-Firefox-Spdy: h2 -ctid1( \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CD4063AD344C93CB1DAFC7306CCDDC4F2B272733 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CD4063AD344C93CB1DAFC7306CCDDC4F2B272733 deleted file mode 100644 index e9bdd08..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CD4063AD344C93CB1DAFC7306CCDDC4F2B272733 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CD9111ABB156769010ACEF32838EAD9175EB6B3F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CD9111ABB156769010ACEF32838EAD9175EB6B3F deleted file mode 100644 index 5408a41..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/CD9111ABB156769010ACEF32838EAD9175EB6B3F and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D0435B453D27662C6AC03D6322996FFC2E0B6243 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D0435B453D27662C6AC03D6322996FFC2E0B6243 deleted file mode 100644 index aba63f8..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D0435B453D27662C6AC03D6322996FFC2E0B6243 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D0F48A0632B6C451791F4257697E861961F06A6F b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D0F48A0632B6C451791F4257697E861961F06A6F deleted file mode 100644 index 3720442..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D0F48A0632B6C451791F4257697E861961F06A6F +++ /dev/null @@ -1,1681 +0,0 @@ - - - - - - - - - - - - - - - - - - -
- -
- - - - - -window.__FROM_STARTUP_CACHE__ = true; -window.__STARTUP_STATE__ = { - "TopSites": { - "initialized": true, - "rows": [ - { - "isDefault": true, - "url": "https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm", - "hostname": "amazon", - "sendAttributionRequest": false, - "label": "Amazon", - "show_sponsored_label": true, - "sponsored_position": 1, - "sponsored_click_url": "https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr", - "sponsored_tile_id": 74357, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "expedia", - "sendAttributionRequest": false, - "label": "Expedia", - "show_sponsored_label": true, - "sponsored_position": 2, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy", - "sponsored_tile_id": 74925, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "ca.hotels", - "sendAttributionRequest": false, - "label": "Hotels.com", - "show_sponsored_label": true, - "sponsored_position": 3, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm", - "sponsored_tile_id": 74038, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.youtube.com/", - "hostname": "youtube", - "sendAttributionRequest": false, - "label": "YouTube", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/youtube-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/youtube-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.facebook.com/", - "hostname": "facebook", - "sendAttributionRequest": false, - "label": "Facebook", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/facebook-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/facebook-com.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.reddit.com/", - "hostname": "reddit", - "sendAttributionRequest": false, - "label": "Reddit", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/reddit-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/reddit-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.wikipedia.org/", - "hostname": "wikipedia", - "sendAttributionRequest": false, - "label": "Wikipedia", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://twitter.com/", - "hostname": "twitter", - "sendAttributionRequest": false, - "label": "Twitter", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/twitter-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/twitter-com.ico", - "typedBonus": true - } - ], - "editForm": null, - "showSearchShortcutsForm": false, - "searchShortcuts": [ - { - "keyword": "@google", - "shortURL": "google", - "url": "https://google.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/google-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/google-com.ico" - }, - { - "keyword": "@bing", - "shortURL": "bing", - "url": "https://bing.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/bing-com@2x.svg", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/bing-com.ico" - }, - { - "keyword": "@duckduckgo", - "shortURL": "duckduckgo", - "url": "https://duckduckgo.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/duckduckgo-com@2x.svg", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/duckduckgo-com.ico" - }, - { - "keyword": "@ebay", - "shortURL": "ebay", - "url": "https://ebay.com", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/ebay@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/ebay.ico" - }, - { - "keyword": "@wikipedia", - "shortURL": "wikipedia", - "url": "https://wikipedia.org", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico" - } - ], - "sov": { - "ready": true, - "positions": [ - { - "position": 1, - "assignedPartner": "amp" - }, - { - "position": 2, - "assignedPartner": "amp" - }, - { - "position": 3, - "assignedPartner": "amp" - } - ] - }, - "pref": { - "collapsed": false - } - }, - "App": { - "initialized": true, - "locale": "en-CA", - "isForStartupCache": true, - "customizeMenuVisible": false, - "links": [ - { - "isDefault": true, - "url": "https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm", - "hostname": "amazon", - "sendAttributionRequest": false, - "label": "Amazon", - "show_sponsored_label": true, - "sponsored_position": 1, - "sponsored_click_url": "https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr", - "sponsored_tile_id": 74357, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "expedia", - "sendAttributionRequest": false, - "label": "Expedia", - "show_sponsored_label": true, - "sponsored_position": 2, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy", - "sponsored_tile_id": 74925, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm", - "hostname": "ca.hotels", - "sendAttributionRequest": false, - "label": "Hotels.com", - "show_sponsored_label": true, - "sponsored_position": 3, - "sponsored_click_url": "https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984", - "sponsored_impression_url": "https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm", - "sponsored_tile_id": 74038, - "partner": "amp", - "favicon": "https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg", - "faviconSize": 200, - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.youtube.com/", - "hostname": "youtube", - "sendAttributionRequest": false, - "label": "YouTube", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/youtube-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/youtube-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.facebook.com/", - "hostname": "facebook", - "sendAttributionRequest": false, - "label": "Facebook", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/facebook-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/facebook-com.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.reddit.com/", - "hostname": "reddit", - "sendAttributionRequest": false, - "label": "Reddit", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/reddit-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/reddit-com.png", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://www.wikipedia.org/", - "hostname": "wikipedia", - "sendAttributionRequest": false, - "label": "Wikipedia", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/wikipedia-org@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/wikipedia-org.ico", - "typedBonus": true - }, - { - "isDefault": true, - "url": "https://twitter.com/", - "hostname": "twitter", - "sendAttributionRequest": false, - "label": "Twitter", - "tippyTopIcon": "chrome://activity-stream/content/data/content/tippytop/images/twitter-com@2x.png", - "smallFavicon": "chrome://activity-stream/content/data/content/tippytop/favicons/twitter-com.ico", - "typedBonus": true - } - ], - "pref": { - "collapsed": false - } - }, - "Prefs": { - "initialized": true, - "values": { - "default.sites": "https://www.youtube.com/,https://www.facebook.com/,https://www.reddit.com/,https://www.wikipedia.org/,https://www.amazon.ca/,https://twitter.com/", - "feeds.section.topstories.options": "{\"api_key_pref\":\"extensions.pocket.oAuthConsumerKey\",\"hidden\":false,\"provider_icon\":\"chrome://global/skin/icons/pocket.svg\",\"provider_name\":\"Pocket\",\"read_more_endpoint\":\"https://getpocket.com/explore/trending?src=fx_new_tab\",\"stories_endpoint\":\"https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=$apiKey&locale_lang=en-CA&feed_variant=default_spocs_on\",\"stories_referrer\":\"https://getpocket.com/recommendations\",\"topics_endpoint\":\"https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=en-CA\",\"show_spocs\":true}", - "feeds.topsites": true, - "hideTopSitesTitle": false, - "showSponsored": true, - "system.showSponsored": true, - "showSponsoredTopSites": true, - "system.showWeather": false, - "showWeather": true, - "weather.query": "", - "weather.locationSearchEnabled": true, - "weather.temperatureUnits": "c", - "weather.display": "simple", - "pocketCta": "{\"cta_button\":\"\",\"cta_text\":\"\",\"cta_url\":\"\",\"use_cta\":false}", - "showSearch": true, - "topSitesRows": 1, - "telemetry": true, - "telemetry.ut.events": false, - "telemetry.structuredIngestion.endpoint": "https://incoming.telemetry.mozilla.org/submit", - "section.highlights.includeVisited": true, - "section.highlights.includeBookmarks": true, - "section.highlights.includePocket": true, - "section.highlights.includeDownloads": true, - "section.highlights.rows": 1, - "section.topstories.rows": 1, - "sectionOrder": "topsites,topstories,highlights", - "newtabWallpapers.enabled": true, - "newtabWallpapers.v2.enabled": true, - "newtabWallpapers.highlightEnabled": false, - "newtabWallpapers.highlightDismissed": false, - "newtabWallpapers.highlightSeenCounter": 0, - "newtabWallpapers.highlightHeaderText": "", - "newtabWallpapers.highlightContentText": "", - "newtabWallpapers.highlightCtaText": "", - "newtabWallpapers.wallpaper-light": "", - "newtabWallpapers.wallpaper-dark": "", - "newtabWallpapers.wallpaper": "", - "improvesearch.noDefaultSearchTile": true, - "improvesearch.topSiteSearchShortcuts.searchEngines": "google", - "improvesearch.topSiteSearchShortcuts.havePinned": "", - "asrouter.devtoolsEnabled": false, - "discoverystream.flight.blocks": "{}", - "discoverystream.config": "{\"api_key_pref\":\"extensions.pocket.oAuthConsumerKey\",\"collapsible\":true,\"enabled\":true}", - "discoverystream.endpoints": "https://getpocket.cdn.mozilla.net/,https://firefox-api-proxy.cdn.mozilla.net/,https://spocs.getpocket.com/,https://merino.services.mozilla.com/", - "discoverystream.isCollectionDismissible": true, - "discoverystream.onboardingExperience.dismissed": false, - "discoverystream.thumbsUpDown.enabled": false, - "discoverystream.thumbsUpDown.searchTopsitesCompact": false, - "discoverystream.region-basic-layout": false, - "discoverystream.spoc.impressions": "{}", - "discoverystream.endpointSpocsClear": "https://spocs.getpocket.com/user", - "discoverystream.rec.impressions": "{}", - "discoverystream.topicSelection.enabled": false, - "showRecentSaves": true, - "feeds.aboutpreferences": true, - "feeds.newtabinit": true, - "feeds.places": true, - "feeds.prefs": true, - "feeds.sections": true, - "feeds.section.highlights": false, - "feeds.system.topstories": true, - "feeds.systemtick": true, - "feeds.telemetry": true, - "feeds.favicon": true, - "feeds.system.topsites": true, - "feeds.recommendationprovider": true, - "feeds.discoverystreamfeed": true, - "feeds.wallpaperfeed": true, - "feeds.weatherfeed": true, - "isPrivateBrowsingEnabled": true, - "platform": "macosx", - "fxa_endpoint": "https://accounts.firefox.com/", - "appUpdateChannel": "release", - "improvesearch.topSiteSearchShortcuts": true, - "mayHaveSponsoredTopSites": true, - "improvesearch.handoffToAwesomebar": true, - "featureConfig": { - "customizationMenuEnabled": null, - "topSitesContileEnabled": true - }, - "pocketConfig": { - "spocPositions": "1,5,7,11,18,20", - "spocTopsitesPositions": "2", - "contileTopsitesPositions": "0,1,2", - "spocAdTypes": "", - "spocZoneIds": "", - "spocTopsitesAdTypes": "", - "spocTopsitesZoneIds": "", - "spocTopsitesPlacementEnabled": true, - "spocSiteId": "", - "widgetPositions": "", - "hybridLayout": false, - "hideCardBackground": false, - "fourCardLayout": false, - "newFooterSection": false, - "saveToPocketCard": true, - "saveToPocketCardRegions": "", - "hideDescriptions": false, - "hideDescriptionsRegions": "", - "compactGrid": false, - "compactImages": false, - "imageGradient": false, - "titleLines": 3, - "descLines": 3, - "onboardingExperience": false, - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "recentSavesEnabled": false, - "readTime": true, - "newSponsoredLabel": false, - "sendToPocket": true, - "recsPersonalized": false, - "spocsPersonalized": true, - "topicSelectionEnabled": false, - "spocsCacheTimeout": null, - "ctaButtonSponsors": "", - "ctaButtonVariant": "", - "spocMessageVariant": "", - "regionStoriesConfig": "US,DE,CA,GB,IE,CH,AT,BE,IN,FR,IT,ES", - "regionBffConfig": "US,DE,CA,GB,IE,CH,AT,BE,IN,FR,IT,ES", - "merinoProviderEnabled": false, - "merinoProviderEndpoint": "merino.services.mozilla.com", - "regionStoriesBlock": "", - "localeListConfig": "", - "regionSpocsConfig": "US,CA,DE,GB,FR,IT,ES", - "regionWeatherConfig": "US, CA", - "localeWeatherConfig": "en-US,en-GB,en-CA", - "topSitesContileSovEnabled": true, - "pocketFeedParameters": "", - "wallpapers": true, - "wallpapersV2": true, - "weatherLocationSearch": true - }, - "logowordmark.alwaysVisible": true, - "feeds.section.topstories": true, - "discoverystream.enabled": true, - "discoverystream.sponsored-collections.enabled": false, - "discoverystream.hardcoded-basic-layout": false, - "discoverystream.personalization.enabled": true, - "discoverystream.personalization.override": false, - "discoverystream.personalization.modelKeys": "nb_model_arts_and_entertainment, nb_model_autos_and_vehicles, nb_model_beauty_and_fitness, nb_model_blogging_resources_and_services, nb_model_books_and_literature, nb_model_business_and_industrial, nb_model_computers_and_electronics, nb_model_finance, nb_model_food_and_drink, nb_model_games, nb_model_health, nb_model_hobbies_and_leisure, nb_model_home_and_garden, nb_model_internet_and_telecom, nb_model_jobs_and_education, nb_model_law_and_government, nb_model_online_communities, nb_model_people_and_society, nb_model_pets_and_animals, nb_model_real_estate, nb_model_reference, nb_model_science, nb_model_shopping, nb_model_sports, nb_model_travel", - "discoverystream.spocs-endpoint": "", - "discoverystream.spocs-endpoint-query": "", - "newNewtabExperience.colors": "#0090ED,#FF4F5F,#2AC3A2,#FF7139,#A172FF,#FFA437,#FF2A8A", - "region": "CA" - } - }, - "Dialog": { - "visible": false, - "data": {} - }, - "Sections": [ - { - "title": { - "id": "newtab-section-header-stories" - }, - "rows": [], - "enabled": true, - "id": "topstories", - "pref": { - "titleString": { - "id": "home-prefs-recommended-by-header-generic" - }, - "descString": { - "id": "home-prefs-recommended-by-description-generic" - }, - "nestedPrefs": [ - { - "name": "showSponsored", - "titleString": "home-prefs-recommended-by-option-sponsored-stories", - "icon": "icon-info", - "eventSource": "POCKET_SPOCS" - } - ], - "learnMore": { - "link": { - "href": "https://getpocket.com/firefox/new_tab_learn_more", - "id": "home-prefs-recommended-by-learn-more" - } - }, - "collapsed": false, - "feed": "feeds.section.topstories" - }, - "shouldHidePref": false, - "eventSource": "TOP_STORIES", - "icon": "chrome://global/skin/icons/pocket.svg", - "learnMore": { - "link": { - "href": "https://getpocket.com/firefox/new_tab_learn_more", - "message": { - "id": "newtab-pocket-learn-more" - } - } - }, - "compactCards": false, - "rowsPref": "section.topstories.rows", - "maxRows": 4, - "availableLinkMenuOptions": [ - "CheckBookmarkOrArchive", - "CheckSavedToPocket", - "Separator", - "OpenInNewWindow", - "OpenInPrivateWindow", - "Separator", - "BlockUrl" - ], - "emptyState": { - "message": { - "id": "newtab-empty-section-topstories-generic" - }, - "icon": "check" - }, - "shouldSendImpressionStats": true, - "dedupeFrom": [ - "highlights" - ], - "options": { - "api_key_pref": "extensions.pocket.oAuthConsumerKey", - "hidden": false, - "provider_icon": "chrome://global/skin/icons/pocket.svg", - "provider_name": "Pocket", - "read_more_endpoint": "https://getpocket.com/explore/trending?src=fx_new_tab", - "stories_endpoint": "https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=$apiKey&locale_lang=en-CA&feed_variant=default_spocs_on", - "stories_referrer": "https://getpocket.com/recommendations", - "topics_endpoint": "https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=en-CA", - "show_spocs": true - }, - "contextMenuOptions": [ - "CheckBookmarkOrArchive", - "CheckSavedToPocket", - "Separator", - "OpenInNewWindow", - "OpenInPrivateWindow", - "Separator", - "BlockUrl" - ], - "initialized": false, - "dedupeConfigurations": [ - { - "id": "topstories", - "dedupeFrom": [ - "highlights" - ] - } - ] - }, - { - "title": { - "id": "newtab-section-header-recent-activity" - }, - "rows": [], - "enabled": false, - "id": "highlights", - "pref": { - "titleString": { - "id": "home-prefs-recent-activity-header" - }, - "descString": { - "id": "home-prefs-recent-activity-description" - }, - "nestedPrefs": [ - { - "name": "section.highlights.includeVisited", - "titleString": "home-prefs-highlights-option-visited-pages" - }, - { - "name": "section.highlights.includeBookmarks", - "titleString": "home-prefs-highlights-options-bookmarks" - }, - { - "name": "section.highlights.includeDownloads", - "titleString": "home-prefs-highlights-option-most-recent-download" - }, - { - "name": "section.highlights.includePocket", - "titleString": "home-prefs-highlights-option-saved-to-pocket", - "hidden": false - } - ], - "collapsed": false, - "feed": "feeds.section.highlights" - }, - "shouldHidePref": false, - "eventSource": "HIGHLIGHTS", - "icon": "chrome://global/skin/icons/highlights.svg", - "compactCards": true, - "rowsPref": "section.highlights.rows", - "maxRows": 4, - "emptyState": { - "message": { - "id": "newtab-empty-section-highlights" - }, - "icon": "chrome://global/skin/icons/highlights.svg" - }, - "shouldSendImpressionStats": false, - "options": {}, - "initialized": false - } - ], - "Notifications": { - "showNotifications": false, - "toastCounter": 0, - "toastId": "", - "toastQueue": [] - }, - "Pocket": { - "isUserLoggedIn": null, - "pocketCta": {}, - "waitingForSpoc": true - }, - "Personalization": { - "lastUpdated": 1725216053746, - "initialized": true - }, - "DiscoveryStream": { - "config": { - "api_key_pref": "extensions.pocket.oAuthConsumerKey", - "collapsible": true, - "enabled": true - }, - "layout": [ - { - "width": 12, - "components": [ - { - "type": "TopSites", - "header": { - "title": { - "id": "newtab-section-header-topsites" - } - }, - "placement": { - "name": "sponsored-topsites", - "ad_types": [ - 3120 - ], - "zone_ids": [ - 280143 - ] - }, - "spocs": { - "probability": 1, - "prefs": [ - "showSponsoredTopSites" - ], - "positions": [ - { - "index": 2 - } - ] - }, - "properties": {} - }, - { - "type": "Message", - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "header": { - "title": { - "id": "newtab-section-header-stories" - }, - "subtitle": "", - "link_text": { - "id": "newtab-pocket-learn-more" - }, - "link_url": "https://getpocket.com/firefox/new_tab_learn_more", - "icon": "chrome://global/skin/icons/pocket.svg" - }, - "properties": { - "spocMessageVariant": "" - }, - "styles": { - ".ds-message": "margin-bottom: -20px" - } - }, - { - "type": "CardGrid", - "properties": { - "items": 21, - "hybridLayout": false, - "hideCardBackground": false, - "fourCardLayout": false, - "compactGrid": false, - "essentialReadsHeader": false, - "editorsPicksHeader": false, - "onboardingExperience": false, - "ctaButtonSponsors": [ - "" - ], - "ctaButtonVariant": "", - "spocMessageVariant": "" - }, - "widgets": { - "positions": [], - "data": [ - { - "type": "TopicsWidget" - } - ] - }, - "cta_variant": "link", - "header": { - "title": "" - }, - "placement": { - "name": "spocs", - "ad_types": [ - 3617 - ], - "zone_ids": [ - 217758, - 217995 - ] - }, - "feed": { - "embed_reference": null, - "url": "https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30" - }, - "spocs": { - "probability": 1, - "positions": [ - { - "index": 1 - }, - { - "index": 5 - }, - { - "index": 7 - }, - { - "index": 11 - }, - { - "index": 18 - }, - { - "index": 20 - } - ] - } - }, - { - "type": "Navigation", - "newFooterSection": false, - "properties": { - "alignment": "left-align", - "links": [ - { - "name": "Self improvement", - "url": "https://getpocket.com/explore/self-improvement?utm_source=pocket-newtab" - }, - { - "name": "Food", - "url": "https://getpocket.com/explore/food?utm_source=pocket-newtab" - }, - { - "name": "Entertainment", - "url": "https://getpocket.com/explore/entertainment?utm_source=pocket-newtab" - }, - { - "name": "Health & fitness", - "url": "https://getpocket.com/explore/health?utm_source=pocket-newtab" - }, - { - "name": "Science", - "url": "https://getpocket.com/explore/science?utm_source=pocket-newtab" - }, - { - "name": "More recommendations ›", - "url": "https://getpocket.com/explore?utm_source=pocket-newtab" - } - ], - "extraLinks": [ - { - "name": "Career", - "url": "https://getpocket.com/explore/career?utm_source=pocket-newtab" - }, - { - "name": "Technology", - "url": "https://getpocket.com/explore/technology?utm_source=pocket-newtab" - } - ], - "privacyNoticeURL": { - "url": "https://www.mozilla.org/privacy/firefox/#recommend-relevant-content", - "title": { - "id": "newtab-section-menu-privacy-notice" - } - } - }, - "header": { - "title": { - "id": "newtab-pocket-read-more" - } - }, - "styles": { - ".ds-navigation": "margin-top: -10px;" - } - } - ] - } - ], - "isPrivacyInfoModalVisible": false, - "isCollectionDismissible": true, - "feeds": { - "data": { - "https://firefox-api-proxy.cdn.mozilla.net/desktop/v1/recommendations?locale=$locale®ion=$region&count=30": { - "lastUpdated": 1725215686469, - "personalized": false, - "data": { - "settings": {}, - "recommendations": [ - { - "id": 1237673593164797, - "url": "https://www.zdnet.com/article/why-the-nsa-advises-you-to-turn-off-your-phone-once-a-week/?utm_source=pocket-newtab-en-us", - "title": "Why the NSA Advises You to Turn Off Your Phone Once a Week", - "excerpt": "Powering off your phone regularly, disabling Bluetooth, and using only trusted accessories are just a few of the NSA’s security recommendations. Here’s what else to know.", - "publisher": "ZDNet", - "raw_image_src": "https://www.zdnet.com/a/img/resize/153728d5f66ee0fb01cca3dccdf01af11307c9b9/2024/08/26/8f6e1cdd-c037-48f5-a932-e7e1d5f09e66/gettyimages-1977127901.jpg?auto=webp&fit=crop&height=675&width=1200", - "recommendation_id": "54844477-0bab-4a1b-b00d-2f9cc04e11a6", - "score": 1 - }, - { - "id": 2806006005551800, - "url": "https://getpocket.com/explore/item/inside-the-unsolved-murder-of-jfk-s-mistress-mary-pinchot-meyer?utm_source=pocket-newtab-en-us", - "title": "Inside the Unsolved Murder of JFK’s Mistress Mary Pinchot Meyer", - "excerpt": "A true crime podcast revisits the mysterious 1964 murder of the Washington, D.C. socialite.", - "publisher": "Town & Country Magazine", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/47161f47-f9ba-46bc-9172-eaf152256cd9.jpeg", - "recommendation_id": "d0f2aa71-f4c5-4b75-b652-c535e988dbb3", - "score": 1 - }, - { - "id": 8305955701842621, - "url": "https://www.cntraveler.com/story/golden-rules-of-road-trips?utm_source=pocket-newtab-en-us", - "title": "The Golden Rules of Road Tripping", - "excerpt": "Veteran road trippers (including a gas station food evangelist) share their savviest tips and tricks.", - "publisher": "Condé Nast Traveler", - "raw_image_src": "https://media.cntraveler.com/photos/66d0cab1759c2a9f11040cac/16:9/w_1280,c_limit/GettyImages-1588291549.jpg", - "recommendation_id": "048badb3-8552-409a-b945-483621fcffdb", - "score": 1 - }, - { - "id": 7740724110986131, - "url": "https://daily.jstor.org/the-shrewd-business-logic-of-immigrant-cooks/?utm_source=pocket-newtab-en-us", - "title": "The Shrewd Business Logic of Immigrant Cooks", - "excerpt": "Savvy observers, immigrant restaurateurs operate as amateur anthropologists who analyze their potential customers to determine how to best attract them.", - "publisher": "JStor Daily", - "raw_image_src": "https://daily.jstor.org/wp-content/uploads/2024/08/the_shrewd_business_logic_of_immigrant_cooks_1050x700.jpg", - "recommendation_id": "f652a7e8-4276-4313-8f4f-85c8dfc1a1d8", - "score": 1 - }, - { - "id": 385574474559666, - "url": "https://www.npr.org/2024/08/30/g-s1-20058/signs-of-codependency-how-to-overcome-unhealthy-relationships?utm_source=pocket-newtab-en-us", - "title": "How I Broke Free From Codependency — and Learned the Meaning of Loving Relationships", - "excerpt": "“I thought: if I just helped my friends, colleagues and neighbors, maybe I’d get the connection I craved in love, work and life,” writes journalist Gina Ryder. ", - "publisher": "NPR", - "raw_image_src": "https://npr.brightspotcdn.com/dims3/default/strip/false/crop/4500x2531+0+0/resize/1400/quality/100/format/jpeg/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2F71%2F71%2Fd2c5dc9248cba5375baa2d277339%2Ffinal-copy-b-wide-a076df3e37ddefc91e27ecaaae796f158b8388af.jpg", - "recommendation_id": "b3ed0a59-7ea7-4553-8c64-8dc925e02806", - "score": 1 - }, - { - "id": 6353226517752388, - "url": "https://www.cnbc.com/2024/08/28/37percent-of-hiring-managers-say-job-hopping-is-a-red-flag-how-to-explain-it.html?utm_source=pocket-newtab-en-us", - "title": "37% of Hiring Managers Say Job-Hopping Is a Red Flag: ‘Don’t Make Apologies for It,’ Says LinkedIn Career Expert", - "excerpt": "Job hopping and a lack of direction give hiring managers pause when reading a resume, says LinkedIn. Here’s how to make those work for you. ", - "publisher": "CNBC", - "raw_image_src": "https://image.cnbcfm.com/api/v1/image/108024975-1724430221608-gettyimages-1381569694-dsc05823.jpeg?v=1724430524&w=1920&h=1080", - "recommendation_id": "f26e6e10-8d63-4c5c-a5b2-aeda05f9785b", - "score": 1 - }, - { - "id": 2639946232487271, - "url": "https://www.popsci.com/science/why-are-we-ticklish/?utm_source=pocket-newtab-en-us", - "title": "Why Are We Ticklish?", - "excerpt": "The science of tickling is full of mysteries, but there are some playful theories.", - "publisher": "Popular Science", - "raw_image_src": "https://www.popsci.com/wp-content/uploads/2024/08/tickling-hands.jpg?quality=85", - "recommendation_id": "f0217821-8028-45dd-9581-3adc75f17b71", - "score": 1 - }, - { - "id": 5331020961960890, - "url": "https://www.washingtonpost.com/business/2024/08/30/401k-millionaires-secret/?utm_source=pocket-newtab-en-us", - "title": "The 401(K) Millionaires Club Hit a New Record. What’s Their Secret?", - "excerpt": "While this elite group benefited from surging stock prices, their gains are markers of steady investing over time and having the patience to ride out the rough patches.", - "publisher": "The Washington Post", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/319ba9ad-86f7-42f7-b9d5-a710e005af91.png", - "recommendation_id": "c2f72737-c17a-42a3-aa10-fd1120ce594f", - "score": 1 - }, - { - "id": 5705530850067820, - "url": "https://www.cnn.com/2024/08/30/health/weekend-sleep-lower-heart-disease-risk-wellness/index.html?utm_source=pocket-newtab-en-us", - "title": " What a Weekend Snooze Could Do for Your Heart Health, According to New Research ", - "excerpt": "Getting extra sleep on the weekends to compensate for lost rest during the week may benefit your heart health, new research suggests.", - "publisher": "CNN", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/bbf99e22-d18f-473b-b486-9181ceeafd1d.png", - "recommendation_id": "66ebfc60-e7ef-4486-a7e9-13d8840edb26", - "score": 1 - }, - { - "id": 8961269824482220, - "url": "https://www.newyorker.com/culture/the-front-row/the-giddy-delights-of-1941?utm_source=pocket-newtab-en-us", - "title": "The Giddy Delights of “1941”", - "excerpt": "Steven Spielberg gave free rein to his anarchic inner child in this Second World War comedy—and paid the price.", - "publisher": "The New Yorker", - "raw_image_src": "https://media.newyorker.com/photos/66d0d25e6fdde2d32f124f4f/16:9/w_1280,c_limit/Brody01-1941.jpg", - "recommendation_id": "890f05ef-a6cc-49ae-8c70-7ae9034ffd15", - "score": 1 - }, - { - "id": 8017352545460819, - "url": "https://www.discovermagazine.com/the-sciences/ancient-romans-were-some-of-the-first-obnoxious-tourists?utm_source=pocket-newtab-en-us", - "title": "Ancient Romans Were Some of the First Obnoxious Tourists", - "excerpt": "Archaeologists reveal traces of early tourism. From graffitied buildings to rowdy beach resorts, learn how ancient travelers shaped modern tourism.", - "publisher": "Discover Magazine", - "raw_image_src": "https://images.ctfassets.net/cnu0m8re1exe/6s1aSjTwLDrfUYAZrZ27ly/fd770ca5a5ed689ec3b982876eccfca8/shutterstock_2434319603.jpg?fm=jpg&fl=progressive&w=660&h=433&fit=fill", - "recommendation_id": "f31ab5b8-6140-405d-88c7-f739dc2dea37", - "score": 1 - }, - { - "id": 8585537236724587, - "url": "https://hbr.org/2024/08/how-to-craft-a-memorable-message-according-to-science?utm_source=pocket-newtab-en-us", - "title": "How to Craft a Memorable Message, According to Science", - "excerpt": "Imagine sitting in a meeting where someone is giving a presentation. You’re somewhat interested in the topic, and the speaker seems to be doing a good job. The meeting ends, and 30 minutes later, you try to recall what was discussed.", - "publisher": "Harvard Business Review", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/c5b2dedc-0ca3-4240-988a-264ce58b151a.jpeg", - "recommendation_id": "9ab969a6-6490-463f-9bf2-90a47b29a742", - "score": 1 - }, - { - "id": 2600415718993677, - "url": "https://www.bustle.com/wellness/functional-freeze-tiktok?utm_source=pocket-newtab-en-us", - "title": "Feeling Tired & Stuck? Blame It on “Functional Freeze”", - "excerpt": "Experts explain “functional freeze” and tips for getting out of it.", - "publisher": "Bustle", - "raw_image_src": "https://imgix.bustle.com/uploads/getty/2024/8/28/ded05894/exhausted-young-asian-woman.jpg?w=1200&h=630&fit=crop&crop=faces&fm=jpg", - "recommendation_id": "45136e3c-cfcf-4b27-9043-288343a4984a", - "score": 1 - }, - { - "id": 3815514097256825, - "url": "https://www.context.news/digital-rights/why-is-telegram-in-trouble-with-the-law?utm_source=pocket-newtab-en-us", - "title": "Why Is Telegram in Trouble With the Law?", - "excerpt": "Telegram, whose boss Durov was arrested in France, has few moderators and refuses to hand over data but how exactly does it work?", - "publisher": "Context News", - "raw_image_src": "https://ddc514qh7t05d.cloudfront.net/dA/1a97132cafbba867ce6c84e92317e107/1200w/Jpeg", - "recommendation_id": "f509e631-487f-4da0-9bdf-4ec48b832e52", - "score": 1 - }, - { - "id": 3368948738226282, - "url": "https://www.theatlantic.com/technology/archive/2024/08/venmo-social-media/679665/?utm_source=pocket-newtab-en-us", - "title": "The Last Social Network", - "excerpt": "Venmo has become the best way to see what the people you know are up to.", - "publisher": "The Atlantic", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/3bd44da5-2c15-49ca-b138-64c654152dc6.jpeg", - "recommendation_id": "b46de81e-d41c-44b8-996f-e3ae19e4ebd4", - "score": 1 - }, - { - "id": 2718235349382233, - "url": "https://www.cnbc.com/2024/08/30/mortgage-rates-are-falling-is-this-the-right-time-to-buy-a-home.html?utm_source=pocket-newtab-en-us", - "title": "Mortgage Rates Are Falling, Improving Home Buying Conditions. Here’s What to Know Before You Act", - "excerpt": "Experts give their best advice for navigating the housing market in the months ahead.", - "publisher": "CNBC", - "raw_image_src": "https://image.cnbcfm.com/api/v1/image/107418725-1716399817877-gettyimages-1347125095-120_0821_125794.jpeg?v=1721742352&w=1920&h=1080", - "recommendation_id": "ab954c84-9d06-4558-bb81-3a5b1428a2d9", - "score": 1 - }, - { - "id": 5756898452464831, - "url": "https://www.wired.com/story/waymo-is-picking-up-at-phoenix-airport/?utm_source=pocket-newtab-en-us", - "title": "Waymo Is Picking up at the Airport. That’s a Big Deal", - "excerpt": "Self-driving cars have started all-day pickups and drop-offs in Phoenix, Arizona. It’s great news for Alphabet’s bottom line, and a step forward for robotaxis.", - "publisher": "WIRED", - "raw_image_src": "https://media.wired.com/photos/66ce36f04bed518556513e05/191:100/w_1280,c_limit/Airport-Waymo-transport-1497020112.jpg", - "recommendation_id": "7cb13068-8df9-4ff1-a557-da8e681b476a", - "score": 1 - }, - { - "id": 341596945613700, - "url": "https://time.com/7015189/most-anticipated-tv-shows-fall-2024/?utm_source=pocket-newtab-en-us", - "title": "The 34 Most Anticipated TV Shows of Fall 2024", - "excerpt": "Including a bevy of new Ryan Murphy shows, some fond farewells, and new shows from Alfonso Cuarón and Mike Schur.", - "publisher": "Time", - "raw_image_src": "https://api.time.com/wp-content/uploads/2024/08/fall-preview-tv-2024.jpg?quality=85&w=1200&h=628&crop=1", - "recommendation_id": "86453c33-aee5-4d25-b507-975a49db0af0", - "score": 1 - }, - { - "id": 4637722453319065, - "url": "https://www.theringer.com/nfl/2024/8/29/24231064/2024-nfl-worst-to-first-candidates-ranking?utm_source=pocket-newtab-en-us", - "title": "Ranking the NFL’s Worst-to-First Candidates for 2024", - "excerpt": "It’s inevitable: One team during an NFL season will come out of nowhere and land in first place. Which teams have the best chance to shock the rest of the league, and who is bound to remain at the bottom?", - "publisher": "The Ringer", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/O52keaRsbI7Eb1QiYvY-0KjG-fI=/0x0:1200x628/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25593828/DabbundoWorstToFirst_AP_Ringer.jpg", - "recommendation_id": "ae8f6c55-a6ef-43ca-995b-58788f1340b0", - "score": 1 - }, - { - "id": 4744553102394205, - "url": "https://www.sportico.com/leagues/football/2024/how-nfl-teams-owners-make-money-1234795113/?utm_source=pocket-newtab-en-us", - "title": "How NFL Teams and Owners Make Their Money", - "excerpt": "The NFL’s 32 teams generated an estimated $20.5 billion in revenue last year, 70% higher than what NBA and MLB teams made. TV is the driving force.", - "publisher": "Sportico", - "raw_image_src": "https://www.sportico.com/wp-content/uploads/2024/08/GettyImages-2168767155-e1724784926728.jpg?w=1024", - "recommendation_id": "1fee66b0-b352-4fe4-a461-9809f1fae480", - "score": 1 - }, - { - "id": 4951008296652531, - "url": "https://apnews.com/article/us-open-swiatek-calendar-811e0deff257faad9a5f55fa82e28c2a?utm_source=pocket-newtab-en-us", - "title": "Iga Swiatek and Other Tennis Players Say Their Mental and Physical Health Are Ignored", - "excerpt": "It’s nothing new for tennis players to worry aloud about their sport’s overcrowded calendar, too-tough season and too-short offseason.", - "publisher": "The Associated Press", - "raw_image_src": "https://dims.apnews.com/dims4/default/8557ad3/2147483647/strip/true/crop/2000x1125+0+104/resize/1440x810!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2Fe3%2F68%2Ffa9e59870523584ab445f87e94e1%2Fa9f9577cfbff40cdb282c00f6bd1bc5c", - "recommendation_id": "d264fe5b-9c76-4302-aaf2-c27bd232c2fc", - "score": 1 - }, - { - "id": 5148614590207024, - "url": "https://www.eater.com/24225596/best-zucchini-bread-recipe-ranking?utm_source=pocket-newtab-en-us", - "title": "Which Zucchini Bread Recipe Makes the Most Out of Summer Abundance?", - "excerpt": "Zucchini bread is a great way to use up an excess of summer squash, but not all recipes are created equal.", - "publisher": "Eater", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/Xz7DzXyi89bgkdLySKAngF8AmNo=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25583421/lede__1_.png", - "recommendation_id": "9f1b20ab-a721-4cd4-9a34-cd6751ec58bc", - "score": 1 - }, - { - "id": 1669887505274605, - "url": "https://www.usatoday.com/story/life/pets/2024/08/29/what-do-dogs-dream-about/74865197007/?utm_source=pocket-newtab-en-us", - "title": "Do Dogs Dream? It’s No Surprise – the Answer Is Pretty Cute.", - "excerpt": "Dogs can dream just like humans can, and while researchers aren’t certain, here’s what they likely picture when they twitch or growl in their sleep.", - "publisher": "USA Today", - "raw_image_src": "https://www.usatoday.com/gcdn/-mm-/9e1f6e2ee20f44aa1f3be4f71e9f3e52b6ae2c7e/c=0-110-2121-1303/local/-/media/2021/10/25/USATODAY/usatsports/dogecoin-sleeping-shiba-inu.jpg?width=2121&height=1193&fit=crop&format=pjpg&auto=webp", - "recommendation_id": "3b28f1dc-c0f5-4f59-9a93-e6cdcdf90358", - "score": 1 - }, - { - "id": 6458913960373998, - "url": "https://getpocket.com/collections/how-to-be-more-creative?utm_source=pocket-newtab-en-us", - "title": "How To Be More Creative", - "excerpt": "Twenty-one great articles and resources about the art and science of cultivating creativity.", - "publisher": "Pocket Collections", - "raw_image_src": "https://s3.amazonaws.com/pocket-curatedcorpusapi-prod-images/822a4805-7f11-4769-b434-22798a3233ac.jpeg", - "recommendation_id": "b0263acf-5419-4da5-bb7a-6fad9b470c00", - "score": 1 - }, - { - "id": 1025053198112710, - "url": "https://www.sfgate.com/sf-culture/article/emergency-burning-man-airlift-service-19731550.php?utm_source=pocket-newtab-en-us", - "title": "This Emergency Burning Man Service Costs $20, and Thousands Sign up for It", - "excerpt": "Like any city, Black Rock City has its share of accidents, injuries and even deaths. ", - "publisher": "SFGate", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/12be72dc-d364-4a39-887f-7fb453d19381.png", - "recommendation_id": "e11e4df7-231c-46b0-95cc-6324f6e4ef54", - "score": 1 - }, - { - "id": 6140350244852717, - "url": "https://www.theatlantic.com/health/archive/2024/08/our-houses-are-fuel-for-fires/679649/?utm_source=pocket-newtab-en-us", - "title": "The Wildfire Risk in America’s Front Yards", - "excerpt": "If we really want to keep communities safe, we need to think about where we build, and with what.", - "publisher": "The Atlantic", - "raw_image_src": "https://cdn.theatlantic.com/thumbor/vK7P14SS5IpfP3if3pzJ6Prnjkk=/0x61:2876x1559/1200x625/media/img/mt/2024/08/GettyImages_1059684446/original.jpg", - "recommendation_id": "d855d896-ccc7-4dc3-b475-a2b76a311cbb", - "score": 1 - }, - { - "id": 207858574713052, - "url": "https://www.washingtonpost.com/travel/2024/08/29/passport-photos-makeup-security-tiktok/?utm_source=pocket-newtab-en-us", - "title": "Your ‘Hot’ Passport Photo Could Be a Problem at the Airport", - "excerpt": "The passport photos are glam — some might say aspirational — and created with a multistep, multi-product process. They also might be a cautionary tale.", - "publisher": "The Washington Post", - "raw_image_src": "https://s3.us-east-1.amazonaws.com/pocket-curatedcorpusapi-prod-images/f88c668b-c07e-4d08-83f5-e4e6c6a38f5e.png", - "recommendation_id": "65e39884-83f7-490e-a943-f69e05ff75e2", - "score": 1 - }, - { - "id": 6548513307998425, - "url": "https://www.theverge.com/24230813/demure-mindful-trademark-uspto-explainer-jools-lebron?utm_source=pocket-newtab-en-us", - "title": "A Demure and Mindful Trademark Investigation", - "excerpt": "See how I wrote this legal explainer?", - "publisher": "The Verge", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/ghzs2dc_aNWjDEzhmbN0h9I8u0U=/0x0:2040x1360/1200x628/filters:focal(1020x680:1021x681)/cdn.vox-cdn.com/uploads/chorus_asset/file/25593501/247230_Demure_Mindful_TM_CVirginia_4.jpg", - "recommendation_id": "3da69809-498d-4525-a7e5-c250cc5f68a2", - "score": 1 - }, - { - "id": 5986195010620404, - "url": "https://www.eater.com/24224470/shrimp-corn-calabrian-chile-butter-for-one-recipe?utm_source=pocket-newtab-en-us", - "title": "A Buttery Corn and Shrimp Dish Ideal for the End of Summer", - "excerpt": "This dinner for one showcases ingredients that reach peak deliciousness in mere minutes.", - "publisher": "Eater", - "raw_image_src": "https://cdn.vox-cdn.com/thumbor/gmn0qDUIO7EvHQabAodf8FB4RPw=/0x31:1600x869/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25581236/Lede.png", - "recommendation_id": "a5c517c8-6921-4c17-8fde-a0828bc677eb", - "score": 1 - }, - { - "id": 6428931032359864, - "url": "https://www.npr.org/2024/08/29/nx-s1-5090967/birds-build-nests-tradition-culture-architecture?utm_source=pocket-newtab-en-us", - "title": "When Birds Build Nests, They’re Also Building a Culture", - "excerpt": "Nest-building isn’t just instinct. Birds can learn from others, letting groups within one species develop their own distinctive nest-building traditions.", - "publisher": "NPR", - "raw_image_src": "https://npr.brightspotcdn.com/dims3/default/strip/false/crop/1698x955+36+0/resize/1400/quality/100/format/png/?url=http%3A%2F%2Fnpr-brightspot.s3.amazonaws.com%2Fe8%2Fb9%2Fb9aa4cf34256bf30765476f6631b%2Fbird-three.png", - "recommendation_id": "e0c903c2-83ce-4dd5-afb7-578462e937bb", - "score": 1 - } - ], - "status": "success" - } - } - }, - "loaded": true - }, - "spocs": { - "spocs_endpoint": "https://spocs.getpocket.com/spocs", - "lastUpdated": 1725215686352, - "data": { - "settings": { - "feature_flags": { - "collections": false, - "spoc_v2": true - }, - "spocsPerNewTabs": 1, - "domainAffinityParameterSets": { - "default": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 1, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 2, - "perfectFrequencyVisits": 10, - "recencyFactor": 0.5 - }, - "fully-personalized": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 0.01, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 2, - "perfectFrequencyVisits": 10, - "recencyFactor": 0.5 - }, - "fully-personalized-domains": { - "combinedDomainFactor": 0.5, - "frequencyFactor": 0.5, - "itemScoreFactor": 0.01, - "multiDomainBoost": 0, - "perfectCombinedDomainScore": 10, - "perfectFrequencyVisits": 1, - "recencyFactor": 0.5 - } - }, - "timeSegments": [ - { - "id": "week-1", - "startTime": 432000, - "endTime": 0, - "weightPosition": 1 - }, - { - "id": "week-2", - "startTime": 864000, - "endTime": 432000, - "weightPosition": 1 - }, - { - "id": "week-3", - "startTime": 1296000, - "endTime": 864000, - "weightPosition": 1 - }, - { - "id": "week-4", - "startTime": 1728000, - "endTime": 1296000, - "weightPosition": 1 - }, - { - "id": "week-5", - "startTime": 2160000, - "endTime": 1728000, - "weightPosition": 1 - }, - { - "id": "week-6", - "startTime": 2592000, - "endTime": 2160000, - "weightPosition": 1 - } - ] - }, - "sponsored-topsites": { - "title": "", - "context": "", - "items": [] - } - }, - "loaded": true, - "frequency_caps": [], - "blocked": [], - "placements": [ - { - "name": "sponsored-topsites", - "ad_types": [ - 3120 - ], - "zone_ids": [ - 280143 - ] - }, - { - "name": "spocs", - "ad_types": [ - 3617 - ], - "zone_ids": [ - 217758, - 217995 - ] - } - ] - }, - "experimentData": { - "utmSource": "pocket-newtab", - "utmCampaign": "home-and-newtab-wallpapers-v1-rollout-us-and-ca", - "utmContent": "control" - }, - "recentSavesData": [], - "isUserLoggedIn": false, - "recentSavesEnabled": false, - "pocketButtonEnabled": true, - "saveToPocketCard": true, - "hideDescriptions": false, - "compactImages": false, - "imageGradient": false, - "newSponsoredLabel": false, - "titleLines": 3, - "descLines": 3, - "readTime": true - }, - "Search": { - "fakeFocus": false, - "hide": false - }, - "Wallpapers": { - "wallpaperList": [ - { - "theme": "light", - "title": "light-panda", - "schema": 1713902028543, - "fluent_id": "newtab-wallpaper-light-red-panda", - "attachment": { - "hash": "f9a34f02573401aea9366a9e97a4cdc92f925ad6ac8d56d0bedfaf0dff9e86b1", - "size": 531549, - "filename": "light-panda.avif", - "location": "main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@_melsayed", - "string": "Mohamed Elsayed" - }, - "webpage": { - "url": "https://unsplash.com/photos/red-panda-on-snow-covered-ground-during-daytime-DWpR-BpKlw0", - "string": "Unsplash" - } - }, - "id": "0294a982-05f7-4b73-846a-ae2ffca24b43", - "last_modified": 1713908231354, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/4c114726-8548-46e8-b7c8-bedc083b20ac.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-landscape", - "schema": 1713905326229, - "fluent_id": "newtab-wallpaper-dark-aurora", - "attachment": { - "hash": "dba39dab685c2bc6978354537c1bc8218a0abc455d0dd49c134c031264cfcd47", - "size": 437288, - "filename": "dark-aurora.avif", - "location": "main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@lightscape", - "string": "Lightscape" - }, - "webpage": { - "url": "https://unsplash.com/photos/northern-lights-over-snow-capped-mountian-LtnPejWDSAY", - "string": "Unsplash" - } - }, - "id": "2f32ee82-69b0-4b75-851c-917d57b59f0b", - "last_modified": 1713908231356, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/23d5c783-4d0a-4385-8877-364ef966c8ac.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-sky", - "schema": 1712696771636, - "fluent_id": "newtab-wallpaper-light-sky", - "attachment": { - "hash": "40a84002cfaf92fd38300e3987146f7b2ec3f5255e0427afbd30a52d7830c0e8", - "size": 100634, - "filename": "light-sky.avif", - "location": "main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@frostroomhead", - "string": "Rodion Kutsaiev" - }, - "webpage": { - "url": "https://unsplash.com/photos/cloudy-sky-8P-uQaTd8rw", - "string": "Unsplash" - } - }, - "id": "3547b1db-e72d-4b42-ba8c-a45c59a58eb4", - "last_modified": 1712759416279, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/342276d2-65ee-40de-98cf-db502d75c1a7.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-color", - "schema": 1713902013746, - "fluent_id": "newtab-wallpaper-light-color", - "attachment": { - "hash": "cd28bc282ba8dda5f6660389eb2a7ba66a57691504de2eba3405ec20eeddd5a0", - "size": 288837, - "filename": "light-color.avif", - "location": "main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif", - "mimetype": "image/avif" - }, - "id": "395f6e0c-c66d-4209-a6bf-6c329cea90bb", - "last_modified": 1713908231352, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/40ecc3c3-9ee7-4271-9bb3-2575e0d23b1e.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-mountain", - "schema": 1713901986092, - "fluent_id": "newtab-wallpaper-light-mountain", - "attachment": { - "hash": "f9fdf49580f9221ba2583d0a818d60ae79b9fd50246ef36798a264e6645b6709", - "size": 541196, - "filename": "light-mountain.avif", - "location": "main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@daesign?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash", - "string": "Sead Dedić" - }, - "webpage": { - "url": "https://unsplash.com/photos/mountain-covered-with-snow-under-white-clouds-si8OYpuLVBY?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash", - "string": "Unsplash" - } - }, - "id": "95a51610-48fc-482e-ac01-7e3319ae7108", - "last_modified": 1713908231350, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/ec9498f2-057e-4033-83d2-016647271bda.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-panda", - "schema": 1712744600151, - "fluent_id": "newtab-wallpaper-dark-panda", - "attachment": { - "hash": "359ec1d08b10aec1ea6d5cb50ddb0ccbd7660301407ee2eb602cf877b1ab857a", - "size": 391823, - "filename": "dark-panda.avif", - "location": "main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@willrust", - "string": "Will Rust" - }, - "webpage": { - "url": "https://unsplash.com/photos/a-red-panda-yawns-in-a-tree-ERm7haDBW8k", - "string": "Unsplash" - } - }, - "id": "a6fbb3dd-cbbf-4a70-83b4-207943ff985b", - "last_modified": 1712759416259, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/d3589dbb-09ee-4be8-9a44-898386fe1bcf.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-color", - "schema": 1712696637182, - "fluent_id": "newtab-wallpaper-dark-color", - "attachment": { - "hash": "c433865edcc1eae2911f30caa95783adfe5642ec24e8bd41fcfc661276f93752", - "size": 206755, - "filename": "dark-color.avif", - "location": "main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@martz90", - "string": "Martin Martz" - }, - "webpage": { - "url": "https://unsplash.com/photos/a-close-up-of-a-cell-phone-with-a-blurry-background-uuNCR2NpiNE", - "string": "Unsplash" - } - }, - "id": "ac09202d-958f-4f8b-b47a-1d32ac79bc56", - "last_modified": 1712759416261, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/9e9bf317-3a49-485d-9951-d054a450f234.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-landscape", - "schema": 1712696741112, - "fluent_id": "newtab-wallpaper-light-landscape", - "attachment": { - "hash": "e03ad82c9a5c6da8873cbdd21a5186a61c2eab9fe582f68e8da84cbb79b97885", - "size": 223179, - "filename": "light-landscape.avif", - "location": "main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@caroliniecavalli", - "string": "Carolinie Cavalli" - }, - "webpage": { - "url": "https://unsplash.com/photos/birds-eye-view-photography-of-mountain-Qw3w0oBH63s", - "string": "Unsplash" - } - }, - "id": "ad655cd6-8b30-4b62-bc3b-8306f43074ed", - "last_modified": 1712759416281, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/4e468a06-fbad-49e8-99ec-9f31a2b405e0.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-sky", - "schema": 1716395853204, - "fluent_id": "newtab-wallpaper-dark-sky", - "attachment": { - "hash": "6ab2a71c1d5866c10f6c8bb555b019ed6127a48112e410694bedf6fe8d5cdab9", - "size": 461323, - "filename": "dark-sky.avif", - "location": "main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@felix_mittermeier", - "string": "Felix Mittermeier" - }, - "webpage": { - "url": "https://unsplash.com/photos/lightning-strike-under-cloudy-sky-WLGHjbC0Cq4", - "string": "Unsplash" - } - }, - "id": "ae0890cf-35a3-419f-8f2f-a8f824e387e4", - "last_modified": 1716487426093, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/1d09411c-ebaf-412d-a6e3-0d59a224cf36.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-mountain", - "schema": 1712697075672, - "fluent_id": "newtab-wallpaper-dark-mountain", - "attachment": { - "hash": "f5933a35945f5103ff98892f45ce03c59b2c3c1be35455faf45b10355492fd95", - "size": 308468, - "filename": "dark-mountain.avif", - "location": "main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@heytowner", - "string": "John Towner" - }, - "webpage": { - "url": "https://unsplash.com/photos/aerial-photo-of-brown-moutains-JgOeRuGD_Y4", - "string": "Unsplash" - } - }, - "id": "cb4752dc-cccb-4756-9232-f81af25ac7ea", - "last_modified": 1712759416272, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/33675bc6-7371-4e20-9809-320c46f39241.avif", - "category": "" - }, - { - "theme": "dark", - "title": "dark-beach", - "schema": 1716396166554, - "fluent_id": "newtab-wallpaper-dark-city", - "attachment": { - "hash": "7272b542d0b28513daa9c1bdb27ae09d606c189d1c144bc6d5b550b5020c67de", - "size": 713257, - "filename": "dark-beach.avif", - "location": "main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@yespanioly", - "string": "Yousef Espanioly" - }, - "webpage": { - "url": "https://unsplash.com/photos/seashore-DA_tplYgTow", - "string": "Unsplash" - } - }, - "id": "e85ffed2-658d-4e3e-a990-e54a1fb59f0a", - "last_modified": 1716487426090, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/7b30cba3-5578-4c40-a221-81158c5c9f1c.avif", - "category": "" - }, - { - "theme": "light", - "title": "light-beach", - "schema": 1716281724721, - "fluent_id": "newtab-wallpaper-light-beach", - "attachment": { - "hash": "ad65944319e9bb3fa4261e93d465cc51be35873608dfa71d46fe734ae4517c2a", - "size": 465893, - "filename": "light-beach-1.avif", - "location": "main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif", - "mimetype": "image/avif" - }, - "attribution": { - "name": { - "url": "https://unsplash.com/@oulashin", - "string": "Sean Oulashin" - }, - "webpage": { - "url": "https://unsplash.com/photos/seashore-during-golden-hour-KMn4VEeEPR8", - "string": "Unsplash" - } - }, - "id": "eaf8ffb0-66bf-44c9-a79c-1a185aacea5f", - "last_modified": 1716487426088, - "wallpaperUrl": "https://firefox-settings-attachments.cdn.mozilla.net/main-workspace/newtab-wallpapers/c0892c2b-f0bb-493c-b89b-99653e7523cb.avif", - "category": "" - } - ], - "highlightSeenCounter": { - "value": 0 - }, - "categories": [] - }, - "Weather": { - "initialized": false, - "lastUpdated": null, - "query": "", - "suggestions": [], - "locationData": { - "city": "", - "adminArea": "", - "country": "" - }, - "searchActive": false, - "locationSearchString": "", - "suggestedLocations": [] - } -}; - -XνfԶ'GFJ :about:homealt-data1;80261,scriptversion20240819150008^ \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D154E1CD66DAEBBC055D1D367858E65F2CC266C5 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D154E1CD66DAEBBC055D1D367858E65F2CC266C5 deleted file mode 100644 index 4cbcd25..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D154E1CD66DAEBBC055D1D367858E65F2CC266C5 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D1FF561AE013C76194548D53AD0BDBD1AEFC21E3 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D1FF561AE013C76194548D53AD0BDBD1AEFC21E3 deleted file mode 100644 index 7057b66..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D1FF561AE013C76194548D53AD0BDBD1AEFC21E3 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D2B80E70C34326ABE36E157FCB961141DDF2FB38 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D2B80E70C34326ABE36E157FCB961141DDF2FB38 deleted file mode 100644 index be0b06c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D2B80E70C34326ABE36E157FCB961141DDF2FB38 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D42BCFDBF53875A8855B7F811D1795361A3695C4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D42BCFDBF53875A8855B7F811D1795361A3695C4 deleted file mode 100644 index 957c1ae..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D42BCFDBF53875A8855B7F811D1795361A3695C4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D6117232071B292776D70B07CE1C0B90F6DBFE89 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D6117232071B292776D70B07CE1C0B90F6DBFE89 deleted file mode 100644 index 3619d54..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D6117232071B292776D70B07CE1C0B90F6DBFE89 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D800FA27314FC12F7AD8ACEF5A597D8BE263795C b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D800FA27314FC12F7AD8ACEF5A597D8BE263795C deleted file mode 100644 index 6bf6dc1..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/D800FA27314FC12F7AD8ACEF5A597D8BE263795C and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DAA46BB4C0961523D9B5D1AF636A0E4AFBB79477 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DAA46BB4C0961523D9B5D1AF636A0E4AFBB79477 deleted file mode 100644 index ae1235e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DAA46BB4C0961523D9B5D1AF636A0E4AFBB79477 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DCA79A01BB193FDB63B9E7BA8B2EFA865A8BFBA6 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DCA79A01BB193FDB63B9E7BA8B2EFA865A8BFBA6 deleted file mode 100644 index bdb0570..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DCA79A01BB193FDB63B9E7BA8B2EFA865A8BFBA6 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DED672FC0C9F1618408173DCBEFB40D76E8519F5 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DED672FC0C9F1618408173DCBEFB40D76E8519F5 deleted file mode 100644 index 1e496a8..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DED672FC0C9F1618408173DCBEFB40D76E8519F5 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DF0CDE23AA0F44779E78EFEDFBAED16DB1B4DF40 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DF0CDE23AA0F44779E78EFEDFBAED16DB1B4DF40 deleted file mode 100644 index 37345fe..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DF0CDE23AA0F44779E78EFEDFBAED16DB1B4DF40 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DF8DD47C0F24BAB89DDC00A45BC944E1F4052C60 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DF8DD47C0F24BAB89DDC00A45BC944E1F4052C60 deleted file mode 100644 index 9cdcc43..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DF8DD47C0F24BAB89DDC00A45BC944E1F4052C60 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DFA64071F5BAA21C643CC77683A3A33D12A5A5E1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DFA64071F5BAA21C643CC77683A3A33D12A5A5E1 deleted file mode 100644 index cc87afb..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/DFA64071F5BAA21C643CC77683A3A33D12A5A5E1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E0600FF3C285DFEDD495A398052F302E4D1BFECA b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E0600FF3C285DFEDD495A398052F302E4D1BFECA deleted file mode 100644 index 1464aa2..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E0600FF3C285DFEDD495A398052F302E4D1BFECA and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E1085BDDCB9C0581F5B30165E161B8853D2FB159 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E1085BDDCB9C0581F5B30165E161B8853D2FB159 deleted file mode 100644 index f017002..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E1085BDDCB9C0581F5B30165E161B8853D2FB159 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E5F4F73C92F287911A5E0B2C557BB8ECB5B42426 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E5F4F73C92F287911A5E0B2C557BB8ECB5B42426 deleted file mode 100644 index 9df8015..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E5F4F73C92F287911A5E0B2C557BB8ECB5B42426 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E8E5B2A5800A062658CB7A8A5E87D3666A9D7288 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E8E5B2A5800A062658CB7A8A5E87D3666A9D7288 deleted file mode 100644 index 2c2c18e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E8E5B2A5800A062658CB7A8A5E87D3666A9D7288 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E9FD7433A59698EF7D497ECAE259B03FF40B540D b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E9FD7433A59698EF7D497ECAE259B03FF40B540D deleted file mode 100644 index 7eed835..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/E9FD7433A59698EF7D497ECAE259B03FF40B540D and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EA1E3132006CB34CB9058E6891C35B731B9C4D9B b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EA1E3132006CB34CB9058E6891C35B731B9C4D9B deleted file mode 100644 index 58628f2..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EA1E3132006CB34CB9058E6891C35B731B9C4D9B and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EDE675BC5BD66B9EEBD8A46A4C06CC47C388FD92 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EDE675BC5BD66B9EEBD8A46A4C06CC47C388FD92 deleted file mode 100644 index 0e84249..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EDE675BC5BD66B9EEBD8A46A4C06CC47C388FD92 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EFA647717C5DACA0CA2C440DCBEB370AB944CC02 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EFA647717C5DACA0CA2C440DCBEB370AB944CC02 deleted file mode 100644 index 7be823c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/EFA647717C5DACA0CA2C440DCBEB370AB944CC02 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F277316E1DCE5B764CCD70C516911EA95251C506 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F277316E1DCE5B764CCD70C516911EA95251C506 deleted file mode 100644 index b316f00..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F277316E1DCE5B764CCD70C516911EA95251C506 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F5B3039756F28568729BF74C95BF5DE5D0C02D69 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F5B3039756F28568729BF74C95BF5DE5D0C02D69 deleted file mode 100644 index 75121f1..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F5B3039756F28568729BF74C95BF5DE5D0C02D69 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F91D775827A442646506E374BC4B975F2542A81D b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F91D775827A442646506E374BC4B975F2542A81D deleted file mode 100644 index f1d7e24..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/F91D775827A442646506E374BC4B975F2542A81D and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FD61D1AACDDA037787ED2883D03072C1633969C0 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FD61D1AACDDA037787ED2883D03072C1633969C0 deleted file mode 100644 index ccd40c9..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FD61D1AACDDA037787ED2883D03072C1633969C0 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FD66A09FED552882A30D1E8C2D6BAA5F6666C1C6 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FD66A09FED552882A30D1E8C2D6BAA5F6666C1C6 deleted file mode 100644 index 1d0ee61..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FD66A09FED552882A30D1E8C2D6BAA5F6666C1C6 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FE545CEAB118A457BE5772C100EB2BB56E334533 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FE545CEAB118A457BE5772C100EB2BB56E334533 deleted file mode 100644 index 6168a76..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cache2/entries/FE545CEAB118A457BE5772C100EB2BB56E334533 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cert9.db b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cert9.db deleted file mode 100644 index fce1102..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cert9.db and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/compatibility.ini b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/compatibility.ini deleted file mode 100644 index ad60585..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/compatibility.ini +++ /dev/null @@ -1,5 +0,0 @@ -[Compatibility] -LastVersion=129.0.2_20240819150008/20240819150008 -LastOSABI=Darwin_aarch64-gcc3 -LastPlatformDir=/Applications/Firefox.app/Contents/Resources -LastAppDir=/Applications/Firefox.app/Contents/Resources/browser diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/containers.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/containers.json deleted file mode 100644 index 8114fdf..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/containers.json +++ /dev/null @@ -1 +0,0 @@ -{"version":5,"lastUserContextId":5,"identities":[{"icon":"fingerprint","color":"blue","l10nId":"user-context-personal","public":true,"userContextId":1},{"icon":"briefcase","color":"orange","l10nId":"user-context-work","public":true,"userContextId":2},{"icon":"dollar","color":"green","l10nId":"user-context-banking","public":true,"userContextId":3},{"icon":"cart","color":"pink","l10nId":"user-context-shopping","public":true,"userContextId":4},{"public":false,"icon":"","color":"","name":"userContextIdInternal.thumbnail","accessKey":"","userContextId":5},{"userContextId":4294967295,"public":false,"icon":"","color":"","name":"userContextIdInternal.webextStorageLocal","accessKey":""}]} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/content-prefs.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/content-prefs.sqlite deleted file mode 100644 index 52f2106..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/content-prefs.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cookies.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cookies.sqlite deleted file mode 100644 index 7990087..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/cookies.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/crashes/store.json.mozlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/crashes/store.json.mozlz4 deleted file mode 100644 index 5e3546c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/crashes/store.json.mozlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514844.ae74ec0c-4ff9-4569-ab33-8a2404d96da5.new-profile.jsonlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514844.ae74ec0c-4ff9-4569-ab33-8a2404d96da5.new-profile.jsonlz4 deleted file mode 100644 index e719043..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514844.ae74ec0c-4ff9-4569-ab33-8a2404d96da5.new-profile.jsonlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514845.cbac7e22-e483-4045-a78c-a881fa55bbbe.event.jsonlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514845.cbac7e22-e483-4045-a78c-a881fa55bbbe.event.jsonlz4 deleted file mode 100644 index 5cb2c8d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514845.cbac7e22-e483-4045-a78c-a881fa55bbbe.event.jsonlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514847.6f55fbb2-2ddb-497c-91d8-88d89cdd92ec.main.jsonlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514847.6f55fbb2-2ddb-497c-91d8-88d89cdd92ec.main.jsonlz4 deleted file mode 100644 index 4374b82..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514847.6f55fbb2-2ddb-497c-91d8-88d89cdd92ec.main.jsonlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514849.a81a3f8e-73c8-482a-af37-b09327335232.first-shutdown.jsonlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514849.a81a3f8e-73c8-482a-af37-b09327335232.first-shutdown.jsonlz4 deleted file mode 100644 index 99e93ea..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/archived/2024-09/1725216514849.a81a3f8e-73c8-482a-af37-b09327335232.first-shutdown.jsonlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/db/data.safe.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/db/data.safe.bin deleted file mode 100644 index 7563b0c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/db/data.safe.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/background-update b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/background-update deleted file mode 100644 index 544b4b7..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/background-update +++ /dev/null @@ -1,13 +0,0 @@ -{"timestamp":4439566,"category":"nimbus_events","name":"enrollment","extra":{"branch":"enable-csv-import","experiment_type":"rollout","glean_timestamp":"1725215686323","experiment":"csv-import-release-rollout"}} -{"timestamp":4439571,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"rollout","experiment":"upgrade-spotlight-rollout","branch":"treatment","glean_timestamp":"1725215686328"}} -{"timestamp":4439573,"category":"nimbus_events","name":"enrollment","extra":{"branch":"enable-address-autofill","glean_timestamp":"1725215686330","experiment":"address-autofill-desktop-pref-release-rollout","experiment_type":"rollout"}} -{"timestamp":4439576,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"rollout","branch":"treatment","glean_timestamp":"1725215686333","experiment":"highlighting-in-pdfs-rollout"}} -{"timestamp":4439577,"category":"nimbus_events","name":"enrollment","extra":{"experiment":"consolidated-search-configuration-row-desktop-relaunch","experiment_type":"rollout","branch":"rollout","glean_timestamp":"1725215686335"}} -{"timestamp":4439580,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"nimbus","glean_timestamp":"1725215686337","experiment":"long-term-holdback-2024-h2-velocity-desktop","branch":"delivery"}} -{"timestamp":4439583,"category":"nimbus_events","name":"enrollment","extra":{"glean_timestamp":"1725215686340","branch":"control","experiment":"disable-redirects-for-authretries","experiment_type":"rollout"}} -{"timestamp":4439584,"category":"nimbus_events","name":"enrollment","extra":{"glean_timestamp":"1725215686341","experiment_type":"rollout","experiment":"fpp-floating-point-protection-rollout","branch":"control"}} -{"timestamp":4439590,"category":"nimbus_events","name":"enrollment","extra":{"branch":"control","experiment":"home-and-newtab-wallpapers-v1-rollout-us-and-ca","glean_timestamp":"1725215686347","experiment_type":"rollout"}} -{"timestamp":4439594,"category":"nimbus_events","name":"enrollment","extra":{"experiment":"tab-hover-preview-release-rollout","glean_timestamp":"1725215686351","branch":"control","experiment_type":"rollout"}} -{"timestamp":4439602,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"rollout","branch":"control","experiment":"encrypted-client-hello-fallback-mechanism","glean_timestamp":"1725215686359"}} -{"timestamp":4439604,"category":"nimbus_events","name":"validation_failed","extra":{"experiment":"add-an-image-to-pdf-with-alt-text-rollout","glean_timestamp":"1725215686361","reason":"invalid-feature","feature":"addAnImageInPDF"}} -{"timestamp":4469283,"category":"nimbus_events","name":"validation_failed","extra":{"reason":"invalid-feature","experiment":"add-an-image-to-pdf-with-alt-text-rollout","feature":"addAnImageInPDF","glean_timestamp":"1725215716041"}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/events b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/events deleted file mode 100644 index 20c2b9e..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/events +++ /dev/null @@ -1,20 +0,0 @@ -{"timestamp":4439100,"category":"webcompatreporting","name":"reason_dropdown","extra":{"setting":"required","glean_timestamp":"1725215685858"}} -{"timestamp":4439365,"category":"addons_manager","name":"manage","extra":{"addon_type":"extension","method":"disable","source":"system-addon","addon_id":"screenshots@mozilla.org","glean_timestamp":"1725215686122"}} -{"timestamp":4439439,"category":"search.engine.default","name":"changed","extra":{"new_load_path":"[app]google@search.mozilla.org","new_submission_url":"https://www.google.com/search?client=firefox-b-d&q=","change_source":"engine-update","previous_engine_id":"google-b-d","new_display_name":"Google","glean_timestamp":"1725215686197","new_engine_id":"google-b-d"}} -{"timestamp":4439566,"category":"nimbus_events","name":"enrollment","extra":{"branch":"enable-csv-import","experiment_type":"rollout","glean_timestamp":"1725215686323","experiment":"csv-import-release-rollout"}} -{"timestamp":4439571,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"rollout","experiment":"upgrade-spotlight-rollout","branch":"treatment","glean_timestamp":"1725215686328"}} -{"timestamp":4439573,"category":"nimbus_events","name":"enrollment","extra":{"branch":"enable-address-autofill","glean_timestamp":"1725215686330","experiment":"address-autofill-desktop-pref-release-rollout","experiment_type":"rollout"}} -{"timestamp":4439576,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"rollout","branch":"treatment","glean_timestamp":"1725215686333","experiment":"highlighting-in-pdfs-rollout"}} -{"timestamp":4439577,"category":"nimbus_events","name":"enrollment","extra":{"experiment":"consolidated-search-configuration-row-desktop-relaunch","experiment_type":"rollout","branch":"rollout","glean_timestamp":"1725215686335"}} -{"timestamp":4439580,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"nimbus","glean_timestamp":"1725215686337","experiment":"long-term-holdback-2024-h2-velocity-desktop","branch":"delivery"}} -{"timestamp":4439583,"category":"nimbus_events","name":"enrollment","extra":{"glean_timestamp":"1725215686340","branch":"control","experiment":"disable-redirects-for-authretries","experiment_type":"rollout"}} -{"timestamp":4439584,"category":"nimbus_events","name":"enrollment","extra":{"glean_timestamp":"1725215686341","experiment_type":"rollout","experiment":"fpp-floating-point-protection-rollout","branch":"control"}} -{"timestamp":4439590,"category":"nimbus_events","name":"enrollment","extra":{"branch":"control","experiment":"home-and-newtab-wallpapers-v1-rollout-us-and-ca","glean_timestamp":"1725215686347","experiment_type":"rollout"}} -{"timestamp":4439594,"category":"nimbus_events","name":"enrollment","extra":{"experiment":"tab-hover-preview-release-rollout","glean_timestamp":"1725215686351","branch":"control","experiment_type":"rollout"}} -{"timestamp":4439602,"category":"nimbus_events","name":"enrollment","extra":{"experiment_type":"rollout","branch":"control","experiment":"encrypted-client-hello-fallback-mechanism","glean_timestamp":"1725215686359"}} -{"timestamp":4439604,"category":"nimbus_events","name":"validation_failed","extra":{"experiment":"add-an-image-to-pdf-with-alt-text-rollout","glean_timestamp":"1725215686361","reason":"invalid-feature","feature":"addAnImageInPDF"}} -{"timestamp":4439604,"category":"nimbus_events","name":"is_ready","extra":{"glean_timestamp":"1725215686361"}} -{"timestamp":4469283,"category":"nimbus_events","name":"validation_failed","extra":{"reason":"invalid-feature","experiment":"add-an-image-to-pdf-with-alt-text-rollout","feature":"addAnImageInPDF","glean_timestamp":"1725215716041"}} -{"timestamp":4469283,"category":"nimbus_events","name":"is_ready","extra":{"glean_timestamp":"1725215716041"}} -{"timestamp":4469887,"category":"addons_manager","name":"manage","extra":{"source":"gmp-plugin","addon_id":"gmp-gmpopenh264","glean_timestamp":"1725215716644","method":"uninstall","addon_type":"other"}} -{"timestamp":4470812,"category":"addons_manager","name":"manage","extra":{"glean_timestamp":"1725215717569","addon_id":"gmp-widevinecdm","method":"uninstall","addon_type":"other","source":"gmp-plugin"}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/prototype-no-code-events b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/prototype-no-code-events deleted file mode 100644 index 0d942a0..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/events/prototype-no-code-events +++ /dev/null @@ -1 +0,0 @@ -{"timestamp":4441920,"category":"browser.usage","name":"interaction","extra":{"widget_id":"tab-close-button","flow_id":"{9122875f-735c-447a-a943-0ddf3eb5fd1d}","source":"tabs-bar","glean_timestamp":"1725215688678"}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/pending_pings/cf501626-0fc1-40f7-80a0-3357d6aa75fd b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/pending_pings/cf501626-0fc1-40f7-80a0-3357d6aa75fd deleted file mode 100644 index c501399..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/glean/pending_pings/cf501626-0fc1-40f7-80a0-3357d6aa75fd +++ /dev/null @@ -1,3 +0,0 @@ -/submit/firefox-desktop/use-counters/1/cf501626-0fc1-40f7-80a0-3357d6aa75fd -{"ping_info":{"seq":0,"start_time":"2024-09-01T14:34:46.128-04:00","end_time":"2024-09-01T14:48:34.828-04:00","reason":"app_shutdown_confirmed","experiments":{"csv-import-release-rollout":{"branch":"enable-csv-import","extra":{"type":"nimbus-rollout"}},"disable-redirects-for-authretries":{"branch":"control","extra":{"type":"nimbus-rollout"}},"highlighting-in-pdfs-rollout":{"branch":"treatment","extra":{"type":"nimbus-rollout"}},"address-autofill-desktop-pref-release-rollout":{"branch":"enable-address-autofill","extra":{"type":"nimbus-rollout"}},"fpp-floating-point-protection-rollout":{"branch":"control","extra":{"type":"nimbus-rollout"}},"encrypted-client-hello-fallback-mechanism":{"branch":"control","extra":{"type":"nimbus-rollout"}},"consolidated-search-configuration-row-desktop-relaunch":{"branch":"rollout","extra":{"type":"nimbus-rollout"}},"home-and-newtab-wallpapers-v1-rollout-us-and-ca":{"branch":"control","extra":{"type":"nimbus-rollout"}},"long-term-holdback-2024-h2-velocity-desktop":{"branch":"delivery","extra":{"type":"nimbus-nimbus"}},"tab-hover-preview-release-rollout":{"branch":"control","extra":{"type":"nimbus-rollout"}},"upgrade-spotlight-rollout":{"branch":"treatment","extra":{"type":"nimbus-rollout"}}}},"client_info":{"telemetry_sdk_build":"60.3.0","client_id":"1f07786a-ad6c-4cd1-9d5f-d5b62f50fea2","architecture":"aarch64","locale":"en-CA","app_display_version":"129.0.2","app_channel":"release","app_build":"20240819150008","os":"Darwin","os_version":"23.6.0","build_date":"1970-01-01T00:00:00+00:00","first_run_date":"2024-09-01-04:00"},"metrics":{"counter":{"use.counter.css.page.css_border_bottom_color":1,"use.counter.css.page.css_stroke_width":1,"use.counter.css.page.css_webkit_background_size":1,"use.counter.css.doc.css_stop_opacity":1,"use.counter.css.page.css_font_weight":1,"use.counter.top_level_content_documents_destroyed":1,"use.counter.css.doc.css_direction":1,"use.counter.css.doc.css_stroke_width":2,"use.counter.css.page.css_font":1,"use.counter.css.doc.css_column_gap":1,"use.counter.css.doc.css_webkit_font_smoothing":1,"use.counter.css.page.css_visibility":1,"use.counter.css.page.css_border_top":1,"use.counter.css.doc.css_text_overflow":1,"use.counter.css.page.css_font_family":1,"use.counter.css.doc.css_stop_color":1,"use.counter.css.page.css_outline":1,"use.counter.css.page.css_transition":1,"use.counter.css.doc.css_background_image":1,"use.counter.css.doc.css_moz_osx_font_smoothing":1,"use.counter.css.doc.css_margin_top":1,"use.counter.css.doc.css_right":1,"use.counter.css.page.css_grid_auto_flow":1,"use.counter.css.page.css_padding_left":1,"use.counter.css.doc.css_float":1,"use.counter.css.doc.css_content":1,"use.counter.css.page.css_margin_right":1,"use.counter.css.page.css_scroll_margin_top":1,"use.counter.css.page.css_stop_color":1,"use.counter.css.doc.css_list_style_type":1,"use.counter.css.page.css_webkit_animation":1,"use.counter.css.page.css_fill_rule":1,"use.counter.css.page.css_stroke_linejoin":1,"use.counter.css.page.css_webkit_font_smoothing":1,"use.counter.css.page.css_webkit_transform":1,"use.counter.css.page.css_webkit_box_sizing":1,"use.counter.doc.mixed_content_not_upgraded_image_success":1,"use.counter.css.doc.css_padding_bottom":1,"use.counter.css.doc.css_moz_appearance":1,"use.counter.css.page.css_webkit_transition":1,"use.counter.css.doc.css_padding_left":1,"use.counter.css.doc.css_pointer_events":1,"use.counter.css.page.css_left":1,"use.counter.css.doc.css_font_family":1,"use.counter.css.doc.css_font_size":1,"use.counter.css.page.css_margin_bottom":1,"use.counter.css.page.css_direction":1,"use.counter.css.page.css_text_overflow":1,"use.counter.css.doc.css_text_align":1,"use.counter.css.doc.css_scroll_margin_top":1,"use.counter.css.doc.css_font":1,"use.counter.css.doc.css_background_color":1,"use.counter.css.doc.css_box_sizing":1,"use.counter.css.doc.css_margin_bottom":1,"use.counter.css.doc.css_position":1,"use.counter.css.page.css_background_color":1,"use.counter.css.page.css_grid_template_columns":1,"use.counter.page.console_info":1,"use.counter.css.doc.css_border_color":1,"use.counter.css.page.css_margin_left":1,"use.counter.css.page.css_width":1,"use.counter.css.doc.css_background_repeat":1,"use.counter.css.doc.css_moz_box_sizing":1,"use.counter.css.page.css_box_shadow":1,"use.counter.css.doc.css_background_size":1,"use.counter.css.page.css_line_height":1,"use.counter.css.page.css_moz_appearance":1,"use.counter.css.page.css_content":1,"use.counter.css.page.css_overflow":1,"use.counter.css.page.css_stop_opacity":1,"use.counter.css.doc.css_bottom":1,"use.counter.css.doc.css_display":1,"use.counter.css.page.css_float":1,"use.counter.css.page.css_stroke":1,"use.counter.css.page.css_text_indent":1,"use.counter.css.page.css_word_break":1,"use.counter.css.doc.css_left":1,"use.counter.css.doc.css_margin_right":1,"use.counter.css.doc.css_border_style":1,"use.counter.css.doc.css_width":10,"use.counter.css.doc.css_grid_column_gap":1,"use.counter.css.page.css_grid_column":1,"use.counter.css.doc.css_list_style":1,"use.counter.css.doc.css_opacity":1,"use.counter.css.doc.css_border_radius":1,"use.counter.css.doc.css_font_weight":1,"use.counter.css.doc.css_outline":1,"use.counter.css.doc.css_fill_rule":3,"use.counter.css.doc.css_webkit_transform":1,"use.counter.css.page.css_min_width":1,"use.counter.css.page.css_padding_top":1,"use.counter.css.doc.css_overflow":1,"use.counter.css.doc.text_size_adjust":1,"use.counter.css.page.css_list_style":1,"use.counter.css.page.css_appearance":1,"use.counter.css.page.css_min_height":1,"use.counter.css.doc.css_min_width":1,"use.counter.css.doc.css_grid_auto_flow":1,"use.counter.css.page.css_right":1,"use.counter.css.doc.css_stroke_linejoin":1,"use.counter.css.page.css_background_image":1,"use.counter.css.doc.css_text_indent":1,"use.counter.css.doc.css_border_top":1,"use.counter.css.page.text_size_adjust":1,"use.counter.css.doc.css_webkit_animation":1,"use.counter.css.doc.css_max_width":1,"use.counter.css.page.css_background_position":1,"use.counter.css.page.css_animation":1,"use.counter.css.page.css_align_items":1,"use.counter.css.doc.css_top":1,"use.counter.css.page.css_background_size":1,"use.counter.css.doc.css_grid_template_columns":1,"use.counter.css.doc.css_webkit_background_size":1,"use.counter.css.page.css_border_radius":1,"use.counter.css.page.css_padding":1,"use.counter.css.page.css_text_align":1,"use.counter.css.doc.css_fill":13,"use.counter.css.doc.css_padding":1,"use.counter.css.doc.css_webkit_transition":1,"use.counter.css.page.css_animation_timing_function":1,"use.counter.css.page.css_webkit_appearance":1,"use.counter.css.page.css_zoom":1,"use.counter.css.doc.css_visibility":1,"use.counter.css.doc.css_zoom":1,"use.counter.css.page.css_margin_top":1,"use.counter.css.page.css_transform":1,"use.counter.css.doc.css_padding_right":1,"use.counter.css.doc.css_padding_top":1,"use.counter.css.doc.css_stroke_linecap":2,"use.counter.css.page.css_background_repeat":1,"use.counter.css.page.css_clip":1,"use.counter.css.page.css_display":1,"use.counter.css.page.css_position":1,"use.counter.css.doc.css_border_collapse":1,"use.counter.css.page.css_border_spacing":1,"use.counter.css.page.css_color":1,"use.counter.css.page.css_padding_bottom":1,"use.counter.css.page.css_background":1,"use.counter.css.doc.css_stroke":2,"use.counter.css.page.css_box_sizing":1,"use.counter.css.doc.css_transform_origin":1,"use.counter.css.doc.css_align_items":1,"use.counter.css.doc.css_border_spacing":1,"use.counter.css.doc.css_grid_template_rows":1,"use.counter.css.doc.css_webkit_box_sizing":1,"use.counter.css.doc.css_border":1,"use.counter.css.page.css_border":1,"use.counter.css.doc.css_clear":1,"use.counter.css.doc.css_border_bottom_color":1,"use.counter.css.doc.css_animation_timing_function":1,"use.counter.content_documents_destroyed":13,"use.counter.css.doc.css_color":1,"use.counter.css.page.css_clear":1,"use.counter.css.page.css_text_decoration":1,"use.counter.css.doc.css_transform":1,"use.counter.page.mixed_content_not_upgraded_image_success":1,"use.counter.css.doc.css_min_height":1,"use.counter.css.doc.css_animation":1,"use.counter.css.doc.css_box_shadow":1,"use.counter.css.page.css_margin":1,"use.counter.css.page.css_border_bottom":1,"use.counter.css.page.css_stroke_linecap":1,"use.counter.css.page.css_transform_origin":1,"use.counter.css.page.css_outline_offset":1,"use.counter.css.page.css_list_style_type":1,"use.counter.css.doc.css_word_break":1,"use.counter.css.doc.css_white_space":1,"use.counter.css.page.css_border_width":1,"use.counter.css.page.css_cursor":1,"use.counter.css.doc.css_margin":1,"use.counter.css.page.css_border_color":1,"use.counter.doc.console_info":1,"use.counter.css.doc.css_appearance":1,"use.counter.css.page.css_column_gap":1,"use.counter.css.page.css_moz_osx_font_smoothing":1,"use.counter.css.page.css_quotes":1,"use.counter.css.doc.css_transition":1,"use.counter.css.doc.css_border_width":1,"use.counter.css.doc.css_border_bottom":1,"use.counter.css.page.css_height":1,"use.counter.css.page.css_top":1,"use.counter.css.page.css_grid_template_rows":1,"use.counter.css.doc.css_margin_left":1,"use.counter.css.page.css_max_width":1,"use.counter.css.page.css_border_collapse":1,"use.counter.css.doc.css_background":1,"use.counter.css.page.css_pointer_events":1,"use.counter.css.doc.css_text_decoration":1,"use.counter.css.doc.css_z_index":1,"use.counter.css.doc.css_height":10,"use.counter.css.doc.css_quotes":1,"use.counter.css.doc.css_cursor":1,"use.counter.css.page.css_font_size":1,"use.counter.css.doc.css_grid_column":1,"use.counter.css.doc.css_outline_offset":1,"use.counter.css.page.css_moz_box_sizing":1,"use.counter.css.doc.css_background_position":1,"use.counter.css.page.css_padding_right":1,"use.counter.css.page.css_z_index":1,"use.counter.css.doc.css_vertical_align":1,"use.counter.css.page.css_border_style":1,"use.counter.css.page.css_fill":1,"use.counter.css.page.css_grid_column_gap":1,"use.counter.css.page.css_vertical_align":1,"use.counter.css.page.css_white_space":1,"use.counter.css.doc.css_clip":1,"use.counter.css.doc.css_webkit_appearance":1,"use.counter.css.doc.css_line_height":1,"use.counter.css.page.css_opacity":1,"use.counter.css.page.css_bottom":1}}} -{"headers":{},"body_has_info_sections":true,"ping_name":"use-counters"} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/session-state.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/session-state.json deleted file mode 100644 index d89253f..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/session-state.json +++ /dev/null @@ -1 +0,0 @@ -{"sessionId":"cdaccdb0-d120-4df2-a641-99a2c8c2a67a","subsessionId":"129981fe-28ea-4dc5-bd07-ee6901b81d5b","profileSubsessionCounter":1,"newProfilePingSent":true} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/state.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/state.json deleted file mode 100644 index 20440f9..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/datareporting/state.json +++ /dev/null @@ -1 +0,0 @@ -{"clientID":"6a3ae85d-19d1-4704-9355-b2caa2e4c90c"} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/extension-preferences.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/extension-preferences.json deleted file mode 100644 index e1e5edd..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/extension-preferences.json +++ /dev/null @@ -1 +0,0 @@ -{"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"pictureinpicture@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]},"addons-search-detection@mozilla.com":{"permissions":["internal:privateBrowsingAllowed","internal:svgContextPropertiesAllowed"],"origins":[]}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/extensions.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/extensions.json deleted file mode 100644 index 0a7d704..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/extensions.json +++ /dev/null @@ -1 +0,0 @@ -{"schemaVersion":36,"addons":[{"id":"formautofill@mozilla.org","syncGUID":"{65af6845-a24d-4dd5-8891-0f5a256d9b5e}","version":"1.0.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Form Autofill","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1724105829000,"updateDate":1724105829000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/formautofill@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"requestedPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///Applications/Firefox.app/Contents/Resources/browser/features/formautofill@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"pictureinpicture@mozilla.org","syncGUID":"{98d633da-4765-449b-a054-4d8c8cd6c5c4}","version":"1.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Picture-In-Picture","description":"Fixes for web compatibility with Picture-in-Picture","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1724105829000,"updateDate":1724105829000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/pictureinpicture@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"88.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":[],"origins":[]},"optionalPermissions":{"permissions":[],"origins":[]},"requestedPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///Applications/Firefox.app/Contents/Resources/browser/features/pictureinpicture@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"screenshots@mozilla.org","syncGUID":"{f00931a1-c4b5-4faa-896e-5c3069a6e7dd}","version":"39.0.1","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":"Take clips and screenshots from the Web and save them temporarily or permanently.","creator":"Mozilla ","homepageURL":"https://github.com/mozilla-services/screenshots","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1724105829000,"updateDate":1724105829000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/screenshots@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"57.0a1","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["activeTab","downloads","tabs","storage","notifications","clipboardWrite","contextMenus","mozillaAddons","telemetry"],"origins":["","https://screenshots.firefox.com/","resource://pdf.js/","about:reader*","https://screenshots.firefox.com/*"]},"optionalPermissions":{"permissions":[],"origins":[]},"requestedPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///Applications/Firefox.app/Contents/Resources/browser/features/screenshots@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat-reporter@mozilla.org","syncGUID":"{92f9b9de-9389-4ee3-a1b9-5065eab78f13}","version":"2.1.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"WebCompat Reporter","description":"Report site compatibility issues on webcompat.com","creator":"Thomas Wisniewski ","homepageURL":"https://github.com/mozilla/webcompat-reporter","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1724105829000,"updateDate":1724105829000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/webcompat-reporter@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["tabs"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"requestedPermissions":{"permissions":[],"origins":[]},"icons":{"16":"icons/lightbulb.svg","32":"icons/lightbulb.svg","48":"icons/lightbulb.svg","96":"icons/lightbulb.svg","128":"icons/lightbulb.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///Applications/Firefox.app/Contents/Resources/browser/features/webcompat-reporter@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"webcompat@mozilla.org","syncGUID":"{02b6bceb-5266-4b44-b2e2-9a6e238e4ecb}","version":"129.5.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Web Compatibility Interventions","description":"Urgent post-release fixes for web compatibility.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1724105829000,"updateDate":1724105829000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/webcompat@mozilla.org.xpi","skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":"102.0","maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["mozillaAddons","scripting","tabs","webNavigation","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"requestedPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"jar:file:///Applications/Firefox.app/Contents/Resources/browser/features/webcompat@mozilla.org.xpi!/","location":"app-system-defaults"},{"id":"default-theme@mozilla.org","syncGUID":"{e3e51a1b-7c1d-4008-9773-ae9fb2aa37d1}","version":"1.3","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"System theme — auto","description":"Follow the operating system setting for buttons, menus, and windows.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1725215685573,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"requestedPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://default-theme/","location":"app-builtin"},{"id":"addons-search-detection@mozilla.com","syncGUID":"{9136405a-0053-4054-a789-693e181a97fa}","version":"2.0.0","type":"extension","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Add-ons Search Detection","description":"","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"embedderDisabled":false,"installDate":1725215685978,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"incognito":"spanning","userPermissions":{"permissions":["telemetry","webRequest","webRequestBlocking"],"origins":[""]},"optionalPermissions":{"permissions":[],"origins":[]},"requestedPermissions":{"permissions":[],"origins":[]},"icons":{},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":true,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-addons/search-detection/","location":"app-builtin"},{"id":"firefox-compact-light@mozilla.org","syncGUID":"{aff9c574-9ffa-44bd-a378-079938f6ae08}","version":"1.2","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Light","description":"A theme with a light color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1725215686115,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"requestedPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/light/","location":"app-builtin"},{"id":"firefox-alpenglow@mozilla.org","syncGUID":"{19c63a1b-6fe4-48f9-8db2-3eaa2cbeb4d8}","version":"1.4","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Firefox Alpenglow","description":"Use a colorful appearance for buttons, menus, and windows.","creator":null,"developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1725215686115,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"requestedPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/alpenglow/","location":"app-builtin"},{"id":"firefox-compact-dark@mozilla.org","syncGUID":"{705619a7-8c94-477b-a04d-f1f57f152382}","version":"1.2","type":"theme","loader":null,"updateURL":null,"installOrigins":null,"manifestVersion":2,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":true,"aboutURL":null,"defaultLocale":{"name":"Dark","description":"A theme with a dark color scheme.","creator":"Mozilla","developers":null,"translators":null,"contributors":null},"visible":true,"active":false,"userDisabled":true,"appDisabled":false,"embedderDisabled":false,"installDate":1725215686115,"applyBackgroundUpdates":1,"path":null,"skinnable":false,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"toolkit@mozilla.org","minVersion":null,"maxVersion":null}],"targetPlatforms":[],"signedDate":null,"seen":true,"dependencies":[],"userPermissions":null,"optionalPermissions":null,"requestedPermissions":null,"icons":{"32":"icon.svg"},"iconURL":null,"blocklistState":0,"blocklistURL":null,"startupData":null,"hidden":false,"installTelemetryInfo":null,"recommendationState":null,"rootURI":"resource://builtin-themes/dark/","location":"app-builtin"}]} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/favicons.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/favicons.sqlite deleted file mode 100644 index dd07c21..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/favicons.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/favicons.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/favicons.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/formhistory.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/formhistory.sqlite deleted file mode 100644 index 1068039..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/formhistory.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-gmpopenh264/2.3.2/gmpopenh264.info b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-gmpopenh264/2.3.2/gmpopenh264.info deleted file mode 100755 index d3d551c..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-gmpopenh264/2.3.2/gmpopenh264.info +++ /dev/null @@ -1,4 +0,0 @@ -Name: gmpopenh264 -Description: GMP Plugin for OpenH264. -Version: 2.3.2 -APIs: encode-video[h264], decode-video[h264] diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-gmpopenh264/2.3.2/libgmpopenh264.dylib b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-gmpopenh264/2.3.2/libgmpopenh264.dylib deleted file mode 100755 index ded66a5..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-gmpopenh264/2.3.2/libgmpopenh264.dylib and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/LICENSE.txt b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/LICENSE.txt deleted file mode 100755 index 354d7c2..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/LICENSE.txt +++ /dev/null @@ -1,9 +0,0 @@ -"Google Inc. and its affiliates ("Google") own all legal right, title and -interest in and to the content decryption module software ("Software") and -related documentation, including any intellectual property rights in the -Software. You may not use, modify, sell, or otherwise distribute the Software -without a separate license agreement with Google. The Software is not open -source software. - -If you are interested in licensing the Software, please contact -widevine@google.com. diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/libwidevinecdm.dylib b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/libwidevinecdm.dylib deleted file mode 100755 index e37cd65..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/libwidevinecdm.dylib and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/libwidevinecdm.dylib.sig b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/libwidevinecdm.dylib.sig deleted file mode 100755 index 4ac6054..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/libwidevinecdm.dylib.sig and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/manifest.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/manifest.json deleted file mode 100755 index d66a843..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/gmp-widevinecdm/4.10.2710.0/manifest.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "arch": "arm64", - "description": "Widevine Content Decryption Module", - "manifest_version": 2, - "name": "WidevineCdm", - "os": "mac", - "version": "4.10.2710.0", - "x-cdm-codecs": "vp8,vp09,avc1,av01", - "x-cdm-host-versions": "10", - "x-cdm-interface-versions": "10", - "x-cdm-module-versions": "4", - "x-cdm-persistent-license-support": true -} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/handlers.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/handlers.json deleted file mode 100644 index 4e79b3a..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/handlers.json +++ /dev/null @@ -1 +0,0 @@ -{"defaultHandlersVersion":{},"mimeTypes":{"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]}},"schemes":{"mailto":{"stubEntry":true,"handlers":[null,{"name":"Gmail","uriTemplate":"https://mail.google.com/mail/?extsrc=mailto&url=%s"}]}},"isDownloadsImprovementsAlreadyMigrated":false} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/key4.db b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/key4.db deleted file mode 100644 index 995430d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/key4.db and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/permissions.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/permissions.sqlite deleted file mode 100644 index f19349e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/permissions.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_arts_and_entertainment.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_arts_and_entertainment.json deleted file mode 100644 index aee3dd4..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_arts_and_entertainment.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.677708277, "feature_log_probs": [-7.236267784, -8.716396407, -9.121013262, -6.584867328, -7.591119508, -6.883199885, -7.068568495, -7.143575713, -7.251356502, -7.060888944, -7.199786722, -7.26879577, -7.271431861, -7.362033081, -7.066645372, -8.383308425, -7.997631429, -8.002858402, -8.18306169, -7.894255353, -7.848044839, -7.676607032, -7.442378104, -7.314065597, -7.130654873, -7.21859737, -7.147165893, -7.190959153, -7.131590462, -6.993658969, -7.147150142, -7.321302426, -7.117403942, -7.578199252, -7.906544691, -7.862703013, -7.697840855, -7.40821737, -7.812865432, -7.806620115, -7.802947865, -7.607257126, -7.235598807, -8.029586793, -8.37562097, -8.367330454, -8.265550768, -7.752469511, -8.214037625, -7.719654647, -8.292127582, -8.472150835, -8.619812055, -8.218931051, -7.542389272, -7.019958968, -8.031525909, -7.524667017, -7.880387268, -8.332063427, -7.046922415, -7.019705887, -6.98823426, -8.618064443, -6.190891142, -6.461682567, -7.426968709, -6.333881392, -7.193600066, -8.067151448, -7.641885786, -8.249339022, -7.690359658, -8.282267701, -8.223739271, -8.709102148, -7.441555661, -6.894084475, -7.730566781, -7.452797455, -6.931864027, -6.902856035, -6.467644601, -7.319271091, -8.044872103, -7.602159263, -8.04846734, -7.465778495, -6.847872264, -6.686981702, -6.244239306, -7.5026104, -7.693473023, -7.237853351, -7.199287992, -7.964067559, -8.203340412, -7.597492607, -7.51751159, -7.976262677, -7.544332938, -7.464913693, -7.398884305, -7.200261385, -9.344937533, -7.54411518, -7.218331664, -7.998493267, -7.735218295, -8.015014822, -8.440938101, -7.199845353, -5.736239363, -7.466385067, -6.305341395, -6.471291434, -7.207773242, -7.003173935, -6.803421031, -7.190773087, -6.172482535, -7.16347625, -7.473331231, -7.269614986, -7.252528952, -8.122155467, -8.086163967, -7.115944823, -7.326087863, -6.449566922, -7.285754806, -7.696881764, -6.44158933, -6.866499476, -8.171003994, -7.63349569, -6.857073321, -8.134998843, -7.332880264, -7.223212437, -7.022040376, -6.918933869, -7.956318081, -7.169846598, -7.489637738, -7.919651099, -7.076768796, -6.175438961, -6.732025495, -6.294420773, -7.56060653, -9.671169925, -8.312768982, -6.645264343, -5.946924785, -7.786399662, -7.585988285, -7.186964564, -7.744861553, -7.21901482, -7.000965391, -6.186677033, -6.936539949, -7.027555847, -7.598812025, -6.82176322, -7.361111236, -7.531366154, -7.53966437, -7.217187539, -7.294839474, -7.166524779, -7.284831988, -6.614490288, -7.229592881, -7.210103701, -7.167925171, -7.958669214, -7.557976455, -7.074866936, -7.325986662, -6.884555397, -7.657888306, -7.868739721, -6.374361227, -7.37129383, -6.364518938, -6.752777284, -8.073067744, -7.407878653, -7.659870391, -7.336445, -6.726849637, -8.230987114, -7.075118741, -8.345413261, -8.142283082, -6.524175667, -7.242590196, -7.581116789, -8.069432554, -7.17045573, -7.714888299, -7.092688497, -7.190008959, -7.347742329, -7.514865062, -7.353296052, -7.198338468, -7.334104417, -8.061678492, -7.309643894, -5.755473008, -5.949932971, -7.184681242, -6.999729046, -6.482590434, -7.647714711, -8.247825302, -7.306568285, -6.251822514, -7.081870741, -7.325829826, -7.158171026, -8.143915809, -7.055364426, -7.046886684, -7.857919855, -7.455312321, -7.492652533, -7.36268568, -7.144524977, -6.251335224, -6.538308727, -6.742189466, -6.385709244, -6.704398669, -7.764570204, -7.647603573, -7.504753276, -8.086271448, -6.7331882, -7.590418247, -7.185521061, -7.534532226, -7.668238649, -7.452838082, -7.884523748, -7.883440888, -7.137334102, -7.642192201, -7.522238832, -7.125990731, -7.092838769, -8.108343349, -8.651455016, -7.014172246, -6.862531694, -7.032295095, -6.606378867, -7.871396195, -7.296060209, -7.242644092, -7.06435738, -6.880756237, -7.456522535, -6.619974989, -7.442102895, -7.02459526, -7.838911377, -6.990063774, -6.322639561, -7.529483514, -7.888003918, -8.613967682, -7.222615671, -7.558759124, -7.469742176, -6.643210719, -6.670076356, -8.625715916, -8.932755209, -7.232156502, -6.85956092, -6.414840027, -6.078442988, -6.751074805, -6.624382927, -7.12945212, -6.529355155, -7.581081924, -7.504204051, -7.177726405, -7.947277311, -7.248424834, -7.406008505, -7.74498952, -7.313709021, -9.411063522, -6.764232012, -7.818591709, -7.321767938, -7.056486704, -7.395023996, -7.75835413, -7.8652889, -5.860009259, -5.978751582, -7.25596605, -7.100605393, -8.02134907, -6.425603187, -7.683602704, -7.20519958, -7.730466098, -6.950683032, -7.80112836, -6.26682214, -6.692526592, -6.325735073, -6.224021571, -7.360017603, -6.428760054, -5.653267181, -7.207479719, -7.210817193, -7.378752554, -6.653278628, -7.583416878, -7.222438488, -8.099931808, -7.76658895, -7.245067151, -6.5116807, -7.353580906, -8.187391241, -7.807386697, -7.674311858, -7.155013056, -7.922773263, -7.95267743, -8.860279443, -6.578107665, -7.45520072, -7.504160093, -7.48407679, -7.429370807, -7.575444838, -8.455642811, -8.608211256, -6.29768957, -7.061532157, -7.498216174, -9.28499613, -7.443269422, -7.409694616, -7.06008514, -7.024762993, -5.629974509, -6.424135996, -7.212527786, -6.976901755, -8.641242576, -8.411122897, -6.977845357, -7.214404158, -7.17278028, -7.359123972, -8.151276987, -6.99009082, -7.172832414, -7.250888274, -7.765456407, -6.730312762, -7.575035124, -7.666133021, -8.124886566, -8.239775987, -7.189908419, -6.959602149, -6.610899859, -7.320747652, -6.626746315, -7.209277243, -7.400105123, -7.230326764, -6.322155484, -6.72726819, -6.796609232, -6.467544197, -6.726284086, -7.197729178, -7.579934075, -6.667511945, -7.089328647, -7.510095265, -7.41145194, -7.498632112, -7.646010054, -6.164230965, -6.998408378, -6.729733146, -6.560728218, -7.065449543, -6.554711848, -6.920022828, -7.882870674, -7.478287851, -7.202009347, -8.412660242, -5.314908272, -6.410097492, -6.830861365, -6.951227164, -8.489255737, -7.318319471, -7.283933064, -8.359680423, -7.632522621, -7.547568079, -7.278456309, -7.603543672, -7.174740688, -7.595444677, -7.572659542, -8.386733784, -7.061360489, -7.478883412, -7.747735259, -6.945852838, -7.346725519, -6.817943111, -6.616422932, -7.593462942, -6.640358139, -8.132476264, -6.723087853, -6.779575213, -6.670715098, -7.669630659, -7.073585405, -7.125882539, -7.688590094, -7.781331216, -7.403531126, -7.094857969, -8.033004195, -8.703129533, -6.608209045, -6.559483744, -6.471501893, -6.805508553, -7.010807148, -7.212573431, -7.317390365, -8.109157257, -8.059998536, -6.985479786, -6.876218882, -5.849381809, -7.090662863, -5.931902285, -8.015976689, -5.909052572, -7.882264566, -6.130934109, -7.230897026, -7.893957664, -6.679731131, -8.663957508, -7.687934721, -8.763051689, -7.318818503, -7.769687915, -6.58218739, -7.021480219, -7.164223292, -6.788994515, -6.858660029, -6.756191746, -7.408654678, -7.306301415, -6.836717814, -7.295527162, -6.955752177, -6.543551993, -7.858531248, -7.318250403, -6.600005854, -6.651624034, -8.302887709, -6.92155354, -6.940083411, -7.028771561, -7.712802849, -6.794246797, -7.546910375, -8.023217979, -6.624327249, -8.099352137, -7.681272471, -6.432141624, -6.934165018, -7.583237619, -6.606322346, -6.544377579, -7.159901095, -6.547508346, -7.045673431, -7.668921388, -7.075505787, -7.09905967, -6.460681394, -7.296177734, -6.658731893, -7.902778455, -7.151198852, -9.085742527, -6.389881376, -7.035789934, -7.505629819, -6.76430871, -7.06012212, -7.397320347, -7.372483466, -7.868970202, -7.058073378, -8.708736891, -7.37155173, -7.734880087, -7.531695909, -6.829378419, -8.033709446, -10.193893066, -8.335194968, -7.037402047, -7.834558586, -7.388743334, -6.962654056, -6.932782107, -7.977671049, -6.796456283, -7.715749127, -7.299120138, -6.819457022, -7.947269543, -6.910075907, -6.656669983, -7.530719797, -7.780389244, -9.291728217, -7.368011375, -8.187484596, -7.382256328, -6.523505578, -7.721295579, -7.750607215, -7.185827185, -6.785273995, -7.347711447, -6.792889023, -7.276898678, -7.859339195, -6.275129079, -7.081579199, -8.749719515, -7.384029857, -7.462100344, -7.018802731, -7.306803473, -7.396084924, -7.008227796, -6.66708483, -7.50028257, -7.488513547, -6.138114039, -6.809252272, -6.877769761, -5.770522565, -7.701702803, -6.791836603, -7.032886804, -7.567422841, -7.394377838, -7.506253422, -6.831904208, -6.499339606, -7.317896972, -7.467920311, -7.549808968, -7.128521003, -7.780243402, -7.215285579, -7.387342579, -7.890579766, -7.090424772, -7.568662179, -7.515251774, -6.761360636, -8.145775005, -8.175409131, -6.52489882, -7.23075056, -7.9986208, -5.662183061, -6.836042582, -7.871038837, -7.653381203, -8.333044888, -6.891658199, -7.211420532, -8.05083908, -7.998066161, -7.109119107, -6.827697449, -6.123614423, -6.327366339, -6.808350382, -6.866498607, -6.147729301, -7.314287703, -7.550471312, -6.926103751, -6.31758817, -7.600780224, -6.200678089, -7.016740287, -6.683257404, -6.869812528, -7.161164132, -7.983055938, -6.895268872, -6.17149251, -7.580362014, -5.82065645, -7.3367723, -7.590859417, -8.256692808, -7.645233251, -7.394372061, -7.009627976, -7.221368369, -7.184311209, -5.881768025, -6.380750106, -6.546051829, -7.308220693, -5.759393682, -8.822100641, -7.37798669, -7.247655637, -7.625452572, -7.795563084, -8.462060195, -7.328454446, -7.401087646, -7.410679308, -7.040045671, -6.469097241, -6.917603862, -7.833264604, -7.124110025, -7.307978973, -6.444754972, -8.029177787, -8.711255592, -7.304442313, -7.608022263, -7.554497998, -6.487487951, -7.217187036, -6.936281769, -6.506309311, -7.188192314, -7.140597682, -8.560276991, -7.040074999, -6.699992886, -7.195031858, -7.08837762, -7.27404732, -9.308937473, -7.806015205, -8.319532662, -7.288011365, -6.466542148, -6.878234798, -6.800289604, -7.383461662, -7.188954112, -7.263979723, -6.682967199, -7.280005149, -7.209885945, -7.458685441, -5.754141013, -6.369054564, -7.311532954, -5.581537321, -6.535438865, -7.873080716, -7.195671712, -5.567731039, -6.273364839, -11.136493696, -6.996304182, -7.58982431, -7.135020569, -7.281063217, -7.945442625, -7.758341451, -7.284232929, -7.348745865, -7.417008633, -6.715494726, -7.235465781, -7.570489637, -8.171175023, -8.130791777, -6.411531616, -7.396179899, -5.37102103, -6.672793757, -7.354237053, -8.663194405, -6.026741663, -9.274418629, -7.703507604, -7.736360562, -7.636519858, -7.455361571, -7.336716212, -6.916084286, -7.563193822, -6.996567266, -7.795298241, -8.209427402, -7.416841664, -7.538759625, -7.515334168, -7.009206855, -7.825033779, -6.691758611, -6.063384673, -7.510320819, -7.426535091, -7.460580582, -7.019362266, -7.436091254, -6.981141195, -7.646757242, -8.723111786, -8.46967883, -7.244414053, -7.890265773, -6.442960355, -7.257852904, -8.08672706, -7.084228772, -7.768520598, -7.661140621, -7.586179318, -7.143866656, -7.35815781, -7.33964195, -7.20523602, -7.550848562, -7.385855803, -6.814777285, -6.65475482, -6.969649461, -7.532292773, -7.656276286, -7.048654842, -6.497382035, -7.643627594, -7.522024618, -6.3765638, -7.231358193, -7.401595311, -7.005902453, -7.274252804, -7.15494561, -7.177072159, -9.971693253, -7.811890798, -7.55334175, -7.058488179, -6.913482638, -7.199958626, -6.443613169, -7.677882816, -7.447722209, -7.673395815, -7.641984305, -7.790197597, -6.206474915, -6.393307562, -7.65891226, -8.293690218, -6.650420991, -6.672054527, -6.925937366, -10.510555085, -7.571908747, -6.23049235, -6.475168544, -7.705464456, -7.276946083, -8.992128479, -7.128378049, -6.546441002, -6.825621636, -8.060972827, -7.903971432, -7.340697253, -6.712621912, -7.707628418, -6.71368238, -7.420261991, -8.998836006, -8.081044427, -7.775890791, -7.301621021, -7.430928153, -7.63169168, -8.363586024, -6.62996559, -7.701796244, -8.066087328, -8.497293779, -7.594091477, -6.710988137, -7.394744141, -7.647473206, -6.995606535, -7.976857177, -7.23239326, -6.731624698, -7.81011081, -6.297268244, -8.251560938, -7.602487022, -7.654849176, -6.768435433, -7.301358181, -8.335084002, -8.441567719, -6.896729407, -7.558092775, -7.710027372, -7.412367298, -7.690908588, -8.766549974, -6.872130018, -7.044366443, -7.965206816, -7.46024103, -6.724928634, -7.627374057, -6.645545496, -8.270350501, -7.943601377, -6.587560777, -7.078612135, -7.53240817, -6.158336547, -7.144409566, -7.557269233, -5.71466702, -6.954767028, -7.50168511, -7.822083088, -7.121794939, -6.926078648, -7.007179922, -7.607440185, -7.407182249, -7.754778893, -7.203822506, -7.49388704, -7.66040382, -7.092945635, -7.860740011, -7.101559847, -6.994071437, -6.929242194, -8.315239623, -7.996896654, -8.357759477, -8.337707315, -10.227319495, -7.594305049, -7.222865734, -7.793086361, -8.210475291, -6.520960144, -7.251896344, -7.519656706, -7.736849528, -7.373147485, -7.838567019, -6.125270586, -7.469317131, -8.284578984, -7.552723054, -7.152479193, -6.640800686, -6.50898077, -6.454778463, -7.775130824, -6.925658006, -7.302360254, -7.892598437, -8.613979196, -8.109314105, -7.757699584, -7.591701741, -10.316215094, -6.80033571, -6.127272423, -6.865070683, -8.42032627, -6.130598586, -6.632879311, -6.291864644, -7.244673413, -6.838236149, -6.992123604, -7.914325938, -7.821473723, -5.707234145, -7.311612549, -6.552777464, -7.249628702, -8.222090597, -8.12932447, -7.193280165, -6.512582646, -8.485305835, -6.579338549, -7.698800999, -7.756804485, -6.585323668, -7.478457632, -7.686299594, -5.566688877, -10.379896026, -7.282083351, -8.227198382, -6.249829849, -7.599311314, -7.173671986, -6.764606083, -7.260346854, -8.234778182, -7.264268729, -7.50107363, -6.980550093, -6.866526854, -6.738318345, -7.977115249, -6.224785795, -7.432136585, -7.529877547, -7.40512895, -7.413258597, -7.080057629, -7.120374647, -7.71355581, -8.672458026, -7.636088125, -8.205922114, -7.836735569, -7.779051433, -10.16629528, -6.965247032, -7.583325538, -6.969016161, -6.810929172, -7.385975071, -8.137108573, -7.634636059, -7.117567094, -6.024770912, -6.592821197, -7.081548554, -6.768438221, -6.349054357, -6.894203138, -7.582953232, -7.370182036, -6.722836803, -7.374073685, -7.447255637, -6.975080878, -7.516058205, -8.389081764, -7.757313096, -7.136401548, -7.738436185, -8.036999788, -11.136493696, -7.804542801, -6.513925666, -7.348551276, -8.290603884, -6.225425888, -6.908182071, -6.83899198, -6.573825161, -7.634771989, -7.390179102, -7.304314601, -7.62026215, -7.548947636, -7.387510615, -6.983888257, -7.356857102, -7.071620757, -7.817800148, -6.380506136, -5.639791635, -7.381133351, -7.215124966, -8.430286342, -6.792289574, -7.290301431, -8.716663652, -6.595434482, -7.113792326, -8.089087607, -6.657054633, -6.802187936, -7.195668207, -7.176310241, -7.750922481, -7.117248791, -7.59884264, -7.734802, -6.752009729, -8.595732695, -7.599548945, -7.185130728, -6.678030437, -7.123734442, -7.180925367, -6.515721948, -6.737566937, -6.855946089, -8.614297441, -7.480229465, -6.249799997, -6.555631086, -7.336160005, -6.947632843, -8.106774523, -7.842102666, -7.129244462, -7.863530073, -7.77196676, -7.123175876, -6.201862176, -6.725763543, -7.5973958, -7.600468156, -7.554033756, -5.941675649, -5.808944139, -5.754166728, -7.129290245, -7.456634138, -6.469662005, -7.615174889, -6.389925444, -6.832663215, -7.754195964, -6.841086388, -6.495596272, -7.228383017, -6.691813988, -8.017439137, -8.681622936, -8.040678001, -7.410466293, -7.525969386, -7.103522089, -6.737273738, -7.450031805, -7.489621682, -8.313549608, -7.871479483, -7.288921808, -7.758363838, -6.52451546, -7.462539688, -6.74083804, -7.279258597, -6.88399992, -6.53648331, -7.002235954, -6.933094558, -7.099726734, -5.896210382, -6.772677671, -7.512076706, -8.192457465, -8.041199793, -7.912470415, -6.950143303, -7.82836929, -7.616418054, -7.62278273, -7.30828349, -7.511453977, -8.368372708, -6.822551271, -6.575985763, -8.368593146, -8.804666481, -8.705889378, -7.554577002, -7.11471867, -7.376733529, -7.918346816, -9.016899494, -7.48497447, -9.188493064, -7.616705572, -7.474962252, -5.7593166, -9.735809511, -6.924945964, -6.053165307, -7.031925345, -7.087852267, -7.609304291, -7.301475147, -6.550081796, -8.908113163, -7.585092051, -7.501116274, -7.446213225, -7.370747165, -6.091168582, -6.352835586, -6.948622886, -6.738542697, -7.850811149, -6.516473472, -6.468958446, -6.746898486, -7.370580259, -5.716162366, -7.003524311, -7.231815966, -7.865839908, -7.576475629, -6.381184476, -7.394475065, -8.744299312, -6.887091163, -6.370204371, -7.046969441, -6.308542561, -7.833454968, -6.905149949, -9.068444662, -8.644237307, -7.693821735, -7.816273319, -7.835578577, -6.291271048, -6.388746353, -6.926149268, -6.993357908, -9.937572811, -6.99830677, -5.753073311, -6.948776283, -6.553600948, -6.889220018, -5.794594952, -7.323514915, -7.132805217, -6.971379671, -6.720132045, -6.997235001, -6.532706437, -6.755005494, -7.059435117, -6.624325499, -9.344916717, -7.092096334, -6.013319819, -5.833672662, -6.955502346, -6.097977725, -6.368681411, -7.009443034]}, {"log_prior": -0.708828186, "feature_log_probs": [-6.123587954, -8.153503246, -7.907503764, -5.934326922, -6.809606942, -6.662890233, -6.52027882, -6.971792708, -7.054036746, -6.599337799, -6.92147711, -7.083446763, -7.035678439, -7.395711363, -6.468624391, -8.140285574, -8.091945356, -8.164614503, -7.900574707, -8.148218985, -7.718053137, -7.538919257, -7.696477409, -7.354148199, -7.205731091, -7.204682221, -7.126154148, -7.016525884, -7.09487419, -7.048687376, -6.929572173, -7.01291221, -6.794478146, -7.34472364, -7.304994254, -7.174894496, -7.077978937, -6.728381698, -7.513738885, -7.489372303, -7.40782729, -7.50595757, -6.667709202, -7.560205518, -7.79964703, -7.819666448, -7.580539543, -7.083478603, -7.539725942, -6.747498849, -7.382731698, -7.033169613, -7.601401292, -7.644419733, -7.1471828, -6.517081418, -6.836145026, -6.473493952, -6.892941528, -7.474146335, -7.210744345, -8.485078044, -7.006754875, -7.311313175, -9.199786689, -9.482352734, -7.558611751, -6.70306913, -7.411614209, -6.321045745, -6.941805721, -7.290466431, -7.395355495, -7.286341585, -7.234166261, -7.126786099, -7.617745341, -7.045475029, -7.273734214, -7.816553694, -7.143132892, -7.148564809, -9.532772873, -8.38835212, -7.082659207, -7.746816308, -7.111349466, -7.538121846, -6.639934869, -7.345204506, -6.832525326, -7.241297613, -9.159280786, -9.874375782, -8.50037761, -6.830729531, -6.714837742, -7.505090765, -6.925930771, -6.171966109, -7.617765455, -8.250088424, -7.702167304, -6.680551342, -7.025049361, -7.120701954, -7.412309572, -8.976656551, -7.846342828, -6.75692321, -7.13457966, -7.041471424, -7.698624655, -6.700958923, -9.080824907, -8.486845855, -9.015163128, -7.020507732, -7.036350629, -7.169670156, -8.021794958, -8.299206319, -7.898365267, -6.885571806, -6.493089086, -6.76040524, -7.247318893, -7.926337683, -9.132977513, -6.853891467, -7.858142319, -7.79322592, -7.18708074, -8.197550677, -7.223977931, -7.208374559, -6.349144063, -7.03481605, -7.582115075, -8.306069495, -7.59923245, -7.386261615, -7.066272636, -7.880934684, -7.976089999, -7.047110152, -6.943292728, -6.091358462, -6.165179181, -6.415042585, -7.303791226, -5.96018331, -6.796985578, -6.805378466, -6.867852345, -6.364327628, -6.912089714, -7.733873558, -6.960429006, -8.773316782, -6.191606926, -6.392415345, -6.729204059, -7.751772926, -7.065894407, -8.440128515, -8.034882907, -6.804089788, -7.381042418, -7.179502713, -8.141938933, -7.15690306, -7.967154743, -9.275540638, -8.591471003, -8.221510277, -7.827887347, -7.234892434, -6.628622615, -6.744083286, -6.914015445, -6.280341101, -6.382569035, -7.350686638, -6.600283732, -7.47942736, -6.975471046, -6.79567235, -8.036618437, -6.095741499, -7.266852992, -6.749824485, -7.295687943, -6.807929086, -6.583797321, -7.204236448, -7.103709909, -8.98461932, -6.977279832, -7.600397049, -7.12420175, -7.070790611, -7.516597844, -7.344732883, -7.079544721, -7.366512643, -7.236333757, -7.308361447, -6.347976014, -7.555744025, -6.872234961, -7.451247516, -7.693527455, -7.941031695, -6.710925804, -7.602613411, -6.917164267, -7.372314939, -7.046169027, -8.298047889, -6.394200538, -7.304082835, -7.934080592, -7.016396492, -6.612833501, -7.126950657, -7.91345563, -6.609706732, -7.598863693, -7.735539621, -7.42955252, -7.466926471, -6.549222298, -10.881566329, -6.723545779, -10.118785154, -7.069171281, -7.258404383, -6.769228497, -6.714574772, -6.359709679, -6.13314824, -7.25634158, -7.162723819, -7.488081411, -7.039357278, -7.354166911, -6.932053365, -7.352686553, -6.576892349, -7.138278473, -6.703016725, -8.079332384, -7.398770452, -6.447907307, -7.027162249, -7.925270062, -6.865228763, -7.389677254, -6.60350543, -7.015360574, -7.295511308, -8.115622761, -6.497032728, -7.140876263, -7.465748864, -7.516158762, -7.261777899, -8.084548153, -7.879137565, -7.618813069, -7.435770789, -6.923594934, -7.25900113, -6.747260764, -7.353375045, -7.094308192, -8.684020035, -9.246832136, -7.583442424, -5.692926232, -6.639835685, -7.586138473, -8.557512165, -7.520421808, -6.174876483, -6.702274845, -7.608539179, -6.97061556, -7.3020407, -7.383213457, -7.294336189, -7.443791527, -7.622938909, -7.658484036, -7.649257098, -7.343902714, -7.677734182, -8.455694225, -6.599618426, -7.027935729, -8.453708388, -7.45190217, -7.308554295, -7.288139802, -6.784818388, -6.555910838, -6.651518898, -7.929489802, -7.776610956, -7.039928432, -6.288183335, -7.008338557, -7.520612563, -7.711718965, -8.748656378, -7.287351499, -7.766944791, -9.615347886, -6.387750957, -6.636517382, -7.051435428, -6.598405585, -5.722897411, -8.056689241, -7.165957236, -6.887597722, -9.430479415, -8.054263076, -8.45068176, -6.894217488, -7.437970986, -7.376440871, -6.899838738, -7.516827798, -6.936435428, -7.050023006, -7.717268737, -6.528231868, -7.136175741, -8.255608466, -8.355901811, -6.331771855, -7.327821579, -7.085255644, -7.193845695, -7.714187385, -6.977973536, -7.49944478, -8.057476628, -6.445522645, -8.03929964, -6.915646005, -7.174791392, -7.6640189, -7.289908597, -8.501187028, -7.418106016, -8.903982463, -10.239045088, -8.152494246, -7.092217134, -6.815069908, -7.610808533, -7.509749989, -7.574653173, -7.430701943, -8.25311142, -7.068091395, -7.372604286, -6.338652593, -7.761607203, -7.273410153, -6.579667283, -7.660660206, -7.597654639, -7.549713141, -6.903813953, -7.686677486, -7.324436549, -6.93329827, -6.452213583, -6.71950132, -8.21204416, -7.466554801, -7.857298151, -6.658368911, -7.98517104, -7.677455057, -7.974933039, -6.762210814, -7.870446316, -7.072165428, -7.997221237, -7.218651785, -7.322315777, -8.179388728, -6.61010726, -7.690034133, -6.409252199, -7.19533749, -7.946920937, -7.481270519, -7.858964912, -9.223834924, -7.272631766, -7.0452768, -7.905287168, -7.32522312, -6.735723865, -7.963981407, -8.633858297, -7.617831156, -7.191190767, -6.845240186, -7.210150141, -7.313468847, -8.134571679, -7.198185028, -6.581657476, -6.992620865, -7.770466822, -6.939926269, -6.456355589, -7.373259381, -7.362666651, -6.841082951, -7.439752945, -7.206062038, -6.274847811, -7.449463893, -7.397250795, -6.975262437, -7.617451711, -7.093573526, -6.867512478, -8.520738009, -6.825671666, -5.991768178, -6.664709399, -7.723340558, -7.265192494, -6.841038661, -7.441070606, -7.673319391, -8.438565313, -7.847019481, -7.560063605, -7.211965503, -6.562774714, -8.448925261, -8.323874151, -6.859669336, -7.412133207, -7.546349968, -7.197651265, -6.978068573, -8.16617271, -7.114776025, -6.245898023, -7.820720018, -6.06589054, -5.738964647, -6.926626928, -6.585528791, -6.231078577, -7.500861099, -6.917193576, -6.506562245, -7.205956393, -7.199963726, -6.798821218, -7.994883216, -7.021379098, -7.742064053, -8.076666641, -7.918908255, -6.987858602, -9.394971025, -6.720278372, -7.15131725, -7.365199216, -7.847253348, -7.58234824, -7.342052037, -6.706523552, -9.767613067, -7.591392757, -6.70317619, -6.745504993, -6.14462815, -7.538242677, -7.608738907, -7.001506889, -7.850424593, -5.987551596, -7.471513527, -7.419585545, -6.303701956, -6.839108696, -7.436512108, -7.20798641, -7.074413679, -7.13391956, -9.245347904, -6.036763337, -7.154728047, -9.428804196, -7.709143629, -7.260800946, -7.679161977, -6.910571016, -6.636448274, -7.204079127, -6.618513834, -7.30414198, -8.476736459, -7.515477683, -6.80098459, -7.199908956, -7.799828174, -7.163140185, -7.168686313, -7.730077556, -7.646577235, -7.174925003, -6.310069177, -6.845329391, -6.726603437, -7.278973978, -7.25044045, -6.544652577, -7.313312459, -6.750186804, -7.238751022, -6.750655629, -7.803400189, -6.310939551, -7.024835235, -8.087300689, -7.207158358, -6.818554974, -7.522871251, -7.563295249, -7.564319284, -7.005930458, -6.901120391, -7.28330418, -7.765755837, -7.84668441, -6.69686633, -7.558442877, -7.686265731, -7.325149324, -6.577108933, -7.013849978, -7.185332855, -8.222888912, -7.920463749, -7.219953174, -6.51814479, -7.088287194, -9.414898275, -7.355698011, -8.337853009, -7.08730262, -7.660935859, -7.196338783, -7.284583443, -7.809191772, -6.697227904, -8.517687543, -7.027532117, -7.968940688, -8.077821681, -7.063286796, -7.826097024, -7.587319745, -5.920524918, -7.436981374, -6.830081298, -7.856876585, -7.037244577, -7.124113876, -6.607887783, -7.177526423, -6.963060482, -7.230068683, -8.832244631, -6.889808167, -7.080918815, -7.69924594, -6.47634551, -7.514944739, -6.874982049, -7.252107693, -7.759960259, -7.195889723, -6.743713304, -7.23459502, -7.51888284, -6.323932401, -6.553231025, -7.448558962, -6.024681626, -6.719792128, -7.411387907, -6.597146663, -7.341529214, -6.837973497, -7.981364075, -6.874314504, -7.071567672, -6.401170124, -8.124261514, -6.352827318, -6.909542712, -7.351960542, -7.138149237, -5.826309914, -6.671257396, -7.441808921, -6.91017294, -6.173733497, -6.810021578, -6.389277327, -7.586214965, -6.57458217, -7.115885727, -8.406762983, -7.436468123, -7.36247228, -6.289648688, -7.542161449, -6.734515892, -8.008869913, -6.520533247, -6.897246842, -7.340322609, -8.393662219, -7.799319962, -7.175270731, -7.092144421, -5.681364358, -6.563111153, -6.600531238, -7.637531995, -7.186907352, -6.817465853, -7.14572125, -7.348737334, -6.33702586, -7.28411444, -9.250537314, -8.509413938, -7.373408694, -7.717409707, -7.156233773, -7.130832955, -6.960218886, -7.51769292, -6.378630389, -7.738687828, -6.925178148, -7.035435954, -6.981006375, -7.471826418, -7.443803096, -7.295868198, -6.788083847, -7.8424936, -7.817253454, -7.665178188, -7.27429439, -8.206294928, -7.279249152, -6.384184791, -6.890825743, -7.690034132, -6.817491946, -10.255819159, -6.816332871, -6.38768935, -6.94593181, -7.343191316, -7.466065283, -8.338861357, -6.117404045, -6.609186136, -6.827471147, -7.360451479, -7.765693747, -7.528775465, -8.018625525, -7.268142338, -8.63147772, -8.78066645, -7.1787849, -6.525578896, -7.324835896, -7.091180636, -8.355620761, -7.844107054, -9.72152737, -7.521200281, -7.613488827, -7.690684338, -8.498848061, -6.944752881, -7.04805151, -7.241524914, -7.118557606, -7.400135878, -7.15690774, -5.754729227, -7.103125713, -6.58477421, -7.254743544, -6.892167341, -9.200454668, -6.693391712, -5.453810583, -6.718089448, -7.460457379, -10.155062437, -7.113382511, -8.194332992, -6.671666289, -7.514715976, -7.656890519, -6.988718231, -7.626439614, -7.32032205, -7.682894667, -6.400550754, -7.171698752, -8.13445156, -7.594429566, -6.845116914, -7.085856117, -7.45999985, -7.848184508, -7.925032115, -6.581954027, -7.693820756, -7.167691223, -6.554637336, -6.533291219, -7.783015139, -8.028888455, -7.69530054, -7.122522877, -6.68407866, -6.683968804, -7.195510782, -7.23912069, -6.984522428, -7.439080845, -6.544868659, -6.989354213, -7.513734124, -6.819089057, -7.842293755, -7.506020228, -7.211278393, -7.433599632, -7.347264117, -7.318510613, -7.399087627, -6.912062167, -8.42242481, -6.768599789, -6.190469427, -7.140987356, -7.010908155, -8.346120792, -7.318999037, -6.725912108, -6.730392032, -6.577040344, -8.166258504, -7.280833316, -6.84698686, -6.879834177, -6.936082479, -7.083146671, -7.317598962, -7.632105633, -7.5970922, -8.926806606, -6.55467384, -7.423172252, -6.609719513, -7.989882876, -7.240325403, -7.09634653, -6.901030191, -7.684735508, -6.910753389, -6.693631502, -7.653842585, -8.751252332, -9.212408636, -7.026424978, -7.536350209, -7.798544425, -6.518500411, -7.217644397, -7.8264152, -7.1368231, -7.470923689, -8.333477972, -7.069327689, -7.124781778, -7.10002163, -6.651547169, -6.602881359, -6.981362579, -6.540575434, -7.291364391, -7.907749111, -7.143806483, -7.310006724, -7.56913644, -6.947583801, -7.210693373, -7.109138815, -7.061961996, -7.178050949, -6.494113048, -7.368107826, -7.196976336, -6.644699427, -6.511279861, -6.760941704, -6.40065222, -7.540064898, -7.735461652, -9.803432183, -6.76382668, -7.270314409, -6.870822571, -7.149303529, -7.010511262, -6.586266325, -7.222112621, -6.455429511, -6.797261795, -6.798390479, -6.885912997, -7.559799895, -7.375358431, -7.261310611, -9.820118246, -6.974108876, -6.955113392, -7.163066869, -7.089538933, -7.076005751, -6.939946531, -8.931022119, -6.780181916, -7.361166535, -6.213223677, -7.103509236, -7.001471418, -6.447836028, -7.663466068, -7.646845383, -6.183415932, -6.971505932, -7.393070194, -7.453415454, -7.067547169, -7.110503685, -7.289428045, -8.30219955, -8.750758254, -7.69668572, -7.231906032, -7.705861843, -6.66205517, -7.217619073, -7.442184694, -7.635586883, -7.631086753, -7.270342502, -6.781898802, -7.263857892, -7.402466548, -6.069480434, -6.606595643, -7.194518489, -6.970074354, -6.824849083, -6.464521264, -6.700754733, -7.228652901, -7.293755334, -7.956101759, -8.195635262, -6.993822353, -6.025679222, -7.406198579, -6.96172864, -7.004908787, -7.688952472, -8.011925106, -7.358048847, -7.058069532, -7.13497228, -6.630978834, -6.72841982, -8.829059497, -8.412220642, -7.075920507, -7.36677203, -6.913554326, -7.052275842, -7.430760335, -6.477175605, -7.396149259, -7.240874577, -8.058808609, -9.073100742, -6.861528413, -6.513650419, -7.862673006, -7.97717572, -7.184794832, -6.395961098, -7.387698029, -8.977216535, -6.860540296, -7.982393269, -7.409939034, -7.056128713, -7.496422438, -7.108824319, -7.082953634, -6.461619096, -7.392728124, -7.463848973, -6.984251134, -7.830629076, -7.397525842, -6.95580684, -6.680665248, -6.578308251, -6.435096863, -6.285039918, -7.523896247, -7.681871451, -7.46299885, -7.441077139, -7.312411497, -6.695408996, -7.285906734, -9.513172343, -6.730145656, -7.776661131, -7.509585438, -7.550982901, -7.42139216, -7.05068094, -6.568802988, -6.751512075, -9.150096452, -6.565258617, -6.3203408, -7.034943257, -7.461480876, -6.762006424, -6.710342815, -7.35105021, -9.36045218, -6.274688914, -7.082393757, -7.741968166, -6.241670628, -7.148118735, -6.721699608, -7.447436345, -8.148943756, -8.792330965, -10.235713855, -7.021031354, -7.364284807, -7.585077175, -7.694460244, -6.766443714, -6.992719746, -6.847821256, -7.939183606, -8.063586761, -7.230770936, -7.09190265, -6.534390242, -6.859798797, -7.435366265, -10.157715437, -6.684676748, -7.084369827, -7.45450593, -7.737365258, -7.383726587, -6.920233114, -7.655994171, -9.015516083, -6.328197266, -6.782522088, -7.4081108, -7.786402738, -6.587243245, -6.621503927, -6.794129801, -6.692497439, -8.852561667, -7.714400419, -7.023045587, -6.689573356, -7.225304704, -6.742249511, -7.235478161, -8.224174771, -7.159873797, -7.247511163, -7.238744802, -7.012124809, -8.333367971, -9.296659024, -6.258741055, -7.517397155, -7.172783538, -7.457759474, -7.032623229, -7.203282486, -7.968492336, -7.712203269, -6.399673253, -6.424762591, -6.761824036, -6.859312873, -7.431606038, -7.179066542, -6.844084167, -8.094962725, -7.21977963, -7.653135278, -6.380624296, -6.921319335, -6.839386205, -8.528076092, -7.021477299, -8.102864286, -7.878426969, -7.243882081, -6.88673878, -7.334648408, -6.589539346, -7.258616182, -7.33107081, -9.859668863, -9.808440322, -6.937867009, -8.083570501, -7.416610504, -6.688701453, -6.197500299, -6.129142351, -6.821776847, -7.828590744, -6.878123872, -7.812554159, -6.52464114, -7.791451487, -8.439512168, -6.475665538, -6.73046902, -9.328814148, -7.094293433, -6.994379149, -6.944831288, -7.223907343, -7.924298456, -7.479860298, -7.5414121, -7.494617862, -7.213942888, -7.223842854, -6.92361094, -6.137509633, -7.49467582, -6.893095896, -6.901285437, -7.654532317, -6.428206535, -7.725543378, -6.644021443, -6.870365084, -6.804931678, -7.644319516, -7.561233313, -7.827649779, -6.676701306, -6.382090874, -7.149769829, -7.396730533, -7.451018919, -6.977908939, -7.432097185, -7.184610046, -6.99611712, -8.316373943, -6.592471137, -6.884586211, -5.567971082, -6.139422548, -7.078804993, -6.710653113, -6.394402225, -6.95816354, -6.032028474, -6.787319088, -6.345904434, -7.023001487, -7.908067758, -8.745947665, -7.48026163, -7.233423047, -5.976923665, -6.974307119, -6.866096373, -6.650243057, -7.815297214, -6.979205324, -7.046593155, -7.730367042, -7.597962149, -7.442295553, -7.206754039, -7.67465126, -7.714691755, -7.321244944, -5.801967994, -7.114316641, -7.252203682, -7.549716963, -7.64103724, -7.309082194, -7.370992692, -8.286479098, -6.18190322, -5.800918859, -6.673496312, -8.16046154, -6.481338245, -6.742407183, -6.652761294, -7.190695096, -6.765035373, -8.424354403, -7.319381873, -7.799434591, -6.703890908, -7.550314274, -8.676059254, -8.535621631, -8.7152434, -7.973245146, -7.343146246, -7.325769343, -7.369682047, -6.396125814, -6.756989871, -7.335868521, -5.999338295, -6.965454103, -5.92694369, -7.386643765, -6.695195127, -6.637198258, -6.042712847, -6.795619293, -7.669917068, -6.989557625, -7.88120829, -7.567913312, -6.997342147, -7.504523494, -7.133069695, -7.340551753, -7.994394838, -8.6803692, -5.926222098, -6.001868276, -6.985829966, -6.727885159, -6.952732843, -7.82591491]}], "model_type": "nb", "positive_class_label": "arts_and_entertainment", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"recent": [873, 2.682730778], "history": [501, 2.524785027], "critical": [269, 3.509952682], "called": [184, 2.038278709], "course": [259, 2.22419955], "years": [1195, 1.699527918], "spent": [999, 2.870389747], "high": [498, 2.03429464], "quick": [856, 3.224446889], "work": [1178, 1.633479158], "watching": [1151, 2.971681081], "fight": [407, 3.395072406], "making": [645, 2.026373806], "television": [1052, 2.786824669], "far": [390, 2.263420263], "create": [263, 2.440754278], "fact": [382, 2.265923393], "ve": [1130, 1.802835856], "avoid": [126, 3.278151068], "doesn": [320, 2.056406094], "make": [643, 1.472692754], "special": [995, 2.761823367], "fan": [388, 3.148939336], "makes": [644, 2.062522321], "seen": [938, 2.296460117], "moment": [685, 2.518312513], "early": [333, 2.229018836], "seasons": [932, 3.836044202], "told": [1078, 2.399812888], "later": [586, 2.219403378], "character": [212, 2.425939192], "played": [797, 2.609437912], "bit": [153, 2.377149028], "knowledge": [579, 3.285071511], "don": [323, 1.622883033], "actually": [67, 2.147861922], "took": [1080, 2.388416753], "tv": [1103, 2.531299708], "2011": [24, 3.198639005], "season": [931, 2.694203179], "felt": [402, 2.630867304], "number": [734, 2.263420263], "episodes": [359, 3.142897022], "catch": [199, 3.38735036], "didn": [307, 2.165839935], "sound": [988, 2.829934793], "thing": [1067, 1.999134768], "content": [249, 2.903026677], "let": [601, 2.081098706], "crazy": [262, 3.327631125], "right": [902, 1.838152528], "does": [319, 1.914525506], "offer": [738, 2.941678831], "unique": [1111, 3.095829511], "opportunity": [750, 3.29204018], "able": [55, 2.363240598], "approach": [105, 2.992194621], "new": [721, 1.387951526], "drama": [327, 3.217932208], "night": [725, 2.352251477], "10": [3, 2.040276712], "human": [514, 2.480333265], "involved": [551, 3.039949052], "business": [181, 2.486563814], "man": [647, 2.195761614], "hold": [503, 2.997389438], "wife": [1166, 3.148939336], "end": [350, 1.919830559], "hour": [510, 3.113221254], "ended": [351, 3.050878123], "state": [1013, 2.721495321], "visit": [1136, 3.29204018], "isn": [554, 2.184147082], "hours": [511, 2.799563695], "question": [854, 2.544457793], "exactly": [369, 2.729431871], "step": [1016, 2.971681081], "set": [950, 1.925163905], "scene": [923, 2.616530141], "open": [747, 2.452766435], "american": [90, 2.443743817], "century": [203, 3.113221254], "english": [354, 3.327631125], "hand": [479, 2.411340393], "true": [1094, 2.428884703], "blood": [156, 3.475761317], "love": [634, 2.048308883], "fashion": [391, 3.582055976], "say": [920, 1.959618809], "quickly": [857, 2.808147438], "learning": [594, 3.285071511], "production": [840, 2.705808725], "mean": [659, 2.571305043], "black": [154, 2.499142596], "particular": [764, 2.795299296], "jones": [564, 3.860435655], "appears": [102, 3.299057752], "leave": [595, 2.652765989], "thanks": [1061, 3.067499004], "personal": [778, 2.634483944], "series": [946, 2.1726659], "scenes": [924, 3.050878123], "past": [769, 2.394098587], "light": [605, 2.778421258], "way": [1153, 1.476099912], "truly": [1095, 3.224446889], "changed": [209, 2.956567444], "good": [461, 1.706665707], "including": [531, 2.191099601], "characters": [213, 2.671388501], "actors": [65, 3.155018382], "message": [670, 3.313242387], "ride": [901, 3.711590028], "support": [1039, 2.733423892], "goes": [458, 2.511881622], "imagine": [523, 3.179710995], "ll": [619, 1.930525848], "save": [917, 3.095829511], "details": [303, 3.136890998], "rest": [893, 2.721495321], "stop": [1019, 2.675154984], "local": [620, 2.912550558], "king": [576, 3.271278188], "game": [438, 2.709707366], "real": [866, 2.030326381], "life": [604, 1.788740086], "play": [796, 2.270948529], "mind": [677, 2.428884703], "setting": [951, 3.29204018], "opening": [749, 3.002611382], "features": [397, 2.86581308], "men": [669, 2.698056748], "alive": [83, 3.509952682], "children": [216, 2.829934793], "death": [289, 2.721495321], "director": [317, 2.623673028], "camera": [187, 3.217932208], "uses": [1121, 3.007860738], "title": [1075, 3.061927959], "seeing": [937, 2.946617113], "run": [911, 2.338682747], "generally": [443, 3.119086373], "kid": [571, 3.426571073], "shows": [962, 2.371562422], "air": [81, 2.922166017], "evidence": [368, 3.518686362], "process": [835, 2.486563814], "heart": [493, 2.951579902], "world": [1182, 1.68821238], "fast": [392, 2.946617113], "ideas": [519, 2.852207428], "pop": [811, 2.997389438], "term": [1057, 3.056387779], "pilot": [789, 4.006389568], "horror": [507, 3.426571073], "order": [753, 2.502312171], "test": [1059, 3.167288475], "simply": [966, 2.578131008], "help": [495, 1.970750649], "sure": [1040, 2.150091578], "level": [602, 2.554441237], "americans": [91, 3.788976691], "role": [908, 2.585003887], "stars": [1008, 3.217932208], "outside": [756, 2.765947084], "yes": [1196, 2.770087877], "best": [147, 1.815534439], "lines": [610, 3.271278188], "going": [459, 1.836519874], "market": [651, 2.971681081], "understand": [1109, 2.641756704], "short": [959, 2.420074073], "little": [615, 1.909248449], "did": [306, 1.851310612], "know": [578, 1.68540339], "famous": [387, 2.981885252], "sex": [953, 3.285071511], "started": [1010, 2.33330639], "peter": [780, 3.484200186], "began": [141, 2.847713039], "walking": [1142, 3.334903884], "movie": [695, 2.511881622], "screen": [927, 3.007860738], "film": [410, 2.317348605], "learned": [593, 3.090098836], "weeks": [1159, 3.067499004], "ago": [80, 2.59192433], "episode": [358, 2.733423892], "small": [976, 2.250997743], "talk": [1047, 2.534573033], "known": [580, 2.360481976], "come": [232, 1.943150001], "audience": [120, 2.733423892], "everybody": [367, 3.450863765], "came": [186, 2.243617636], "half": [477, 2.534573033], "finally": [413, 2.701925225], "months": [689, 2.649082744], "guys": [475, 3.410697724], "happy": [484, 2.903026677], "possible": [815, 2.464924639], "point": [806, 2.028348141], "bring": [171, 2.725455723], "care": [191, 2.825539181], "home": [505, 2.132392001], "guy": [474, 2.956567444], "reach": [862, 3.327631125], "eyes": [379, 2.922166017], "held": [494, 3.30612492], "door": [325, 3.211459693], "inside": [538, 2.729431871], "tried": [1092, 2.981885252], "shot": [960, 3.039949052], "middle": [673, 2.847713039], "wasn": [1149, 2.638113712], "relationship": [882, 2.893592644], "person": [777, 2.268432805], "wrong": [1190, 2.8124671], "place": [790, 2.028348141], "look": [625, 1.902255414], "moments": [686, 3.271278188], "bad": [132, 2.443743817], "got": [463, 2.132392001], "experience": [373, 2.325295667], "click": [224, 3.518686362], "having": [488, 2.130201419], "born": [163, 3.061927959], "wouldn": [1184, 2.987026651], "followed": [421, 3.136890998], "adding": [71, 3.349610032], "young": [1198, 2.423002333], "strong": [1027, 2.838784408], "sexual": [954, 3.527496991], "direct": [314, 3.313242387], "feel": [399, 2.081098706], "consider": [247, 2.961579985], "different": [311, 1.926948026], "things": [1068, 1.788740086], "completely": [243, 2.765947084], "board": [158, 3.313242387], "response": [892, 3.136890998], "sort": [987, 2.745496473], "self": [940, 2.428884703], "doing": [322, 2.214630099], "entire": [357, 2.737431914], "rules": [910, 3.372082887], "head": [489, 2.382767021], "minutes": [679, 2.786824669], "conversation": [252, 3.264452223], "changes": [210, 2.941678831], "telling": [1054, 3.192289777], "husband": [516, 3.518686362], "starts": [1012, 3.237604973], "trying": [1099, 2.291305466], "chance": [207, 3.056387779], "given": [452, 2.515091898], "worth": [1183, 2.808147438], "begins": [144, 3.484200186], "classic": [222, 3.299057752], "truth": [1097, 3.278151068], "act": [60, 2.838784408], "final": [412, 2.8124671], "instead": [541, 2.281075198], "offers": [739, 3.155018382], "getting": [449, 2.174951615], "long": [623, 1.777912447], "date": [282, 3.148939336], "loved": [635, 3.364535682], "meant": [662, 3.119086373], "questions": [855, 2.808147438], "asked": [118, 2.585003887], "follow": [420, 2.791053005], "immediately": [524, 3.090098836], "soon": [986, 2.690364403], "behavior": [145, 3.527496991], "earlier": [332, 2.870389747], "year": [1194, 1.787186084], "wrote": [1191, 2.630867304], "saying": [921, 2.634483944], "thought": [1072, 2.236291596], "room": [909, 2.534573033], "wanted": [1145, 2.452766435], "hear": [491, 2.8124671], "example": [370, 2.44674232], "body": [160, 2.717550543], "situation": [971, 3.257672536], "word": [1175, 2.791053005], "talking": [1048, 2.682730778], "specific": [996, 2.884246782], "try": [1098, 2.374351824], "fun": [434, 2.671388501], "smart": [977, 3.442700455], "purpose": [850, 3.285071511], "choice": [217, 3.119086373], "happens": [483, 3.050878123], "energy": [352, 3.30612492], "source": [990, 3.078735078], "notes": [731, 3.179710995], "really": [869, 1.794980356], "wants": [1146, 2.8124671], "dream": [329, 3.410697724], "woman": [1172, 2.656462851], "website": [1157, 3.161134609], "male": [646, 3.501294619], "female": [403, 3.35704501], "physical": [785, 3.237604973], "jump": [567, 3.061927959], "start": [1009, 2.156810528], "needed": [715, 2.717550543], "maybe": [658, 2.544457793], "nature": [711, 3.039949052], "kind": [575, 2.132392001], "takes": [1044, 2.43777365], "morning": [690, 3.148939336], "amazing": [87, 3.244249516], "break": [169, 2.879606402], "pick": [786, 3.113221254], "public": [848, 2.588458122], "interested": [543, 2.987026651], "think": [1069, 1.807578948], "decided": [292, 2.870389747], "easily": [336, 2.907777279], "overall": [757, 3.379687487], "used": [1117, 1.965169239], "weird": [1161, 3.418602903], "dance": [278, 3.426571073], "close": [225, 2.544457793], "reason": [870, 2.528037062], "chris": [219, 3.649714624], "producer": [838, 3.244249516], "job": [560, 2.505491824], "comes": [234, 2.243617636], "native": [709, 3.885436958], "online": [746, 2.795299296], "happened": [482, 2.907777279], "means": [661, 2.301641476], "aren": [111, 2.803846357], "hot": [509, 3.349610032], "parents": [762, 3.257672536], "using": [1122, 2.177242567], "animal": [95, 3.824068011], "lower": [637, 3.264452223], "boys": [166, 3.777547996], "image": [521, 2.936764816], "kids": [572, 2.907777279], "based": [136, 2.18877672], "useful": [1118, 3.38735036], "ones": [745, 2.956567444], "clear": [223, 2.620095207], "second": [933, 2.198100797], "party": [768, 2.987026651], "length": [600, 3.60092446], "quality": [852, 3.136890998], "according": [57, 2.66017343], "daughter": [283, 3.285071511], "related": [881, 2.825539181], "described": [297, 3.090098836], "large": [584, 2.630867304], "fit": [418, 3.231004289], "single": [968, 2.431838915], "basically": [138, 3.313242387], "video": [1133, 2.534573033], "50": [49, 2.774245887], "health": [490, 3.231004289], "opened": [748, 3.244249516], "couldn": [256, 3.039949052], "week": [1158, 2.371562422], "probably": [832, 2.309464201], "went": [1162, 2.388416753], "definitely": [295, 3.192289777], "family": [386, 2.391253634], "island": [553, 3.711590028], "available": [124, 2.605910572], "need": [714, 1.898777149], "lot": [632, 1.937720123], "power": [818, 2.502312171], "gets": [448, 2.502312171], "artists": [115, 3.173480445], "department": [296, 3.501294619], "record": [875, 2.981885252], "company": [241, 2.399812888], "sent": [944, 3.271278188], "career": [192, 2.803846357], "line": [609, 2.40268233], "industry": [535, 2.879606402], "movies": [696, 2.946617113], "money": [687, 2.464924639], "creative": [266, 2.91734673], "talent": [1046, 3.610493911], "writers": [1187, 3.192289777], "america": [89, 2.898298535], "ad": [68, 3.733096233], "motion": [692, 3.722285317], "picture": [787, 3.002611382], "studio": [1029, 3.217932208], "art": [112, 2.554441237], "network": [720, 3.130920831], "radio": [860, 3.372082887], "national": [708, 2.907777279], "working": [1180, 2.233861461], "entertainment": [356, 3.450863765], "news": [722, 2.605910572], "looks": [628, 2.721495321], "hope": [506, 2.888908795], "arts": [116, 3.649714624], "variety": [1128, 3.185980608], "meaning": [660, 3.313242387], "post": [816, 2.518312513], "theater": [1062, 3.372082887], "non": [727, 2.852207428], "independent": [532, 3.484200186], "films": [411, 3.090098836], "considered": [248, 3.007860738], "biggest": [150, 3.130920831], "society": [980, 3.231004289], "government": [464, 3.426571073], "budget": [177, 3.527496991], "usually": [1123, 2.721495321], "reviews": [899, 3.690536619], "story": [1022, 2.070735919], "box": [164, 3.224446889], "office": [740, 2.951579902], "british": [172, 3.459094264], "cars": [193, 3.978218691], "rock": [907, 3.167288475], "current": [272, 2.829934793], "tour": [1086, 3.629911997], "museum": [701, 3.824068011], "successful": [1036, 3.155018382], "produced": [837, 3.155018382], "channel": [211, 3.572753583], "performance": [774, 2.630867304], "friend": [431, 2.745496473], "january": [559, 3.313242387], "town": [1087, 3.161134609], "20": [14, 2.417154363], "piece": [788, 2.825539181], "comedy": [233, 3.285071511], "cast": [197, 2.931874831], "fall": [384, 3.002611382], "heard": [492, 2.861257264], "idea": [518, 2.236291596], "hollywood": [504, 3.211459693], "los": [629, 3.418602903], "angeles": [94, 3.475761317], "york": [1197, 2.354987456], "robert": [906, 3.179710995], "plans": [794, 3.285071511], "audio": [121, 3.898175983], "recorded": [876, 3.680173832], "music": [702, 2.394098587], "album": [82, 3.509952682], "sales": [915, 3.629911997], "recording": [877, 3.860435655], "500": [50, 3.501294619], "000": [0, 2.627263696], "latest": [587, 3.023776193], "blue": [157, 3.364535682], "singer": [967, 3.76624844], "theatre": [1063, 3.872858175], "today": [1077, 2.325295667], "moving": [697, 2.888908795], "bob": [159, 4.035377105], "hit": [502, 2.686540306], "pre": [822, 3.402854546], "deal": [288, 2.7536266], "summer": [1037, 3.205028803], "professional": [842, 3.205028803], "common": [238, 2.795299296], "old": [743, 2.032308542], "projects": [845, 3.136890998], "artist": [114, 2.966617779], "project": [844, 2.701925225], "begin": [142, 3.257672536], "documentary": [318, 3.733096233], "12": [6, 2.492833427], "girls": [451, 3.563536928], "growing": [470, 3.167288475], "north": [729, 3.418602903], "selling": [942, 3.434603244], "master": [655, 3.379687487], "executive": [371, 3.271278188], "running": [912, 2.721495321], "eye": [378, 3.155018382], "web": [1156, 3.327631125], "visual": [1137, 3.372082887], "effects": [345, 3.379687487], "big": [149, 1.963315671], "favorite": [394, 3.056387779], "feature": [395, 3.198639005], "pay": [771, 2.888908795], "festival": [404, 3.591445716], "option": [751, 3.554404444], "wall": [1143, 3.327631125], "especially": [361, 2.541152005], "longer": [624, 2.729431871], "named": [705, 2.870389747], "studios": [1030, 3.898175983], "written": [1189, 2.641756704], "city": [220, 2.486563814], "green": [466, 3.278151068], "script": [928, 3.459094264], "developed": [304, 3.217932208], "broadway": [173, 3.669917331], "playing": [800, 2.66017343], "seven": [952, 3.198639005], "program": [843, 3.231004289], "press": [825, 3.113221254], "present": [823, 3.002611382], "marketing": [652, 3.733096233], "subject": [1034, 3.119086373], "use": [1116, 1.831637847], "actor": [64, 2.966617779], "extra": [377, 3.198639005], "day": [285, 1.868005491], "acting": [61, 3.211459693], "john": [563, 2.620095207], "appeared": [101, 3.38735036], "plan": [792, 2.91734673], "live": [616, 2.18877672], "international": [545, 3.29204018], "stage": [1004, 2.838784408], "employees": [348, 4.096001727], "meet": [666, 2.966617779], "issue": [555, 3.084400815], "musical": [703, 3.285071511], "central": [202, 3.372082887], "information": [537, 2.609437912], "internet": [546, 3.013137795], "sign": [963, 3.078735078], "produce": [836, 3.426571073], "star": [1007, 2.60239563], "awards": [128, 3.92415147], "typically": [1107, 3.395072406], "track": [1088, 3.148939336], "michael": [672, 2.946617113], "form": [426, 2.515091898], "hair": [476, 3.410697724], "major": [642, 2.698056748], "16": [10, 2.799563695], "18": [12, 2.884246782], "13": [7, 2.791053005], "companies": [240, 3.078735078], "directly": [316, 3.113221254], "powerful": [819, 3.084400815], "media": [663, 2.574712201], "late": [585, 2.585003887], "child": [215, 3.078735078], "house": [512, 2.425939192], "build": [178, 2.91734673], "area": [109, 3.023776193], "february": [398, 3.484200186], "systems": [1041, 3.60092446], "review": [898, 3.179710995], "net": [718, 3.788976691], "share": [956, 2.733423892], "recently": [874, 2.645413015], "areas": [110, 3.410697724], "60": [51, 3.372082887], "cover": [261, 3.045398657], "gave": [440, 2.893592644], "sold": [982, 3.35704501], "currently": [273, 3.244249516], "success": [1035, 2.799563695], "performed": [775, 3.680173832], "drive": [330, 3.285071511], "cases": [195, 3.410697724], "financial": [414, 3.554404444], "complete": [242, 3.018442847], "million": [676, 2.799563695], "costs": [255, 3.610493911], "add": [69, 2.971681081], "30": [42, 2.609437912], "ford": [425, 4.44822232], "calls": [185, 3.124986095], "table": [1042, 3.244249516], "highly": [500, 3.185980608], "write": [1185, 2.847713039], "agent": [79, 3.76624844], "mike": [674, 3.690536619], "agency": [78, 3.800537514], "previous": [828, 3.084400815], "william": [1169, 3.701007918], "martin": [654, 3.836044202], "ed": [340, 3.937396697], "release": [884, 3.095829511], "page": [758, 2.745496473], "month": [688, 2.770087877], "view": [1135, 2.816805501], "event": [364, 3.034528985], "east": [337, 3.639764293], "president": [824, 3.167288475], "product": [839, 3.173480445], "building": [179, 2.786824669], "includes": [530, 2.946617113], "research": [890, 2.976770151], "released": [885, 3.018442847], "report": [887, 3.402854546], "june": [568, 3.161134609], "race": [859, 3.527496991], "left": [598, 2.360481976], "writer": [1186, 2.946617113], "model": [682, 3.034528985], "sell": [941, 3.278151068], "frame": [428, 3.722285317], "player": [798, 3.582055976], "tom": [1079, 3.610493911], "events": [365, 3.061927959], "member": [667, 3.231004289], "band": [133, 3.402854546], "fair": [383, 3.509952682], "works": [1181, 2.458827059], "added": [70, 2.893592644], "turns": [1102, 3.023776193], "sense": [943, 2.396951656], "likely": [607, 2.786824669], "figure": [408, 2.847713039], "site": [969, 3.07310126], "standard": [1006, 3.30612492], "return": [897, 2.936764816], "wait": [1140, 3.271278188], "dark": [279, 2.931874831], "center": [201, 2.922166017], "west": [1163, 3.205028803], "travel": [1091, 3.434603244], "style": [1033, 2.786824669], "magazine": [639, 3.442700455], "hard": [485, 2.156810528], "george": [445, 3.492710875], "select": [939, 3.836044202], "lead": [590, 2.799563695], "version": [1132, 2.511881622], "force": [424, 3.173480445], "draw": [328, 3.65976496], "attention": [119, 2.791053005], "david": [284, 2.843238758], "award": [127, 3.639764293], "active": [63, 3.545354609], "popular": [812, 2.612977739], "host": [508, 3.320410877], "property": [846, 3.777547996], "price": [829, 3.192289777], "general": [442, 2.799563695], "field": [406, 3.271278188], "dan": [277, 4.020778305], "university": [1114, 2.912550558], "allow": [84, 3.124986095], "customers": [274, 3.722285317], "policy": [809, 3.898175983], "despite": [302, 2.829934793], "account": [58, 3.231004289], "boy": [165, 3.192289777], "want": [1144, 1.784085306], "learn": [592, 2.656462851], "result": [894, 2.879606402], "fiction": [405, 3.536385939], "group": [468, 2.354987456], "key": [570, 2.803846357], "numbers": [735, 3.434603244], "touch": [1085, 3.185980608], "paper": [761, 3.379687487], "cat": [198, 3.92415147], "richard": [900, 3.572753583], "road": [905, 3.271278188], "designer": [301, 3.800537514], "won": [1174, 2.443743817], "better": [148, 1.965169239], "low": [636, 2.678935707], "brown": [176, 3.518686362], "song": [984, 2.976770151], "brought": [175, 3.061927959], "turned": [1101, 2.838784408], "modern": [684, 2.956567444], "influence": [536, 3.484200186], "russell": [913, 4.470695176], "directed": [315, 3.211459693], "plays": [801, 3.023776193], "james": [558, 3.130920831], "son": [983, 3.285071511], "15": [9, 2.524785027], "older": [744, 3.271278188], "link": [611, 3.327631125], "watch": [1150, 2.544457793], "realize": [868, 3.320410877], "baby": [130, 3.434603244], "27": [39, 3.395072406], "theory": [1066, 3.536385939], "cultural": [270, 3.211459693], "lives": [617, 2.690364403], "community": [239, 2.956567444], "certain": [204, 2.656462851], "fans": [389, 3.023776193], "decades": [290, 3.130920831], "writing": [1188, 2.671388501], "books": [162, 2.870389747], "multiple": [700, 3.002611382], "culture": [271, 2.682730778], "inspired": [539, 3.029138136], "perfect": [773, 2.757716585], "range": [861, 3.07310126], "ways": [1154, 2.388416753], "traditional": [1089, 3.217932208], "results": [895, 3.045398657], "face": [380, 2.524785027], "november": [733, 3.509952682], "moved": [693, 3.084400815], "college": [230, 3.136890998], "coming": [236, 2.467987429], "car": [189, 3.07310126], "cash": [196, 3.711590028], "songs": [985, 3.30612492], "practice": [821, 3.264452223], "include": [528, 2.645413015], "club": [226, 3.418602903], "2019": [32, 3.257672536], "color": [231, 3.450863765], "videos": [1134, 3.518686362], "reality": [867, 3.039949052], "instance": [540, 3.434603244], "huge": [513, 2.690364403], "material": [656, 3.257672536], "actual": [66, 3.084400815], "bar": [135, 3.467393067], "original": [755, 2.483443687], "future": [437, 2.567909454], "earth": [334, 3.484200186], "humans": [515, 3.744025304], "2013": [26, 3.018442847], "school": [925, 2.474141294], "social": [979, 2.630867304], "issues": [556, 3.161134609], "built": [180, 2.741456064], "days": [286, 2.349522962], "similar": [964, 2.761823367], "remember": [886, 2.686540306], "secret": [934, 3.192289777], "universe": [1113, 3.911079388], "wide": [1165, 3.264452223], "2014": [27, 3.056387779], "women": [1173, 2.682730778], "read": [863, 2.335990956], "generation": [444, 3.379687487], "shit": [958, 3.76624844], "search": [930, 2.898298535], "2008": [21, 3.501294619], "11": [5, 2.609437912], "country": [257, 2.729431871], "united": [1112, 3.084400815], "states": [1014, 2.86581308], "language": [583, 3.173480445], "background": [131, 3.35704501], "plot": [802, 3.475761317], "themes": [1065, 3.836044202], "narrative": [707, 3.442700455], "problems": [834, 3.018442847], "impact": [525, 3.237604973], "references": [880, 3.211459693], "external": [376, 3.563536928], "links": [612, 3.264452223], "edit": [342, 3.299057752], "words": [1177, 2.667636152], "father": [393, 2.956567444], "court": [260, 3.788976691], "eventually": [366, 2.847713039], "location": [621, 3.509952682], "brother": [174, 3.484200186], "gives": [453, 2.808147438], "taken": [1043, 2.799563695], "living": [618, 2.605910572], "san": [916, 3.690536619], "position": [813, 3.211459693], "finding": [415, 3.050878123], "study": [1031, 3.090098836], "speaking": [994, 3.237604973], "kept": [569, 3.107390333], "movement": [694, 3.395072406], "slightly": [974, 3.442700455], "provide": [847, 3.084400815], "theme": [1064, 3.563536928], "digital": [313, 3.364535682], "software": [981, 3.836044202], "allows": [86, 3.142897022], "simple": [965, 2.667636152], "computer": [245, 3.450863765], "addition": [72, 3.173480445], "voice": [1138, 2.782614136], "total": [1083, 3.264452223], "law": [589, 3.30612492], "rights": [903, 3.459094264], "images": [522, 3.198639005], "2009": [22, 3.484200186], "july": [566, 3.38735036], "youtube": [1199, 3.442700455], "germany": [447, 4.363064512], "announced": [97, 3.418602903], "change": [208, 2.394098587], "red": [879, 3.07310126], "14": [8, 2.825539181], "terms": [1058, 2.834349811], "limited": [608, 3.30612492], "free": [429, 2.357730942], "starting": [1011, 3.056387779], "march": [649, 3.285071511], "17": [11, 2.879606402], "products": [841, 3.38735036], "org": [754, 3.898175983], "giving": [454, 2.956567444], "19": [13, 3.101593216], "21": [33, 3.161134609], "netflix": [719, 3.629911997], "2010": [23, 3.327631125], "22": [34, 3.211459693], "april": [106, 3.264452223], "service": [948, 2.966617779], "23": [35, 3.30612492], "strategy": [1025, 3.744025304], "24": [36, 2.971681081], "100": [4, 2.821162807], "positive": [814, 3.271278188], "32": [44, 3.744025304], "average": [125, 3.271278188], "25": [37, 2.803846357], "26": [38, 3.349610032], "times": [1074, 2.044284733], "away": [129, 2.106416514], "elements": [346, 3.327631125], "great": [465, 1.919830559], "comic": [235, 3.313242387], "phone": [781, 3.002611382], "book": [161, 2.382767021], "ms": [699, 3.824068011], "minute": [678, 3.124986095], "28": [40, 3.313242387], "29": [41, 3.299057752], "blog": [155, 3.484200186], "legal": [599, 3.591445716], "action": [62, 2.91734673], "members": [668, 3.078735078], "31": [43, 3.582055976], "negative": [717, 3.545354609], "cause": [200, 3.185980608], "fully": [433, 3.179710995], "groups": [469, 3.459094264], "enjoy": [355, 3.205028803], "33": [45, 3.690536619], "interview": [547, 2.981885252], "canada": [188, 4.111750084], "uk": [1108, 3.690536619], "near": [712, 2.966617779], "oh": [742, 3.078735078], "dead": [287, 2.956567444], "official": [741, 3.459094264], "designed": [300, 3.050878123], "35": [46, 3.364535682], "2018": [31, 3.327631125], "december": [291, 3.418602903], "section": [935, 3.527496991], "retrieved": [896, 3.860435655], "archived": [108, 4.020778305], "2007": [20, 3.467393067], "03": [1, 4.517215192], "machine": [638, 3.342229924], "published": [849, 3.101593216], "2000": [15, 3.824068011], "2012": [25, 3.078735078], "2016": [29, 2.936764816], "store": [1020, 3.299057752], "mark": [650, 3.090098836], "2015": [28, 2.931874831], "forward": [427, 3.013137795], "archive": [107, 4.493684694], "ready": [865, 3.061927959], "god": [457, 3.30612492], "security": [936, 3.711590028], "died": [309, 3.185980608], "street": [1026, 3.023776193], "bank": [134, 3.788976691], "focus": [419, 2.829934793], "parts": [767, 3.002611382], "tells": [1055, 3.179710995], "author": [123, 3.113221254], "friends": [432, 2.492833427], "beautiful": [140, 3.142897022], "buy": [182, 2.912550558], "french": [430, 3.545354609], "looking": [627, 2.221798588], "collection": [229, 3.410697724], "era": [360, 3.35704501], "knows": [581, 3.142897022], "various": [1129, 2.931874831], "interviews": [548, 3.65976496], "names": [706, 3.349610032], "familiar": [385, 3.257672536], "places": [791, 3.205028803], "eat": [339, 3.582055976], "personality": [779, 3.75507514], "points": [807, 3.205028803], "putting": [851, 3.050878123], "reading": [864, 2.843238758], "park": [763, 3.372082887], "concept": [246, 3.217932208], "stories": [1021, 2.725455723], "tell": [1053, 2.377149028], "45": [48, 3.554404444], "knew": [577, 2.912550558], "edges": [341, 4.88758898], "nice": [723, 3.198639005], "sounds": [989, 3.050878123], "yeah": [1193, 3.629911997], "main": [641, 2.725455723], "case": [194, 2.40556003], "explain": [375, 3.372082887], "effect": [344, 3.056387779], "guess": [472, 3.395072406], "totally": [1084, 3.271278188], "happen": [481, 2.981885252], "plus": [804, 3.264452223], "stay": [1015, 2.961579985], "code": [227, 3.450863765], "file": [409, 3.848165563], "list": [613, 2.574712201], "st": [1003, 3.978218691], "text": [1060, 3.527496991], "php": [784, 4.758377249], "2017": [30, 3.217932208], "drop": [331, 3.402854546], "node": [726, 5.364513052], "following": [422, 2.571305043], "creating": [265, 2.927008641], "editor": [343, 3.38735036], "tools": [1082, 3.527496991], "tool": [1081, 3.518686362], "application": [104, 3.978218691], "plugin": [803, 4.61729865], "platform": [795, 3.501294619], "team": [1049, 2.641756704], "couple": [258, 2.825539181], "washington": [1148, 3.649714624], "led": [597, 2.951579902], "joel": [562, 5.210362372], "needs": [716, 2.799563695], "helps": [497, 3.35704501], "services": [949, 3.349610032], "taking": [1045, 2.492833427], "feeling": [400, 2.8124671], "met": [671, 2.86581308], "sea": [929, 3.898175983], "period": [776, 3.090098836], "created": [264, 2.499142596], "accounts": [59, 4.006389568], "worked": [1179, 2.733423892], "easier": [335, 3.155018382], "value": [1124, 3.018442847], "cold": [228, 3.527496991], "war": [1147, 3.07310126], "looked": [626, 3.039949052], "partner": [766, 3.501294619], "age": [77, 2.66017343], "important": [526, 2.255948248], "beginning": [143, 2.931874831], "understanding": [1110, 3.327631125], "allowed": [85, 3.237604973], "difference": [310, 3.211459693], "control": [251, 2.757716585], "stuff": [1032, 2.821162807], "space": [992, 2.616530141], "required": [889, 3.342229924], "cool": [253, 3.07310126], "decision": [293, 3.554404444], "political": [810, 3.299057752], "identity": [520, 3.591445716], "relationships": [883, 3.610493911], "easy": [338, 2.502312171], "continue": [250, 3.023776193], "class": [221, 3.050878123], "mother": [691, 3.034528985], "private": [831, 3.257672536], "leaving": [596, 3.29204018], "turn": [1100, 2.505491824], "europe": [363, 3.860435655], "andy": [93, 4.383683799], "helped": [496, 3.320410877], "design": [299, 2.903026677], "mr": [698, 3.130920831], "white": [1164, 2.585003887], "shared": [957, 3.278151068], "potential": [817, 3.029138136], "matter": [657, 2.645413015], "photos": [783, 3.610493911], "ask": [117, 2.709707366], "wearing": [1155, 3.299057752], "brain": [167, 3.459094264], "hands": [480, 3.002611382], "technology": [1051, 3.205028803], "experiences": [374, 3.450863765], "ability": [54, 3.002611382], "shown": [961, 3.518686362], "certainly": [205, 3.029138136], "saw": [919, 2.652765989], "interesting": [544, 2.778421258], "individual": [534, 3.342229924], "apple": [103, 3.690536619], "pretty": [827, 2.480333265], "nearly": [713, 2.861257264], "quite": [858, 2.511881622], "titles": [1076, 4.247551625], "improve": [527, 3.492710875], "lots": [633, 3.285071511], "novel": [732, 3.492710875], "2004": [17, 3.824068011], "featured": [396, 3.442700455], "smith": [978, 3.75507514], "trip": [1093, 3.527496991], "2006": [19, 3.680173832], "food": [423, 3.148939336], "index": [533, 4.303641091], "daily": [276, 3.136890998], "isbn": [552, 4.247551625], "august": [122, 3.467393067], "guide": [473, 3.179710995], "amazon": [88, 3.582055976], "google": [462, 3.29204018], "listen": [614, 3.327631125], "difficult": [312, 2.879606402], "note": [730, 2.879606402], "tend": [1056, 3.372082887], "lights": [606, 3.75507514], "email": [347, 3.379687487], "water": [1152, 2.966617779], "feels": [401, 2.936764816], "believe": [146, 2.741456064], "stand": [1005, 3.056387779], "natural": [710, 3.217932208], "goal": [456, 3.35704501], "fine": [416, 3.013137795], "scale": [922, 3.572753583], "london": [622, 3.237604973], "planet": [793, 3.872858175], "spend": [998, 3.107390333], "police": [808, 3.680173832], "records": [878, 3.509952682], "leading": [591, 3.198639005], "40": [47, 2.997389438], "miranda": [680, 5.036008985], "05": [2, 4.363064512], "california": [183, 3.591445716], "girl": [450, 3.045398657], "african": [76, 3.992204933], "paid": [760, 3.364535682], "south": [991, 3.271278188], "walk": [1141, 3.342229924], "2005": [18, 3.744025304], "medical": [664, 3.824068011], "introduced": [549, 3.492710875], "received": [872, 3.224446889], "deep": [294, 3.034528985], "ticket": [1073, 4.284592897], "gay": [441, 4.035377105], "military": [675, 4.111750084], "lose": [630, 3.426571073], "dog": [321, 3.629911997], "article": [113, 2.7536266], "included": [529, 2.961579985], "basic": [137, 3.257672536], "appear": [100, 3.217932208], "straight": [1023, 3.067499004], "skills": [973, 3.554404444], "jack": [557, 3.711590028], "function": [435, 3.680173832], "october": [737, 3.426571073], "september": [945, 3.467393067], "reasons": [871, 3.067499004], "donald": [324, 3.872858175], "80": [52, 3.554404444], "90": [53, 3.509952682], "german": [446, 3.911079388], "brand": [168, 3.29204018], "global": [455, 3.501294619], "bbc": [139, 3.992204933], "shape": [955, 3.572753583], "2001": [16, 3.788976691], "journal": [565, 3.711590028], "thomas": [1071, 3.629911997], "pp": [820, 4.493684694], "library": [603, 3.848165563], "steve": [1017, 3.733096233], "database": [281, 4.144010946], "size": [972, 3.211459693], "thinking": [1070, 2.725455723], "paul": [770, 3.313242387], "facebook": [381, 3.29204018], "twitter": [1104, 3.023776193], "sites": [970, 3.76624844], "particularly": [765, 2.861257264], "cut": [275, 2.927008641], "win": [1170, 3.418602903], "complex": [244, 3.257672536], "sports": [1001, 3.848165563], "games": [439, 3.536385939], "problem": [833, 2.671388501], "vehicles": [1131, 4.728524285], "pages": [759, 3.459094264], "players": [799, 3.964425369], "stone": [1018, 3.563536928], "object": [736, 4.020778305], "challenge": [206, 3.484200186], "risk": [904, 3.450863765], "card": [190, 3.848165563], "data": [280, 3.061927959], "reported": [888, 3.572753583], "die": [308, 3.349610032], "primary": [830, 3.591445716], "medicine": [665, 4.323059177], "answer": [98, 2.971681081], "development": [305, 3.095829511], "credit": [267, 3.492710875], "address": [74, 3.722285317], "studies": [1028, 3.669917331], "magic": [640, 3.554404444], "harris": [486, 4.671365872], "trump": [1096, 3.978218691], "science": [926, 3.023776193], "super": [1038, 3.418602903], "hamilton": [478, 4.728524285], "podcast": [805, 3.824068011], "lost": [631, 2.713621265], "choose": [218, 3.185980608], "strange": [1024, 3.30612492], "gone": [460, 2.987026651], "funny": [436, 3.090098836], "laughs": [588, 4.035377105], "pressure": [826, 3.744025304], "intelligence": [542, 3.950819717], "type": [1105, 2.821162807], "teams": [1050, 4.08049754], "types": [1106, 3.299057752], "comments": [237, 3.364535682], "land": [582, 3.30612492], "kill": [573, 3.484200186], "dr": [326, 3.711590028], "training": [1090, 3.639764293], "en": [349, 4.643966897], "speed": [997, 3.364535682], "speak": [993, 3.250938504], "higher": [499, 3.029138136], "crime": [268, 3.669917331], "killed": [574, 3.65976496], "jobs": [561, 3.434603244], "normal": [728, 3.299057752], "haven": [487, 3.107390333], "ground": [467, 3.320410877], "fingers": [417, 4.44822232], "id": [517, 4.383683799], "cost": [254, 3.050878123], "savings": [918, 4.699536749], "additional": [73, 3.536385939], "van": [1126, 4.006389568], "check": [214, 2.729431871], "app": [99, 3.680173832], "options": [752, 3.299057752], "users": [1120, 3.545354609], "yahoo": [1192, 5.421671466], "photo": [782, 3.450863765], "anderson": [92, 4.591323164], "update": [1115, 3.65976496], "access": [56, 3.067499004], "wikipedia": [1168, 5.163842357], "expect": [372, 3.090098836], "window": [1171, 3.690536619], "africa": [75, 4.363064512], "bridge": [170, 4.020778305], "slug": [975, 6.308974661], "vs": [1139, 4.035377105], "weight": [1160, 3.788976691], "user": [1119, 3.582055976], "server": [947, 4.303641091], "models": [683, 3.733096233], "salad": [914, 5.421671466], "percent": [772, 3.167288475], "billion": [152, 3.872858175], "animals": [96, 3.992204933], "management": [648, 3.610493911], "investment": [550, 3.885436958], "values": [1125, 3.75507514], "marshall": [653, 5.421671466], "growth": [471, 3.744025304], "spider": [1000, 5.259152537], "descriptions": [298, 4.996788272], "estate": [362, 4.050192191], "engine": [353, 4.08049754], "bike": [151, 4.61729865], "quebec": [853, 6.308974661], "researchers": [891, 4.020778305], "mobile": [681, 4.035377105], "wiki": [1167, 5.76997816], "nichols": [724, 6.175443268], "wordpress": [1176, 4.493684694], "var": [1127, 6.463125341], "sql": [1002, 5.07683098], "mysql": [704, 6.057660233]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_autos_and_vehicles.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_autos_and_vehicles.json deleted file mode 100644 index 50f6aa6..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_autos_and_vehicles.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.678394542, "feature_log_probs": [-6.083688118, -6.492403342, -6.695533354, -6.659335369, -6.666858871, -6.783457192, -6.79239812, -6.718253949, -6.815426637, -6.896465502, -6.782088357, -6.841340335, -6.992856325, -7.011130018, -6.955615423, -6.991988325, -7.035640598, -6.983493541, -7.03847447, -7.00201404, -6.995684488, -7.002427492, -6.702492926, -6.737687379, -6.994695652, -6.990720135, -6.87553038, -6.888940004, -6.943438564, -6.909747352, -6.902335366, -6.855417563, -6.801750749, -6.768686866, -6.699496596, -6.671647876, -6.688345781, -6.608402872, -6.575929354, -6.482736573, -6.610635045, -6.461813723, -6.562747977, -6.387317736, -6.864619772, -6.841427272, -6.936250539, -6.792909032, -6.805582591, -6.90736121, -6.870376423, -6.911956986, -6.915640092, -6.965898337, -6.761347307, -6.766321897, -6.99379772, -7.010416714, -7.015638721, -6.890370366, -6.793306779, -6.871201837, -7.028997274, -6.739509027, -6.635608501, -6.649118072, -6.925183995, -6.933358337, -6.929565841, -6.930296714, -6.390117044, -6.688905958, -6.771456982, -6.545117681, -7.027050786, -6.934114117, -6.564927659, -6.857504912, -6.760361342, -6.910833509, -6.914590302, -6.948133054, -6.686910442, -6.366505595, -6.855253197, -6.814047414, -6.678950886, -6.586992353, -6.788279018, -6.623470818, -6.757191136, -6.57406252, -6.886176441, -6.778529656, -6.839679802, -6.816913119, -6.990245989, -6.923496855, -6.864494898, -6.851927222, -6.071063566, -6.900742466, -7.046503169, -6.266089006, -6.60629248, -6.743295966, -6.331024944, -6.124718552, -6.476002287, -6.877209603, -6.743210158, -6.800870484, -6.845851733, -6.539441739, -6.931522185, -6.602542781, -6.868899445, -6.433469138, -6.542793571, -6.5037111, -6.542939438, -7.062998153, -6.801301432, -6.545403691, -6.803291619, -6.884901245, -7.089527329, -6.841118292, -5.930158831, -6.912025726, -6.436205205, -6.922125051, -6.750940219, -6.743830283, -6.342731066, -6.709968116, -6.879214375, -6.876521766, -6.589519699, -6.803460048, -6.353324468, -6.72189429, -6.906499594, -6.590519156, -6.402608281, -6.768194552, -6.624885047, -6.674828143, -6.797703705, -6.943076967, -4.688413165, -6.551605223, -6.902771236, -5.17954396, -6.749925437, -6.968841908, -6.677724557, -6.95837268, -6.818795287, -7.020958839, -6.700652378, -6.907284073, -6.775403085, -6.571352984, -6.90301101, -6.669315311, -6.755439694, -6.740800406, -6.951037767, -6.904048792, -6.963657428, -6.57159648, -7.046826517, -6.848642638, -6.765713115, -6.539068629, -6.829590139, -6.773534915, -6.940207261, -6.792565781, -6.995034603, -6.933796137, -6.574027988, -6.566824256, -6.786812588, -6.897275692, -6.528532798, -5.881223249, -6.855674253, -6.888056629, -6.898327544, -6.792768361, -6.910994648, -6.297190576, -7.025770344, -6.963651442, -6.336838159, -6.82478105, -6.427842737, -6.685198804, -6.772490638, -6.937094208, -6.520317294, -6.660626166, -6.895485863, -6.919596317, -6.988327255, -7.053605053, -6.750906577, -6.814552574, -6.962351457, -6.804314036, -6.612054566, -6.612617418, -6.895327851, -6.615068201, -6.613107546, -7.119712299, -6.652559928, -6.743788148, -6.755564635, -6.831086878, -6.90336285, -5.982969314, -6.515540321, -6.836943618, -6.75337532, -6.623621819, -6.972460559, -6.570830179, -6.624774927, -6.497127896, -6.546078511, -6.939550505, -6.693827331, -6.877110246, -6.745968483, -6.659100431, -6.575343127, -6.749901264, -6.398560951, -6.517660643, -5.974151931, -6.763835106, -6.001196308, -6.37389099, -5.797115167, -6.774629818, -6.622856743, -6.929480649, -6.789361377, -7.057898201, -6.783596649, -6.518710636, -6.842780748, -6.066700752, -6.545626634, -6.52807468, -6.887494727, -5.555040323, -6.651454851, -6.38176171, -6.87143396, -6.771967394, -6.790716365, -7.068193821, -6.668496158, -6.736418344, -6.863837546, -6.739610185, -6.641150726, -6.69660275, -6.658708215, -6.724106816, -6.692541311, -6.849780017, -6.603126555, -6.679775173, -6.580774273, -6.935401377, -6.462408612, -6.879547412, -6.640789423, -5.98616924, -6.498793764, -6.953044853, -7.07412957, -6.844434269, -6.861737333, -7.018629304, -6.7349368, -6.773487233, -6.891170086, -7.123990541, -5.727648815, -6.887677424, -6.744938533, -6.875302097, -6.765126465, -6.98717265, -6.717380251, -6.295302286, -6.678080394, -6.69803274, -6.92257572, -6.460948797, -7.009363029, -6.642306088, -6.872643315, -7.167136795, -6.752342499, -6.442379548, -6.581135601, -6.713884865, -6.761563001, -6.736106215, -7.030152004, -6.79952087, -6.754803338, -6.220250273, -6.752283477, -6.426157518, -6.398530124, -6.496900673, -6.548441639, -6.955294398, -6.835120511, -6.669670896, -6.882906498, -6.550685646, -6.455529062, -6.942299223, -7.006838433, -6.793124858, -6.681519014, -6.729361825, -6.73575568, -6.788277202, -6.686305178, -7.130065446, -6.64412852, -6.471954825, -6.809322895, -6.663491258, -6.745407988, -6.86072881, -6.368396424, -6.347054677, -6.82188099, -6.85381223, -6.958717994, -6.553062665, -6.725632393, -6.587523344, -6.554394145, -6.699762718, -6.910368441, -6.746068074, -6.834739186, -6.703831694, -6.80988659, -6.915715931, -6.787324358, -6.593536186, -7.151486698, -6.912309029, -6.957468035, -6.568953588, -6.718919147, -6.683882959, -6.715203424, -6.792825002, -6.528162005, -6.945226425, -7.011957972, -6.752166693, -7.050744449, -6.578811157, -6.846826443, -6.861787405, -6.794697265, -6.615158736, -6.785648265, -6.679163434, -6.74242349, -6.908499678, -7.012164478, -7.055762272, -6.857566496, -6.979859887, -6.828131751, -6.78049845, -6.997615758, -6.722741456, -6.749562486, -6.500413295, -6.766647019, -6.708497621, -6.238299731, -6.846795889, -6.828012896, -6.848503096, -6.801243524, -6.640103367, -6.689945938, -6.874582328, -6.68618706, -6.938161665, -7.039896393, -6.926183433, -6.704344558, -7.002949835, -6.698669563, -6.702042541, -6.947419665, -6.733126542, -6.613505616, -6.703842003, -6.650135649, -6.605737333, -7.036392486, -7.070959979, -6.776382883, -6.488976961, -6.911287339, -6.511682658, -6.951152137, -6.380108309, -6.991327196, -6.508625081, -6.80778521, -6.373939814, -6.613975018, -6.573543825, -6.526373232, -6.719812371, -6.645309785, -6.763930272, -6.540954721, -6.748035674, -6.80670454, -6.854982279, -6.818870224, -6.34315504, -6.588068606, -6.551737303, -6.858647146, -6.963138397, -6.475400785, -6.765905732, -6.688828211, -6.780219363, -6.895099096, -6.429976656, -6.955018438, -6.918388279, -6.738142142, -6.462604139, -6.849097821, -6.69382474, -6.904578956, -7.0846722, -6.205673493, -6.653308188, -6.947771837, -6.494998074, -6.470266875, -6.891884172, -6.782378286, -6.782434436, -6.679825484, -5.906273964, -6.220561535, -6.602139218, -6.744993925, -6.680156749, -6.735200339, -6.341574106, -6.49787803, -6.803746959, -6.369382245, -6.739782179, -6.946413548, -6.544643029, -6.935669218, -6.931901185, -6.849518263, -6.75174737, -6.554438195, -6.779104894, -6.815247477, -6.983790404, -6.973629514, -5.750857333, -6.713737826, -6.26073518, -6.951858145, -6.772574246, -6.883710309, -6.873891314, -6.654342751, -6.819099338, -6.871187065, -6.762069668, -6.846160599, -6.838557586, -6.982538861, -6.82856055, -6.550476914, -7.016739202, -6.922874759, -6.830698912, -6.707892317, -6.931980656, -6.866355193, -6.864620155, -7.067629113, -6.549916679, -7.173017476, -6.932486546, -6.813965707, -6.935995865, -6.835241315, -6.711151117, -6.558501816, -6.819841033, -7.075757752, -6.989018629, -6.903879474, -6.621219158, -6.698431092, -6.773660641, -6.879377592, -7.031547589, -6.617891947, -6.279138948, -6.827367744, -6.999468029, -6.821955086, -6.503678458, -6.745258413, -6.819320974, -6.727867976, -6.780234518, -6.692632333, -6.923387156, -6.841415538, -6.553746293, -6.838043338, -6.326193818, -6.885675451, -6.88975615, -6.019881319, -6.86721097, -6.77055292, -6.92960054, -6.846541981, -6.249274771, -6.681390125, -6.855057026, -6.884706076, -6.944699108, -6.82015286, -6.762415047, -6.617128723, -6.879518178, -6.475538326, -6.873787761, -6.692609018, -6.76684369, -6.857735023, -6.809349736, -6.740977174, -6.726054129, -6.096304699, -6.914695925, -6.81708397, -6.683585816, -6.851289531, -6.915708273, -6.795049323, -6.817119066, -6.905975912, -6.848442866, -6.663781064, -6.611251555, -6.499974813, -6.50348679, -6.821771713, -6.650371794, -6.449516623, -6.03802307, -6.883890631, -6.934323186, -6.806633025, -6.808086543, -6.778882879, -6.78036401, -6.875821148, -6.904782704, -6.790488755, -6.862180451, -6.822573956, -6.87602255, -6.807332597, -6.833519224, -6.966331934, -6.750255906, -6.839905965, -6.809817727, -6.96628911, -6.23236568, -6.984375022, -6.862019027, -6.590571608, -6.472170104, -6.167759346, -7.01015024, -6.768502568, -6.921152992, -6.727888747, -6.751552204, -6.680125159, -6.84563002, -6.823676486, -6.267411486, -6.782994944, -6.543239235, -6.949842319, -6.859482341, -6.599546399, -6.982297654, -7.081255726, -6.672947425, -7.031994171, -7.049098189, -6.425587175, -6.579514781, -6.622776181, -6.576974848, -6.506800416, -6.693166862, -6.419889773, -6.778025516, -6.826209477, -6.853969967, -6.838067686, -6.467115752, -6.568985153, -6.773110844, -6.649246145, -6.837570071, -6.841400392, -6.750046751, -6.932796617, -6.842464662, -6.710567138, -6.802243431, -6.79151418, -6.831968885, -6.993268153, -6.861170332, -7.099431226, -6.660001392, -6.895830976, -7.107514593, -6.495855632, -6.517390755, -6.854112546, -6.919412919, -6.991987886, -6.706827235, -6.728968722, -6.936372075, -6.037745463, -6.632488052, -6.505062375, -6.604210021, -6.625408521, -6.722089788, -6.766527706, -6.863777902, -6.69850026, -6.360590952, -6.830737256, -6.779551607, -7.044918992, -6.787402086, -6.76775482, -6.96259054, -6.787933651, -6.824887265, -6.680389243, -6.955055068, -6.718093586, -6.909254528, -6.641507823, -6.558521075, -6.411261089, -7.054213838, -6.87284425, -6.837741521, -7.078360285, -6.672497192, -6.537817036, -6.870571805, -6.1858472, -6.848384682, -6.938312012, -6.891175814, -5.973199986, -6.540468116, -6.75532456, -7.116381235, -6.521366147, -6.58955062, -6.505871087, -6.890996724, -6.687450169, -6.66076812, -6.482075577, -6.670449889, -6.752223112, -6.43132649, -6.859958834, -6.837453443, -6.24085887, -6.430705704, -6.881453715, -6.581155496, -6.374151867, -6.997960187, -6.798579534, -6.838475037, -6.770004196, -6.842119452, -6.937191902, -6.889159226, -6.447208288, -6.765090402, -6.593204233, -6.71405656, -6.512704462, -6.709854514, -6.938946133, -6.849762557, -6.847539342, -6.715215466, -6.799780793, -7.053742545, -6.778284193, -6.40579822, -6.440561795, -6.893397445, -6.88021036, -6.749743006, -6.589023228, -6.938150676, -6.766076973, -6.484896143, -6.870886962, -6.878478071, -6.421098514, -5.738790716, -5.802752605, -6.44109506, -6.833377325, -6.605807132, -6.817011451, -6.003626554, -5.716840288, -5.939171253, -6.456089278, -6.793632448, -6.896697911, -6.741557494, -6.894260608, -6.340552139, -6.910020534, -7.086899383, -6.937045508, -6.684658182, -6.631357337, -6.73625947, -6.074545176, -6.442471394, -6.90571029, -7.135573296, -6.693294611, -7.175454867, -6.996471016, -6.49103922, -6.653548406, -6.848110884, -6.319180011, -6.821663187, -6.07724526, -6.244852954, -6.862224778, -6.935201499]}, {"log_prior": -0.708120722, "feature_log_probs": [-6.390114576, -6.284763957, -6.698709044, -6.628659247, -6.581098028, -6.760778513, -6.706237913, -6.60725806, -6.703976246, -6.799468978, -6.735643677, -6.840642757, -7.104293554, -7.09413825, -7.058286582, -7.065378236, -7.037753257, -7.057661983, -7.059179502, -7.042261755, -7.04787638, -7.047528497, -6.532762645, -6.913474523, -7.010849102, -7.014596765, -7.094503029, -7.049953454, -7.025831811, -7.021496786, -7.007617978, -6.945036587, -6.946510097, -6.989484355, -6.965293391, -6.963193167, -6.903894438, -6.868676003, -6.750774471, -6.86359419, -6.799750757, -6.816444996, -6.712069593, -6.751917541, -6.847670475, -6.864388312, -6.905450358, -6.782700952, -6.724934741, -7.021889481, -6.863920204, -6.871641085, -6.908079872, -6.892916962, -6.587734864, -6.995982233, -6.876055463, -6.984735642, -6.994255166, -6.973181278, -6.883767761, -6.957901239, -6.876024859, -6.643537653, -6.808793391, -6.879529891, -7.09721506, -6.948051795, -6.916924392, -6.994993801, -7.134033374, -6.445465058, -6.516778192, -6.461252177, -6.552545127, -6.638939024, -6.432919268, -6.409801129, -6.737571211, -6.775289949, -6.809095637, -6.664326193, -6.654678491, -6.80616961, -6.747572964, -6.757265052, -6.796957242, -6.574118781, -7.134033374, -6.947761218, -6.415565311, -6.644764294, -6.905628913, -7.063391412, -6.542861785, -6.634256815, -6.605486938, -6.484148442, -7.075293443, -6.691603896, -7.134033374, -6.965710465, -6.870999048, -7.045619436, -6.993311486, -7.102397898, -7.130190309, -7.108934872, -6.541702038, -6.686720999, -6.491602705, -6.638801829, -6.881094361, -6.387248599, -6.807332004, -6.938021977, -6.82102726, -7.131434045, -6.048223836, -6.29657095, -6.357942967, -6.160854624, -6.788983115, -6.62382374, -6.541720448, -6.845779726, -6.364845497, -6.829922003, -7.134033374, -6.720653162, -6.263919691, -6.133900548, -7.069304268, -7.001070308, -6.806105767, -6.928234796, -6.798007509, -7.134033374, -6.620466097, -6.709446469, -6.689769192, -6.341187924, -6.75722563, -6.538425213, -7.132070657, -6.926730199, -6.425882715, -6.696936988, -6.530431693, -6.844055911, -6.882144238, -7.025382847, -6.559884314, -6.993544279, -6.496555625, -7.073055816, -6.75466717, -6.691591492, -6.705997529, -7.059620331, -6.36783471, -6.89473132, -6.757127478, -7.134033374, -6.374979127, -7.134033374, -6.965859231, -6.869257068, -6.679054842, -6.786402805, -6.666985748, -7.126566516, -7.110466949, -7.134033374, -6.34959024, -6.738582064, -6.91015503, -6.580212554, -6.548467566, -6.729749351, -6.594366611, -6.656865483, -6.46229415, -6.581625988, -6.691641138, -6.608298343, -6.515955456, -6.383233263, -6.862580436, -6.892611243, -6.758382011, -6.848269499, -6.914671265, -6.876924806, -6.308609871, -6.973315651, -6.617092012, -7.104435056, -7.134033374, -6.608592233, -6.72710838, -6.603395447, -7.134033374, -6.507283084, -6.353713619, -6.678710776, -7.134033374, -6.694746998, -6.762417913, -6.825551114, -6.732559498, -6.830127908, -6.870494276, -7.125743915, -6.615555991, -7.127745173, -5.970918256, -6.498007019, -5.985507431, -6.415716156, -6.613997932, -6.961748469, -7.134033374, -6.602827729, -6.755884543, -6.842169661, -6.867437675, -6.707139987, -6.627920489, -6.339363938, -6.412121106, -7.134033374, -6.236506353, -6.60137911, -6.937205386, -7.037085963, -7.118654738, -6.36106001, -6.461313437, -6.498320663, -5.967518497, -6.902711273, -6.827357085, -6.959402295, -6.985126328, -7.002001695, -6.99375593, -6.818868354, -6.59186469, -6.666180443, -6.48142825, -6.612720751, -6.868440171, -6.605198361, -6.921408163, -6.817799141, -7.108463317, -6.402809444, -6.642795602, -7.011155467, -6.915719364, -7.072967529, -6.694478805, -7.064898777, -6.609985913, -6.536748175, -6.899350639, -6.874188959, -6.787433602, -6.322547809, -7.125508465, -6.874267255, -6.430518187, -6.546971032, -7.029831935, -6.441820727, -6.511099505, -6.695724838, -6.802957885, -7.029628075, -6.679159359, -6.985795514, -6.296091168, -7.129228464, -7.121874451, -7.134033374, -6.441699262, -6.840575772, -6.736671176, -6.583300456, -6.952950927, -6.609906055, -6.561114152, -6.251485478, -7.115450332, -6.644300291, -6.774177699, -6.69487992, -6.338918474, -6.825428451, -7.088076644, -7.087401254, -6.88764069, -6.72203013, -6.69415669, -6.63741199, -6.090900447, -6.949993382, -7.134033374, -6.785810422, -6.617001095, -6.991674725, -6.947021059, -6.947510929, -6.759400323, -6.388645454, -7.134033374, -6.592059864, -6.783706574, -7.132098395, -6.759392193, -6.332133532, -6.078041141, -6.082072074, -6.546661254, -6.544076625, -6.937189914, -6.230598331, -6.666220812, -6.546300408, -7.134033374, -7.134033374, -6.634011889, -6.76477014, -6.635422754, -7.033943827, -6.437712736, -6.513620701, -6.625191031, -6.224907373, -6.050222873, -6.379982793, -6.67106581, -7.067626409, -6.623149594, -6.074129166, -7.134033374, -7.134033374, -6.741057535, -6.578341394, -6.486967638, -7.132759346, -6.445518403, -7.025767612, -7.134033374, -6.469685828, -6.946238096, -6.453920864, -6.377017126, -7.01268863, -6.519899591, -6.822191663, -6.831531678, -6.461273889, -6.649861447, -6.777889249, -6.825286808, -6.749724874, -6.337253678, -6.651617232, -6.526912002, -6.6580867, -7.076224475, -6.747249567, -6.508153795, -6.950027926, -6.97954227, -6.514819647, -6.669598349, -6.724595379, -6.995859334, -7.134033374, -6.933468873, -6.774141053, -6.868694534, -6.466846272, -6.728365714, -6.770301622, -6.92287558, -6.87736668, -6.835103508, -6.497696059, -7.09140969, -6.485370091, -7.064943324, -6.145482461, -6.593358068, -7.134033374, -7.134033374, -6.785433211, -6.566080266, -6.827921423, -6.756780694, -6.583484968, -6.997195607, -6.945998917, -7.10019016, -6.849182106, -6.41596625, -6.788372538, -6.582388508, -6.875798945, -6.335284112, -6.541500337, -6.609701119, -6.008414635, -6.50163947, -6.550276315, -6.872203673, -6.625817014, -6.645866566, -6.698619655, -6.40985358, -7.134033374, -7.134033374, -6.34700553, -6.499677529, -5.996357584, -6.556470237, -6.233681077, -6.716583656, -6.338412678, -6.424903071, -6.770802015, -6.315622231, -6.345807217, -6.57668835, -6.772798786, -6.912045374, -7.129066822, -6.771991224, -6.689497797, -6.699620058, -5.9167506, -6.482872407, -6.499393837, -6.539797781, -6.732430059, -7.043099119, -7.014084779, -7.031774572, -6.898225979, -6.883897576, -6.419738045, -6.78536486, -6.770851952, -6.712182486, -7.134033374, -6.683184781, -6.559009066, -6.544581664, -6.481458038, -7.13346272, -6.90892553, -6.746021092, -6.863010935, -6.725350791, -6.59854261, -7.051894833, -7.091215754, -6.847647604, -6.819745123, -6.902305389, -6.730950529, -6.239485869, -6.585490078, -6.623564341, -6.98533552, -7.051050607, -6.997120903, -7.090769853, -6.451184538, -6.703930842, -7.134033374, -6.834095803, -6.549696192, -6.727028014, -6.74862104, -5.98269888, -6.690827839, -6.627143882, -6.800165878, -6.452002509, -5.797969469, -6.547805187, -7.134033374, -6.623823079, -6.721228684, -6.644770955, -7.001580946, -6.462112678, -6.809130704, -6.939255094, -6.712003615, -6.878855311, -6.717860875, -6.922657495, -6.613613747, -6.429497736, -6.418276419, -7.134033374, -6.452339565, -6.803971826, -7.058763074, -6.752925966, -6.48784247, -6.779338104, -6.732213968, -6.897765721, -6.925888301, -6.626752951, -6.829832124, -6.980102399, -6.954328, -6.901705523, -6.946621077, -7.124404241, -6.406324709, -6.713099658, -6.814213075, -7.120237449, -6.574176257, -6.55182248, -6.945508786, -6.492939851, -6.780911129, -6.47179132, -6.513177044, -6.663607357, -6.665256498, -6.280660531, -6.602326417, -6.803184859, -7.013533181, -6.739295496, -6.444238524, -6.742806226, -6.390428708, -6.632235607, -7.134033374, -7.134033374, -6.686185324, -7.121496595, -6.725480428, -6.448695014, -6.298478459, -6.688861269, -6.580840285, -6.98561822, -6.809954149, -6.935371773, -6.756161872, -6.662489039, -6.71772553, -6.568443616, -6.797957997, -6.734542673, -6.710479196, -6.564208055, -6.417479797, -6.619520453, -6.401446803, -6.907468059, -6.586956352, -6.858327057, -6.378343329, -6.75008931, -6.57504349, -6.649067023, -7.110979835, -6.489564902, -6.569522068, -6.508811562, -6.614042652, -6.639299246, -6.782061938, -7.020441983, -6.732250945, -6.24300011, -6.238926037, -6.183350844, -7.004826212, -6.581781169, -6.896023305, -6.652459537, -6.683682106, -6.840738751, -6.747533206, -6.784183237, -6.619910055, -6.826744307, -6.823085438, -7.134033374, -7.035574203, -6.532367891, -6.831695485, -6.750991808, -6.356094567, -6.706431368, -6.690932644, -6.502814495, -6.949073251, -6.627906826, -6.691816555, -6.813399208, -6.204987331, -6.857726177, -6.655767027, -7.096137, -6.567438524, -7.093463241, -7.134033374, -6.543709274, -6.579189647, -7.134033374, -6.876929048, -6.908750248, -6.86187694, -6.670462531, -6.785457626, -6.323690168, -6.427707513, -6.35367524, -6.862318168, -6.466261081, -6.620737063, -7.025822652, -7.092273485, -6.557962084, -6.91731612, -7.134033374, -6.690151931, -6.464825449, -6.880175788, -6.845456466, -6.563494138, -6.946531612, -6.695008548, -6.508760916, -6.636140673, -6.338283648, -6.531128359, -7.109781499, -6.907438674, -6.766904036, -6.565870616, -6.673012911, -6.476776277, -6.568817155, -6.547736999, -6.375249516, -6.715880712, -7.134033374, -6.42260004, -6.58742691, -6.17687454, -6.697738164, -6.912845081, -6.668811828, -6.64672496, -6.733732719, -6.539696422, -6.710723885, -6.622536745, -6.783592879, -6.886985379, -6.74010636, -6.78268068, -6.333255152, -6.570458583, -6.710727885, -6.38214144, -6.599206732, -7.117310882, -6.52222015, -6.655060829, -6.564198227, -6.424435632, -6.729850825, -6.337048558, -6.643694621, -7.111156724, -7.126676799, -6.693826401, -6.889591373, -6.432499458, -6.368117142, -6.9823038, -6.728778513, -6.467135113, -6.610204003, -6.651982367, -6.554285722, -6.358037999, -6.802872939, -6.902916198, -6.67483876, -6.539190713, -6.61085358, -6.67098426, -7.13159196, -6.703490986, -6.879127447, -6.57521986, -6.455853189, -6.187216011, -6.174920535, -6.522550005, -6.35964574, -7.055641886, -6.441878013, -6.563326748, -6.621466881, -7.07072523, -6.753615274, -6.813801124, -7.118179551, -6.820217526, -6.732396052, -6.854603616, -7.103060233, -6.302419085, -7.102497125, -7.073016189, -7.089796704, -6.531618963, -6.389920583, -6.513686842, -7.117099671, -7.134033374, -6.578166828, -7.112763805, -6.522476449, -6.799882783, -6.551139621, -6.772650782, -6.948045616, -6.648953699, -6.928722566, -6.478409856, -6.769745868, -5.952702085, -6.248129761, -6.438868224, -6.499430509, -6.777537186, -6.225694949, -6.634258661, -7.127335987, -7.126884397, -6.509599902, -6.7650386, -6.074500259, -7.080307499, -7.069326691, -6.64156569, -6.923983788, -6.496912645, -6.617436055, -7.132423504, -7.134033374, -7.129481119, -6.036289266, -6.681811861, -6.617217271, -6.730494568, -6.334174353, -6.011485544, -6.505819446, -6.506029064, -6.684712884, -6.371207865, -6.703885978, -6.691865819, -6.990189931, -7.00825994, -6.474229206, -6.335387912, -6.571632638, -6.258384988, -6.478137305, -6.016893443, -6.498630152, -6.507355604, -6.045330754, -6.68654275, -6.166318388, -6.142720118, -6.694232081, -6.453282563]}], "model_type": "nb", "positive_class_label": "autos_and_vehicles", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"cars": [153, 1.857248191], "really": [590, 2.070028956], "days": [219, 2.580854579], "simple": [657, 2.591217366], "vehicle": [763, 2.250290779], "related": [599, 2.816098538], "difficult": [233, 2.981178288], "car": [150, 1.691733753], "need": [488, 1.917352115], "owner": [523, 3.185273644], "manual": [448, 3.148232373], "make": [443, 1.567069239], "life": [415, 2.370855458], "owners": [524, 3.044691694], "hyundai": [354, 4.283885933], "built": [140, 2.257725758], "app": [90, 3.500587655], "called": [146, 2.176535603], "guide": [332, 3.154311419], "allows": [85, 2.892885681], "use": [751, 1.703097511], "learn": [408, 3.044691694], "basic": [114, 3.033822021], "saw": [629, 2.970974118], "works": [793, 2.63016034], "view": [768, 2.921459053], "engine": [259, 2.262713299], "interior": [372, 3.033822021], "different": [232, 1.924456941], "points": [548, 3.039242089], "air": [83, 2.608730949], "step": [684, 2.865106117], "inside": [369, 2.63016034], "phone": [538, 3.363828718], "help": [340, 2.063862441], "page": [527, 2.960873022], "available": [108, 2.211545013], "month": [475, 2.820455843], "2015": [39, 2.786117705], "2016": [40, 2.865106117], "come": [182, 2.107848589], "rest": [608, 2.803139393], "range": [587, 2.570598079], "later": [403, 2.316641641], "starting": [680, 2.619388243], "today": [720, 2.245364661], "audi": [100, 3.142190058], "update": [750, 3.256965573], "information": [368, 2.482736723], "systems": [698, 2.74478951], "company": [187, 1.928028373], "new": [493, 1.341435026], "feature": [278, 2.794592332], "board": [129, 3.166581511], "users": [754, 3.356338047], "free": [298, 2.437066686], "data": [216, 2.524078063], "18": [10, 2.748846311], "000": [0, 2.080391743], "north": [497, 2.986319687], "american": [87, 2.587751158], "major": [442, 2.786117705], "city": [174, 2.781907173], "europe": [266, 3.007153774], "began": [116, 3.007153774], "idea": [355, 2.530592745], "recently": [595, 2.816098538], "drivers": [245, 2.902319713], "pay": [532, 2.874280493], "currently": [209, 2.911843594], "live": [426, 2.869682784], "13": [5, 2.824832218], "small": [663, 2.211545013], "german": [312, 3.172773481], "uses": [755, 2.73672495], "based": [113, 2.010010946], "given": [317, 2.543750829], "plan": [541, 2.847006075], "access": [72, 2.965910816], "end": [257, 2.013902001], "year": [796, 1.771070495], "addition": [79, 2.883539818], "set": [650, 2.140495667], "self": [642, 2.709000402], "driving": [246, 2.262713299], "according": [73, 2.340674841], "ll": [427, 2.010010946], "production": [574, 2.464217676], "hybrid": [353, 3.334196921], "lamborghini": [398, 3.936689733], "soon": [668, 2.851500465], "research": [607, 2.748846311], "development": [227, 2.570598079], "chief": [166, 3.100886252], "offered": [504, 3.050171159], "makes": [444, 2.197393833], "sense": [645, 2.786117705], "produced": [572, 3.012430831], "place": [540, 2.192720928], "launch": [404, 3.172773481], "electric": [255, 2.748846311], "did": [229, 2.133880428], "provide": [578, 2.712914301], "told": [721, 2.7407491], "twin": [741, 3.562829964], "turbo": [738, 3.243542552], "v8": [759, 3.590738752], "torque": [723, 3.061220996], "mind": [467, 2.847006075], "interesting": [371, 3.118379409], "does": [237, 2.120779803], "big": [120, 2.109992212], "motor": [477, 2.752919636], "motors": [478, 3.066792041], "turn": [740, 2.437066686], "performance": [535, 2.379247116], "potential": [556, 2.874280493], "concept": [193, 2.709000402], "horsepower": [347, 3.012430831], "liter": [423, 3.270571225], "course": [203, 2.390546671], "probably": [568, 2.495276073], "version": [765, 2.382060057], "turbocharged": [739, 3.659057996], "specific": [673, 2.781907173], "needs": [490, 2.757009621], "completely": [191, 2.991487658], "feel": [282, 2.410633429], "cylinder": [213, 3.26374526], "long": [429, 1.882565999], "sports": [676, 2.757009621], "emissions": [256, 3.562829964], "future": [305, 2.384880933], "weight": [782, 2.851500465], "key": [391, 2.598186036], "value": [760, 2.833642847], "great": [327, 2.230730253], "news": [494, 2.678228743], "sure": [696, 2.329922049], "classic": [176, 3.179004031], "21": [44, 3.072394296], "million": [466, 2.633776981], "right": [615, 1.887707399], "manufacturer": [449, 3.172773481], "used": [752, 1.858916248], "model": [471, 2.176535603], "got": [324, 2.407739071], "check": [164, 2.807440475], "president": [562, 3.118379409], "general": [310, 2.55708436], "changes": [162, 2.769380913], "50": [63, 2.56720249], "years": [797, 1.727682987], "created": [205, 2.865106117], "fuel": [301, 2.874280493], "family": [275, 2.74478951], "seats": [637, 3.11251429], "speed": [674, 2.368073815], "mph": [480, 3.21075273], "high": [341, 1.996510259], "home": [345, 2.449042878], "video": [767, 2.940971867], "touch": [725, 3.458387301], "screen": [633, 3.483493222], "seat": [636, 3.039242089], "offers": [505, 3.02306923], "world": [794, 1.848949388], "image": [357, 3.001904418], "outside": [520, 2.712914301], "database": [217, 4.322352214], "software": [666, 3.044691694], "run": [622, 2.404853067], "steering": [683, 2.829227829], "power": [557, 2.195054651], "going": [321, 2.008071081], "travel": [731, 3.40999076], "20": [22, 2.362533635], "price": [566, 2.504784861], "aren": [95, 2.921459053], "global": [318, 3.11251429], "70": [67, 3.284364547], "hours": [349, 2.916639767], "buy": [143, 2.584296923], "additional": [80, 2.981178288], "costs": [200, 3.095122547], "bmw": [128, 2.945910149], "daimler": [215, 4.211126579], "automobile": [105, 3.371375924], "autonomous": [107, 3.475054353], "ride": [614, 3.017735884], "companies": [186, 2.73672495], "announced": [89, 2.970974118], "billion": [122, 3.590738752], "designed": [224, 2.479626301], "industry": [367, 2.644706051], "comes": [183, 2.293172507], "auto": [103, 2.584296923], "sales": [627, 2.8605503], "war": [774, 3.441993491], "business": [141, 2.587751158], "models": [472, 2.467280465], "personal": [537, 3.02306923], "mercedes": [462, 3.136184034], "benz": [117, 3.475054353], "automotive": [106, 2.757009621], "space": [671, 2.67444802], "way": [777, 1.624814593], "forward": [296, 2.936057853], "press": [563, 2.856015145], "came": [147, 2.543750829], "looking": [432, 2.26521643], "added": [78, 2.73672495], "march": [451, 3.223739925], "2018": [42, 2.824832218], "required": [606, 2.986319687], "including": [363, 2.078310576], "ford": [294, 2.816098538], "volkswagen": [769, 3.033822021], "build": [138, 2.492126464], "trucks": [734, 3.679466868], "owned": [522, 3.319703913], "service": [648, 2.794592332], "2019": [43, 2.820455843], "form": [295, 2.769380913], "services": [649, 3.10668337], "share": [651, 2.781907173], "function": [304, 3.326924161], "drive": [242, 2.151619252], "network": [492, 3.277444104], "similar": [656, 2.470352664], "terms": [709, 2.991487658], "ve": [762, 1.992686162], "brand": [134, 2.56720249], "means": [459, 2.357023979], "getting": [315, 2.467280465], "look": [431, 1.966319286], "offer": [503, 2.689657439], "recent": [594, 2.757009621], "tech": [704, 3.095122547], "handling": [335, 3.270571225], "didn": [230, 2.537150145], "want": [772, 1.931612607], "century": [157, 3.284364547], "vehicles": [764, 2.346094908], "safety": [625, 2.76524012], "example": [269, 2.335283992], "california": [145, 3.204321839], "second": [638, 2.270241566], "half": [333, 2.732716929], "super": [694, 3.072394296], "group": [329, 2.440047315], "includes": [362, 2.902319713], "fiat": [284, 3.89746902], "chrysler": [171, 3.710883064], "working": [792, 2.422295369], "fully": [302, 2.869682784], "jump": [389, 3.160427646], "search": [634, 2.888201831], "subaru": [692, 4.193734836], "sedan": [640, 3.270571225], "australia": [102, 3.859728692], "generation": [311, 2.838077444], "1989": [13, 3.910372425], "present": [561, 3.148232373], "assembly": [98, 3.562829964], "japan": [383, 3.500587655], "plant": [543, 3.509245718], "united": [747, 2.931167867], "states": [682, 2.74478951], "body": [130, 2.476525523], "chassis": [163, 3.136184034], "class": [175, 2.76524012], "1994": [17, 3.776841032], "mid": [463, 2.926301678], "size": [661, 2.777714295], "style": [690, 2.752919636], "door": [241, 2.824832218], "japanese": [384, 3.572046619], "unique": [745, 2.921459053], "wheel": [784, 2.473434331], "standard": [677, 2.612270776], "traditional": [728, 3.066792041], "1996": [18, 3.89746902], "suspension": [697, 3.072394296], "introduced": [375, 3.017735884], "sport": [675, 3.10668337], "success": [693, 3.02306923], "line": [419, 2.404853067], "2000": [24, 3.581349012], "known": [396, 2.479626301], "2008": [32, 3.26374526], "1993": [16, 4.005682604], "1999": [21, 3.669210368], "1998": [20, 3.689829655], "2004": [28, 3.509245718], "2003": [27, 3.535678975], "2009": [33, 3.291333216], "2014": [38, 2.847006075], "engines": [261, 3.028431173], "driver": [244, 2.416447399], "technology": [706, 2.434094916], "racing": [586, 3.142190058], "gt": [330, 3.535678975], "market": [453, 2.295753153], "release": [600, 3.095122547], "10": [1, 2.035577727], "11": [3, 2.612270776], "12": [4, 2.452059471], "links": [421, 3.217225244], "edit": [253, 3.356338047], "main": [441, 2.74478951], "article": [96, 2.847006075], "honda": [346, 3.609786947], "toyota": [726, 3.312535424], "mazda": [457, 4.127043461], "nissan": [495, 3.710883064], "citation": [172, 3.991497969], "needed": [489, 2.55708436], "flat": [290, 3.312535424], "series": [647, 2.619388243], "powerful": [559, 2.911843594], "previous": [565, 2.865106117], "optional": [513, 3.859728692], "package": [525, 3.284364547], "america": [86, 2.807440475], "uk": [743, 3.250231541], "germany": [313, 3.277444104], "options": [514, 3.028431173], "included": [361, 2.945910149], "control": [196, 2.343381202], "80": [68, 3.130213867], "km": [394, 3.872151212], "increase": [365, 3.050171159], "road": [616, 2.346094908], "released": [601, 3.118379409], "january": [382, 3.23689801], "23": [46, 3.21075273], "february": [281, 3.466686104], "1990": [14, 3.74331834], "hand": [334, 2.501605208], "option": [512, 2.865106117], "1992": [15, 3.910372425], "passenger": [530, 3.277444104], "block": [125, 3.475054353], "oil": [507, 3.562829964], "non": [496, 2.892885681], "simply": [658, 2.524078063], "note": [498, 2.8605503], "trim": [732, 3.679466868], "automatic": [104, 3.23689801], "transmission": [730, 2.996682474], "equipped": [263, 3.291333216], "sold": [667, 2.666929188], "2002": [26, 3.581349012], "roof": [618, 3.517979398], "october": [502, 3.26374526], "25": [48, 2.76524012], "250": [49, 3.553697481], "short": [655, 2.626556733], "term": [708, 3.033822021], "light": [416, 2.570598079], "case": [154, 2.428177739], "2012": [36, 3.055680815], "choice": [169, 3.028431173], "increased": [366, 3.154311419], "longer": [430, 2.7407491], "level": [413, 2.476525523], "using": [756, 2.035577727], "limited": [418, 2.76524012], "government": [325, 3.298350789], "special": [672, 2.773538923], "edition": [254, 3.425864109], "wheels": [785, 2.798856731], "higher": [342, 2.689657439], "rear": [591, 2.563818392], "june": [390, 3.148232373], "versions": [766, 3.191582813], "continued": [195, 3.394365442], "markets": [455, 3.356338047], "lower": [437, 2.757009621], "featured": [279, 3.517979398], "16": [8, 2.833642847], "replaced": [603, 3.348903068], "code": [180, 3.348903068], "1997": [19, 3.754368176], "launched": [405, 3.291333216], "started": [679, 2.467280465], "late": [402, 2.829227829], "european": [267, 3.172773481], "went": [783, 2.64837578], "sale": [626, 3.172773481], "2001": [25, 3.732389269], "instead": [370, 2.255241285], "running": [623, 2.803139393], "left": [410, 2.56720249], "allow": [84, 2.865106117], "shift": [653, 3.130213867], "2005": [29, 3.475054353], "competition": [189, 3.341522961], "factory": [274, 3.118379409], "won": [788, 2.452059471], "international": [373, 3.083693851], "2006": [30, 3.450156802], "litre": [424, 4.211126579], "return": [612, 3.100886252], "unit": [746, 3.326924161], "levels": [414, 3.270571225], "human": [352, 3.044691694], "highway": [343, 3.356338047], "various": [761, 2.856015145], "diesel": [231, 3.721578353], "official": [506, 3.243542552], "reported": [605, 3.284364547], "2010": [34, 3.148232373], "week": [781, 2.55708436], "york": [799, 2.878899439], "website": [780, 3.217225244], "best": [118, 1.924456941], "science": [632, 3.450156802], "able": [71, 2.298340477], "choose": [170, 3.166581511], "14": [6, 2.73672495], "manufacturers": [450, 3.270571225], "sell": [643, 3.007153774], "tax": [702, 3.923444506], "certain": [158, 2.786117705], "current": [208, 2.670681538], "coupe": [202, 3.305417956], "september": [646, 3.334196921], "15": [7, 2.543750829], "output": [519, 3.433896281], "ps": [579, 4.322352214], "kw": [397, 4.020071342], "17": [9, 3.017735884], "mounted": [479, 3.341522961], "possible": [554, 2.348815998], "test": [711, 2.608730949], "user": [753, 3.334196921], "pre": [560, 3.378980523], "brake": [132, 3.433896281], "position": [553, 3.100886252], "40": [60, 2.820455843], "miles": [465, 2.907070316], "hour": [348, 3.154311419], "19": [11, 2.981178288], "include": [360, 2.530592745], "change": [160, 2.293172507], "traffic": [729, 3.017735884], "fast": [277, 2.798856731], "features": [280, 2.455085192], "22": [45, 3.118379409], "platform": [544, 2.931167867], "compared": [188, 2.907070316], "styling": [691, 3.572046619], "inch": [359, 3.394365442], "base": [112, 3.078028114], "24": [47, 2.842531795], "90": [69, 3.298350789], "components": [192, 3.26374526], "april": [92, 3.305417956], "mm": [469, 4.095294763], "26": [50, 3.23689801], "number": [500, 2.252762968], "selling": [644, 3.11251429], "28": [52, 3.217225244], "expensive": [271, 2.931167867], "canada": [149, 3.64900766], "products": [575, 3.001904418], "hp": [351, 3.458387301], "close": [179, 2.781907173], "named": [484, 3.095122547], "early": [248, 2.379247116], "500": [64, 2.7407491], "2007": [31, 3.319703913], "making": [445, 2.078310576], "team": [703, 2.637406749], "championship": [159, 4.2651938], "british": [136, 3.466686104], "wasn": [775, 2.970974118], "coming": [184, 2.777714295], "finally": [288, 2.878899439], "following": [292, 2.53386607], "parts": [529, 2.64837578], "times": [718, 2.176535603], "total": [724, 2.888201831], "overall": [521, 3.061220996], "grand": [326, 3.326924161], "season": [635, 3.600217496], "record": [596, 3.095122547], "cc": [155, 4.11104312], "27": [51, 3.21075273], "ii": [356, 3.600217496], "original": [517, 2.685833343], "center": [156, 2.697349785], "100": [2, 2.553734273], "land": [399, 3.40999076], "average": [109, 3.136184034], "seconds": [639, 3.055680815], "400": [61, 3.298350789], "driven": [243, 3.095122547], "29": [53, 3.26374526], "usually": [757, 2.851500465], "fact": [273, 2.473434331], "30": [54, 2.492126464], "numbers": [501, 3.078028114], "31": [56, 3.341522961], "32": [57, 3.402147583], "2011": [35, 3.185273644], "33": [58, 3.483493222], "2013": [37, 2.996682474], "60": [65, 2.816098538], "35": [59, 3.217225244], "2017": [41, 2.781907173], "retrieved": [611, 3.669210368], "archived": [93, 3.732389269], "review": [613, 3.142190058], "machine": [440, 3.130213867], "apple": [91, 3.553697481], "org": [516, 3.679466868], "link": [420, 3.223739925], "july": [388, 3.291333216], "large": [400, 2.553734273], "media": [460, 2.888201831], "december": [221, 3.23689801], "hard": [336, 2.431131951], "site": [660, 3.078028114], "fiesta": [285, 5.035302022], "china": [167, 3.466686104], "south": [670, 3.386643396], "mark": [452, 3.284364547], "marketing": [454, 3.394365442], "blue": [127, 3.179004031], "post": [555, 2.732716929], "developed": [226, 2.865106117], "project": [577, 2.8605503], "renault": [602, 4.5906162], "earlier": [247, 2.856015145], "mini": [468, 4.064523104], "cost": [199, 2.644706051], "length": [411, 3.394365442], "final": [287, 2.911843594], "engineering": [260, 2.960873022], "near": [486, 2.794592332], "took": [722, 2.605203608], "display": [234, 3.334196921], "le": [407, 3.923444506], "race": [585, 3.028431173], "cu": [206, 4.54060578], "low": [436, 2.467280465], "popular": [551, 2.897591572], "plus": [546, 2.95586048], "having": [337, 2.368073815], "changed": [161, 3.118379409], "little": [425, 2.07209294], "energy": [258, 3.356338047], "chevrolet": [165, 3.754368176], "black": [124, 2.986319687], "larger": [401, 2.945910149], "august": [101, 3.341522961], "eventually": [268, 3.012430831], "seen": [641, 2.537150145], "head": [338, 2.574005237], "result": [609, 2.752919636], "easily": [249, 2.911843594], "quality": [581, 2.807440475], "customers": [212, 2.911843594], "old": [508, 2.335283992], "opel": [510, 4.820190642], "gear": [307, 3.136184034], "units": [748, 3.277444104], "street": [688, 3.044691694], "kg": [392, 4.159833284], "lb": [406, 3.659057996], "design": [223, 2.206805667], "customer": [211, 3.312535424], "despite": [225, 2.931167867], "reason": [592, 2.773538923], "better": [119, 1.988876634], "type": [742, 2.52083657], "62": [66, 3.669210368], "received": [593, 3.21075273], "focus": [291, 2.798856731], "words": [790, 3.185273644], "brakes": [133, 3.160427646], "culture": [207, 3.553697481], "quickly": [583, 2.709000402], "common": [185, 2.790346041], "country": [201, 2.981178288], "nearly": [487, 2.777714295], "economic": [251, 3.689829655], "prices": [567, 3.341522961], "red": [597, 3.033822021], "200": [23, 2.950872938], "exhaust": [270, 3.402147583], "white": [786, 3.017735884], "november": [499, 3.348903068], "read": [588, 2.577424044], "green": [328, 3.312535424], "carbon": [151, 3.371375924], "45": [62, 3.326924161], "theme": [713, 4.005682604], "modern": [473, 2.757009621], "led": [409, 2.996682474], "problem": [569, 2.689657439], "away": [110, 2.382060057], "issue": [378, 2.95586048], "estate": [265, 3.910372425], "corvette": [198, 4.095294763], "button": [142, 3.450156802], "gets": [314, 2.856015145], "doesn": [238, 2.233154497], "money": [474, 2.591217366], "think": [716, 2.114293294], "mustang": [483, 4.11104312], "say": [630, 2.209172532], "actually": [76, 2.206805667], "start": [678, 2.133880428], "stop": [685, 2.811760136], "powered": [558, 3.136184034], "good": [322, 1.872361829], "ft": [300, 3.553697481], "economy": [252, 3.223739925], "tires": [719, 3.500587655], "mode": [470, 3.394365442], "reduce": [598, 3.142190058], "rpm": [621, 3.847458599], "true": [735, 2.709000402], "results": [610, 2.936057853], "report": [604, 3.017735884], "program": [576, 3.130213867], "taking": [701, 2.716843579], "multiple": [482, 3.033822021], "technical": [705, 3.179004031], "problems": [570, 2.892885681], "internet": [374, 3.402147583], "public": [580, 2.626556733], "months": [476, 2.670681538], "custom": [210, 3.535678975], "ago": [82, 2.652059026], "300": [55, 3.142190058], "single": [659, 2.537150145], "add": [77, 2.709000402], "color": [181, 3.348903068], "luxury": [438, 3.012430831], "track": [727, 2.752919636], "story": [687, 2.748846311], "national": [485, 2.940971867], "work": [791, 1.865616441], "support": [695, 2.757009621], "division": [235, 3.590738752], "journal": [387, 3.754368176], "game": [306, 3.284364547], "testing": [712, 3.230297326], "book": [131, 2.916639767], "pdf": [533, 3.732389269], "photo": [539, 3.609786947], "far": [276, 2.316641641], "know": [395, 1.94790256], "don": [240, 1.857248191], "source": [669, 3.204321839], "experience": [272, 2.476525523], "day": [218, 2.074161193], "takes": [700, 2.752919636], "content": [194, 3.250231541], "list": [422, 2.563818392], "bad": [111, 2.878899439], "ferrari": [283, 3.363828718], "device": [228, 3.835337239], "let": [412, 2.399105924], "issues": [379, 3.007153774], "gm": [319, 3.483493222], "web": [779, 3.441993491], "health": [339, 3.590738752], "mean": [458, 2.991487658], "dodge": [236, 4.176640403], "yes": [798, 3.256965573], "thing": [714, 2.255241285], "goes": [320, 2.803139393], "real": [589, 2.357023979], "clear": [177, 2.64837578], "easy": [250, 2.580854579], "ways": [778, 2.685833343], "online": [509, 2.950872938], "file": [286, 3.872151212], "truck": [733, 3.776841032], "tesla": [710, 3.441993491], "smart": [664, 3.500587655], "attention": [99, 3.033822021], "deal": [220, 2.926301678], "management": [447, 3.230297326], "kind": [393, 2.584296923], "brands": [135, 3.356338047], "vw": [771, 3.572046619], "middle": [464, 3.089391873], "worth": [795, 2.897591572], "important": [358, 2.384880933], "table": [699, 3.562829964], "room": [619, 3.017735884], "quite": [584, 2.637406749], "fun": [303, 3.007153774], "things": [715, 2.149384614], "point": [547, 2.131685037], "percent": [534, 2.945910149], "porsche": [552, 3.11251429], "process": [571, 2.553734273], "love": [435, 2.732716929], "maybe": [456, 2.970974118], "doing": [239, 2.601688666], "state": [681, 2.878899439], "likely": [417, 2.655755887], "click": [178, 3.619448858], "play": [545, 3.02306923], "school": [631, 3.166581511], "rover": [620, 4.2651938], "question": [582, 2.856015145], "bit": [123, 2.504784861], "italian": [380, 3.619448858], "jaguar": [381, 3.963718405], "isn": [377, 2.425232229], "lot": [434, 2.156103564], "looks": [433, 2.761116403], "age": [81, 3.172773481], "building": [139, 2.833642847], "product": [573, 2.7407491], "battery": [115, 3.590738752], "role": [617, 3.23689801], "past": [531, 2.63016034], "particularly": [528, 3.017735884], "especially": [264, 2.601688666], "try": [736, 2.724748759], "save": [628, 3.083693851], "camera": [148, 3.74331834], "order": [515, 2.574005237], "thought": [717, 2.847006075], "understand": [744, 3.039242089], "care": [152, 3.11251429], "trying": [737, 2.74478951], "entire": [262, 2.803139393], "history": [344, 2.605203608], "pretty": [564, 2.612270776], "tell": [707, 2.847006075], "google": [323, 3.100886252], "person": [536, 2.807440475], "volvo": [770, 3.326924161], "cadillac": [144, 3.765541477], "create": [204, 2.591217366], "complete": [190, 2.897591572], "man": [446, 3.055680815], "daily": [214, 3.089391873], "study": [689, 3.277444104], "local": [428, 3.044691694], "ask": [97, 3.072394296], "store": [686, 3.386643396], "net": [491, 3.509245718], "house": [350, 2.888201831], "account": [74, 3.441993491], "wanted": [773, 2.921459053], "action": [75, 3.305417956], "job": [385, 2.820455843], "open": [511, 2.492126464], "citroen": [173, 4.616591687], "area": [94, 2.803139393], "social": [665, 3.11251429], "blog": [126, 3.41789594], "plans": [542, 3.055680815], "financial": [289, 3.305417956], "v6": [758, 4.020071342], "pontiac": [550, 4.820190642], "buick": [137, 4.447515357], "john": [386, 3.386643396], "delorean": [222, 5.689228489], "ghosn": [316, 6.174736305], "chinese": [168, 3.79983055], "geely": [308, 4.996081308], "mr": [481, 3.776841032], "amg": [88, 4.54060578], "m3": [439, 4.5906162], "convertible": [197, 3.847458599], "911": [70, 3.950112753], "water": [776, 3.10668337], "shop": [654, 3.74331834], "polestar": [549, 4.886882016], "1970": [12, 4.211126579], "isbn": [376, 4.11104312], "french": [299, 3.81152659], "university": [749, 3.197932041], "frame": [297, 3.590738752], "shelby": [652, 4.852980465], "gto": [331, 4.996081308], "women": [787, 3.74331834], "income": [364, 4.049485227], "osaka": [518, 5.769271197], "saab": [624, 5.035302022], "food": [293, 3.535678975], "bike": [121, 4.492977731], "sls": [662, 6.308267697], "men": [461, 3.659057996], "packard": [526, 6.174736305], "gender": [309, 4.996081308], "wordpress": [789, 4.757670285]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_beauty_and_fitness.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_beauty_and_fitness.json deleted file mode 100644 index fa0bf6a..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_beauty_and_fitness.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.688864519, "feature_log_probs": [-6.488725081, -5.874229174, -6.644946921, -6.704943686, -6.397020137, -7.030669253, -6.810706791, -6.365680361, -6.87701946, -7.167270869, -6.927641023, -7.131910788, -6.184158914, -7.648173537, -6.958415103, -7.093324429, -7.095760963, -7.22145829, -7.015227593, -7.202374572, -7.335791609, -7.075924846, -6.952919531, -6.716891779, -6.066184658, -6.740966129, -6.721670312, -6.873867298, -6.430982498, -7.094759124, -6.343643047, -7.219445958, -6.912005034, -6.421861648, -6.038279057, -6.161761261, -6.848255763, -6.268616287, -6.655226586, -6.865020426, -6.99781789, -7.303841819, -6.840728068, -6.685944597, -7.550260793, -7.676382151, -6.718555237, -6.431294127, -6.56747872, -6.897107152, -6.493626507, -6.909723969, -6.685813779, -6.536732382, -6.384884883, -6.685893148, -6.698009031, -6.547913769, -6.65791119, -7.00471631, -6.563904662, -6.548873682, -6.331513764, -6.394081535, -6.648839678, -6.304613288, -5.409285755, -6.594213573, -6.060033661, -5.802939314, -5.879527984, -6.208549959, -7.478627727, -6.342019084, -5.952564044, -6.653035165, -6.028765328, -4.681297037, -6.590708887, -7.244630037, -6.51084575, -5.902091381, -6.132250732, -6.339559226, -6.509720929, -7.187325796, -6.037730001, -6.435142734, -6.442386508, -5.923699839, -6.565036636, -7.665688648, -7.45502747, -6.281017868, -6.191914211, -6.947872198, -6.644511635, -6.25512896, -6.844821021, -6.54239768, -6.868156191, -6.890809477, -6.711589143, -6.449907566, -6.894114086, -6.849542782, -6.608910458, -6.834319895, -7.240383008, -6.141986023, -6.165621208, -6.27661013, -6.331424721, -7.011721881, -6.846301016, -6.849380894, -6.698183683, -6.017783365, -6.894637875, -6.624465999, -6.85216983, -6.383490945, -6.868848443, -6.785447438, -7.039221951, -7.147510583, -6.881463512, -6.490046176, -6.195849316, -6.861058344, -6.790110998, -6.833206569, -7.112395881, -6.613453947, -6.345543529, -6.328947428, -6.826585594, -8.356804245, -5.199489153, -5.960599533, -7.09448102, -6.279820603, -6.772552133, -7.283276563, -6.205060412, -6.191980712, -5.569667856, -6.669696975, -5.922642023, -6.837498689, -6.181081625, -6.182628258, -5.900378794, -5.318499641, -6.253914915, -6.244106245, -6.595400394, -6.766217642, -6.936770692, -6.14124055, -5.80380443, -6.018457684, -7.256078019, -6.61634863, -6.66177493, -6.398216085, -6.842952116, -8.119885007, -6.271102607, -5.674694529, -6.441003908, -5.81986512, -8.143040539, -6.386822191, -5.2142087, -6.509832392, -6.690515275, -6.409145568, -5.624067962, -6.653831102, -6.480147333, -6.656278503, -6.634130021, -5.293575763, -6.21329446, -6.65656085, -5.443965627, -7.14556663, -5.556321557, -6.387884283, -6.246600447, -6.462480058, -7.484956931, -6.944682059, -6.960467682, -7.219239106, -6.891537028, -6.219022969, -5.61155067, -6.565258976, -6.478766962, -6.768873404, -5.793056842, -6.141819299, -8.246266557, -6.429484978, -6.075973075, -6.840996773, -6.527219025, -6.850192717, -6.94667531, -6.82035603, -7.206579511, -7.772448025, -7.865397146, -7.092881092, -6.839597598, -6.877765302, -6.034370528, -6.831160238, -6.241644798, -6.220764373, -6.765529522, -5.838167941, -5.573660765, -7.176307044, -6.285388337, -5.9920687, -6.367023147, -6.348802413, -6.939224938, -6.094583959, -4.815727257, -6.42438875, -6.326048408, -6.64244056, -6.184495242, -6.225936544, -6.286259761, -5.435536529, -5.848676879, -6.403842343, -5.55481689, -6.581092074, -6.129949518, -5.833449883, -6.869843672, -6.930456511, -6.414059358, -6.280141242, -6.234155892, -6.200441295, -6.788300105, -6.720430786, -6.424939208, -6.760771583, -7.056271486, -6.552822459, -6.727006749, -5.999254392, -6.504662193, -6.781218834, -6.546436607, -6.366798131, -7.023926388, -6.306296009, -6.713081653, -6.869194796, -6.310285266, -6.278732582, -6.325406317, -6.823873224, -6.468808075, -6.772262273, -6.316002811, -5.698308206, -6.640472503, -6.692225956, -6.696693086, -6.784800213, -6.495459544, -7.212681172, -6.886814895, -6.522970023, -6.149905895, -6.394031913, -6.198888479, -5.630326847, -6.389466003, -6.48317451, -6.242925735, -6.522879877, -5.85703179, -6.596774093, -6.593856972, -5.538860014, -7.277842684, -5.754040375, -6.457903097, -5.516795411, -6.798836121, -6.192185347, -6.332088166, -6.398832468, -6.186573045, -6.690455798, -5.838574324, -6.02181207, -6.418281225, -6.334282801, -7.156628864, -6.938641092, -5.335548757, -6.18167278, -6.050448695, -6.321953849, -6.391816157, -7.325505625, -6.513993269, -7.359720767, -6.613859841, -6.700918757, -6.628653557, -6.019191954, -6.581087962, -6.499886469, -6.456693321, -6.556788302, -6.454029869, -6.31676158, -6.793796267, -6.796537537, -5.650219738, -6.790352641, -6.879738447, -6.488121594, -6.361087848, -6.415519904, -5.815188721, -6.261803772, -6.393342565, -6.322423704, -6.550772707, -6.44712893, -6.1581681, -6.618736248, -7.104229179, -5.276177929, -5.630860846, -6.081621984, -5.635797491, -6.81369182, -6.557281609, -5.429884921, -6.89860492, -6.50163551, -6.834467534, -7.004859884, -6.638623693, -6.175284536, -7.166445961, -5.291057978, -5.971297958, -6.075767703, -6.446619081, -6.836090173, -7.193821364, -6.843998969, -7.698816182, -7.366203286, -7.04265173, -6.423200681, -6.80257646, -6.248327864, -7.097689308, -6.603249472, -6.878588638, -6.251026849, -6.420279817, -6.482120391, -6.990804955, -6.114317635, -6.304603198, -6.173979332, -6.224622576, -6.544791562, -7.111939954, -6.278792555, -6.752895202, -6.875047234, -6.593989492, -6.169625485, -7.279783925, -6.950562106, -6.406769112, -6.597977434, -6.489314229, -6.521401628, -6.317520589, -7.147393703, -6.396122597, -6.585772354, -6.835176348, -6.40007174, -6.16785955, -7.173745471, -5.77692956, -6.421800235, -6.605719549, -8.155164504, -4.950382733, -6.981656814, -7.127945671, -6.831060843, -6.594243637, -6.602466277, -7.139892813, -6.864179656, -6.864404854, -6.490306561, -6.756751488, -6.687252984, -6.726714948, -6.264836611, -7.049693759, -6.554555553, -6.34697111, -5.664837587, -6.692667899, -6.853256398, -6.70482016, -6.524722097, -6.672629463, -6.668164174, -6.59107898, -6.725118803, -7.167013683, -6.228892914, -6.357031307, -6.774274149, -6.288855969, -7.70182985, -7.072990738, -5.765622921, -6.743080782, -7.093522813, -6.666750951, -6.195438314, -5.924748435, -5.778877261, -6.681714368, -6.740519649, -6.082888844, -6.395294928, -6.6024956, -7.306928347, -6.656228029, -6.799128145, -6.132326861, -6.772140008, -6.770740764, -7.257495162, -6.855131652, -6.331064316, -6.221699471, -6.557104968, -6.500204075, -6.740390035, -6.669300804, -6.275335116, -6.565872708, -6.701997594, -7.17045383, -6.393357254, -5.054730114, -6.305314237, -6.307077399, -6.252763479, -6.721026095, -6.651575276, -6.642236067, -6.963263344, -6.653323183, -6.586368594, -5.884705416, -6.324976117, -6.617311313, -6.784057944, -7.170881361, -6.624334864, -6.296798775, -6.701538113, -6.724414864, -6.47869397, -7.258057381, -6.946422262, -6.606215127, -7.202538877, -6.102465469, -6.190141703, -6.728939534, -6.572671825, -5.798601537, -6.015838083, -6.853950096, -6.065984297, -6.239059853, -6.659536458, -6.107034007, -7.43490317, -7.363091094, -6.80048159, -6.378033562, -6.501666748, -6.261377391, -6.823486135, -5.858803505, -6.477082731, -6.796970298, -7.154569448, -7.111561391, -6.507916584, -6.08733588, -5.75866506, -5.676205242, -6.759677985, -6.603389564, -6.103837738, -6.435647144, -6.375154788, -6.411299693, -6.700943931, -6.770064576, -6.980496718, -6.826022681, -6.727390828, -5.358907357, -6.77133951, -6.830445978, -6.605349619, -5.878025054, -6.410434494, -6.631426818, -6.826992131, -6.459428963, -6.867555942, -6.869820996, -7.05963297, -7.538124437, -6.425852737, -5.480402473, -5.977511717, -7.063755375, -6.925852113, -6.911035825, -6.022387698, -6.547345119, -7.073911439, -6.989939467, -5.595301095, -6.987963285, -6.26259143, -7.005878868, -6.410280454, -5.498427388, -6.477204795, -6.860348759, -5.678088536, -5.59343675, -6.567605902, -5.974591288, -7.405177019, -6.865152528, -5.693131644, -6.500301959, -5.458514214, -6.7260846, -6.521788143, -6.21242765, -8.152920452, -8.356614107, -6.324809463, -5.313114729, -6.587838942, -8.496551413, -5.49335814, -6.218416943, -5.545050952, -6.158334698, -6.482385224, -6.019724597, -6.693340127, -7.095786789, -7.051163964, -5.697443395, -5.786901557, -6.464096947, -6.030981258, -6.466735546, -6.685692161]}, {"log_prior": -0.697448262, "feature_log_probs": [-5.556178011, -5.76777418, -6.519035795, -6.510640602, -6.366155214, -6.495642276, -6.739227359, -6.432225447, -6.59475784, -6.860454576, -6.645206815, -6.795811039, -6.284395362, -6.72960274, -6.737553932, -6.86691983, -6.617527026, -6.517063338, -6.711473685, -6.564168435, -6.305880446, -6.874826162, -6.931072821, -6.759748704, -6.487790599, -6.80047315, -6.426378185, -6.510096799, -6.196425209, -6.33862139, -6.089780803, -6.33346413, -6.681200231, -7.023336725, -6.180249446, -6.238161577, -6.624149268, -6.536311635, -6.423278683, -6.403165545, -6.54631088, -6.503617322, -6.154628164, -6.065753258, -6.328479424, -6.209224832, -6.655781252, -6.055474856, -6.984257708, -6.654251276, -6.404923482, -6.667783919, -6.854846975, -6.737546001, -6.552756189, -6.494289251, -6.609649323, -6.686935377, -6.66190042, -6.2223151, -6.54631748, -6.984498161, -6.357781351, -6.598723942, -7.067131478, -5.900811739, -7.716166221, -6.712461418, -6.863177194, -5.759721371, -5.970381055, -6.083977453, -5.815857923, -6.258135549, -6.576967783, -5.937311245, -6.752559858, -6.550750418, -5.814789019, -6.117520018, -6.617175835, -6.694070351, -7.215694279, -6.472222242, -6.465264127, -6.37068466, -5.796997208, -6.239730824, -6.102498244, -7.684993426, -6.622144905, -6.181675161, -5.526887974, -8.508600591, -6.62352483, -6.101894547, -6.530971922, -6.194430776, -6.873125504, -6.081526598, -6.422049621, -5.705186815, -6.615720759, -6.680054078, -6.527030751, -6.49248038, -7.149172224, -6.691943543, -6.144452297, -8.507508712, -7.181721791, -6.109741057, -6.276060881, -6.567541508, -6.497716813, -6.332814576, -6.025074322, -5.670101315, -6.826952315, -6.820913124, -6.75903127, -5.957732219, -6.848367158, -6.305847463, -6.26769831, -6.13257323, -6.760546357, -6.317702231, -6.075907869, -6.622163409, -6.88648071, -6.469267937, -6.388611552, -6.721289483, -7.003612168, -6.611404313, -5.140646155, -6.079586018, -5.818630903, -6.259388605, -6.53250053, -6.015519962, -6.702683873, -6.350592293, -6.061856265, -6.186413738, -7.720080084, -6.899209821, -5.851427231, -6.752152496, -6.037649939, -6.109520002, -6.363475003, -5.464250123, -7.309734418, -7.080937879, -6.282647292, -6.804995597, -6.574657534, -6.261728587, -7.076345792, -7.260047327, -5.866878873, -6.703270316, -6.805946179, -7.263479836, -6.782346803, -7.078220736, -5.894882806, -6.858853647, -6.423922622, -7.059458195, -6.189650753, -6.043932599, -7.498988026, -6.177872565, -6.881814438, -7.120755834, -6.745774687, -6.132463734, -6.431918177, -6.26063971, -6.078311018, -7.725669296, -6.692109128, -6.96783106, -7.285845787, -6.295099435, -6.176233412, -6.804836369, -7.036778436, -6.913365023, -6.419023715, -6.598385392, -6.78716228, -6.071738095, -7.346848923, -6.937163122, -7.859171413, -6.623799433, -6.4894699, -6.413040757, -6.02944165, -7.03439986, -6.679526009, -6.562699174, -6.003163804, -6.67115243, -6.712638082, -6.610464667, -6.714547243, -6.247350533, -5.584969626, -6.049007238, -6.506644389, -6.656084537, -6.417647762, -6.78862755, -6.251432052, -6.535776735, -6.789011327, -6.724954334, -6.599552253, -5.856804106, -5.820790818, -5.699289248, -6.287301278, -5.993390138, -6.234984928, -6.85752207, -6.986163172, -7.989836028, -7.821370868, -6.585001184, -6.443736854, -6.777712462, -6.26110754, -6.241385554, -6.470650887, -6.069931557, -7.14493226, -6.799899738, -5.921552228, -7.423620089, -7.021608815, -5.947869476, -6.645278094, -6.294446756, -6.84983314, -5.552305322, -6.896596999, -6.49186973, -6.07583121, -6.423690244, -6.365535683, -6.615271435, -6.913716396, -6.090171314, -6.545498724, -6.222929032, -6.731954965, -6.58382486, -6.105594687, -6.592029279, -6.625783547, -6.465540431, -5.815603384, -6.639721373, -6.457797429, -6.457262478, -6.410302117, -6.603629602, -6.103574416, -6.212943547, -6.35084942, -5.677112046, -6.355219241, -6.293482748, -6.24375717, -6.697995761, -6.307705944, -6.420928117, -6.442554601, -6.176831083, -5.97724248, -6.420754367, -6.902587561, -5.68308779, -6.470144271, -6.382311226, -6.236626778, -5.999472952, -5.951412419, -6.18149345, -6.683823803, -5.561374047, -6.12314969, -5.857853609, -6.67817459, -5.972336522, -6.917325152, -6.244465662, -6.691796056, -7.250001252, -7.144085236, -6.704905436, -6.066761197, -5.906992587, -6.427212197, -6.770444853, -6.636800706, -6.53727916, -5.386791136, -6.135273686, -7.873569891, -6.228386121, -6.372230238, -6.54337801, -7.146017673, -6.622774569, -5.88677214, -6.841376163, -7.266026319, -8.175079045, -6.586937261, -6.741184515, -7.372356598, -6.565493421, -6.260143579, -6.372807855, -6.440327238, -6.802606616, -6.484920717, -6.681964354, -6.522244748, -6.149677036, -6.52197236, -7.07813484, -6.516549665, -6.517680557, -6.737316119, -5.798497397, -6.355454241, -6.501619006, -7.157405833, -6.240989713, -6.463649226, -7.678491305, -7.89175216, -6.717884278, -5.533051231, -6.53900071, -6.519724404, -5.0219764, -6.229896772, -6.333620659, -6.603008815, -6.585156641, -5.892892854, -7.588627281, -6.373914009, -6.927937782, -7.721581317, -6.05209735, -6.401730873, -6.147159485, -6.332915418, -6.328248963, -6.730375451, -6.35118471, -6.585206869, -7.592437949, -6.127365366, -7.118228036, -6.649232457, -6.405748301, -6.213445986, -6.143683411, -6.623198555, -6.442214501, -6.890887766, -6.231864614, -6.381602091, -6.750409352, -5.932834808, -6.335265653, -6.091007814, -6.072001735, -6.400955015, -6.462378824, -6.171819303, -5.999775811, -6.523705383, -6.571429439, -8.000703173, -6.025953727, -6.825614201, -6.780148162, -6.522137545, -6.030610387, -6.506502011, -6.241400017, -6.502200245, -6.025297967, -6.468052201, -6.598837089, -6.557075875, -6.579537304, -6.25960811, -5.983575961, -7.663945626, -6.482600908, -5.979208009, -6.467695115, -6.519923, -6.414865385, -6.378108969, -6.530271606, -6.509421747, -6.784181534, -6.410322163, -6.33144667, -6.858467901, -5.851621728, -6.577902423, -6.741362253, -5.84622616, -5.908081804, -6.639032827, -6.359834571, -6.583589347, -7.600098439, -7.078505946, -6.80644927, -6.566679957, -6.743259904, -6.32718402, -6.019750175, -6.798785926, -6.594957558, -6.402455082, -6.547477242, -6.35453606, -5.77304828, -6.775353127, -6.530945116, -6.327817594, -7.474269235, -6.124548399, -6.451069736, -7.200963555, -6.442020328, -5.899239423, -6.507231773, -6.224528069, -6.073931562, -6.285235241, -6.463551161, -6.263641966, -6.486970773, -6.218502985, -6.14110672, -6.414998168, -5.703026755, -7.344458125, -6.235982373, -6.465627142, -6.716193969, -6.432275999, -6.286978164, -6.443199289, -6.371122131, -6.046628883, -6.406439754, -7.506560222, -7.425522926, -6.170540137, -5.874093181, -6.328555001, -6.208362772, -6.475583486, -6.399650485, -6.734648859, -6.54891375, -6.068982606, -6.430064353, -6.658853051, -5.900474807, -6.123959342, -6.523311599, -6.272056127, -6.994809037, -6.759346891, -6.591034586, -6.371838327, -5.949457707, -7.27228613, -6.694403632, -7.49225922, -6.81973954, -6.768855149, -6.765066176, -6.29877052, -6.844106697, -6.723903812, -7.535466177, -8.336400888, -6.26970957, -6.235792427, -6.706510325, -6.203886695, -6.791305636, -6.687266166, -6.661364239, -5.928442878, -6.185843748, -7.875843259, -6.564560232, -6.501471496, -6.72660338, -6.375144039, -6.918341616, -6.190739929, -5.745584859, -5.860488112, -6.716793888, -6.480566981, -6.216599246, -6.867190996, -6.08103327, -6.116082622, -6.580597876, -6.828877504, -6.576596513, -6.782663283, -6.664467885, -6.776806404, -5.884479124, -6.700266851, -6.477934175, -6.280107716, -6.500061065, -6.366185697, -6.367241887, -6.062148019, -6.478492505, -6.5804576, -6.556699432, -6.30225952, -6.30450686, -5.375334667, -5.791707367, -6.387165217, -6.022238724, -6.700680699, -5.738046861, -6.528714708, -6.138336508, -6.767364772, -5.683544046, -6.169723449, -6.286521853, -6.287739387, -6.966407103, -5.585411058, -6.55440975, -6.634997076, -6.084768548, -5.574256713, -6.345435445, -7.769859371, -6.206707994, -6.330340911, -6.411235596, -6.781149834, -7.115221808, -6.608272663, -8.299292558, -6.421635567, -7.341379947, -7.589134161, -6.863388729, -6.24679995, -6.371405584, -5.928619424, -5.57809344, -6.131749651, -7.68275043, -8.00893626, -6.346516356, -5.568124499, -6.474783331, -6.385480325, -6.252653346, -5.530892839, -5.496498884, -6.813881353, -8.164777303, -6.373669241, -6.369747305]}], "model_type": "nb", "positive_class_label": "beauty_and_fitness", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"make": [312, 1.460187774], "eat": [160, 2.836341203], "work": [585, 1.693862232], "ve": [559, 1.84491804], "know": [275, 1.766540612], "big": [71, 2.161294064], "eating": [161, 2.930306996], "high": [245, 1.951943835], "fast": [184, 2.734124638], "carbs": [93, 4.218161284], "workouts": [588, 3.543032609], "specific": [480, 2.630384868], "low": [308, 2.559933207], "nutrition": [359, 3.391482711], "write": [592, 3.149762774], "include": [261, 2.619495468], "post": [391, 2.459687792], "workout": [587, 3.056127169], "supplements": [506, 3.966846856], "protein": [410, 3.399325888], "source": [478, 2.925392981], "lot": [306, 2.07809512], "questions": [416, 2.891654841], "recovery": [431, 3.628392458], "growth": [229, 3.039506288], "fat": [186, 2.970513416], "power": [395, 2.637710908], "article": [54, 2.675168471], "help": [242, 1.761935845], "understand": [546, 2.805433666], "place": [384, 2.145438692], "main": [310, 2.882220809], "reason": [428, 2.608723371], "muscle": [347, 2.872874947], "form": [205, 2.523201198], "long": [297, 1.788314411], "needed": [351, 2.675168471], "order": [367, 2.543069401], "energy": [169, 2.805433666], "research": [437, 2.435370485], "best": [69, 1.797793155], "way": [568, 1.541552609], "possible": [390, 2.330009969], "weight": [575, 2.533085957], "don": [153, 1.558901247], "say": [452, 2.063496321], "especially": [170, 2.420467079], "goal": [220, 2.801095264], "need": [350, 1.668437134], "training": [536, 2.675168471], "shows": [467, 2.863615621], "20": [12, 2.2322458], "15": [7, 2.3970742], "30": [24, 2.303341722], "minutes": [338, 2.523201198], "levels": [286, 2.868234567], "40": [25, 2.905974895], "percent": [377, 2.930306996], "use": [550, 1.606254943], "ll": [295, 1.861696957], "good": [224, 1.706821377], "doing": [152, 2.205642055], "muscles": [348, 3.213075053], "fact": [180, 2.377044918], "hours": [251, 2.494119989], "reduce": [432, 3.07302898], "rate": [421, 2.991239547], "50": [26, 2.738181439], "gym": [231, 3.338238196], "later": [278, 2.513413192], "24": [22, 3.017766301], "sure": [508, 2.116643791], "quickly": [417, 2.652525994], "important": [259, 1.987762933], "water": [567, 2.634041179], "given": [219, 2.706178708], "higher": [246, 2.762874051], "longer": [298, 2.533085957], "period": [380, 3.028577217], "changes": [98, 2.935245277], "lead": [279, 2.818562957], "term": [518, 2.822977975], "feel": [188, 2.001289709], "feeling": [189, 2.868234567], "diet": [146, 3.00176596], "added": [36, 2.940208067], "helps": [244, 2.623112109], "rest": [438, 2.652525994], "day": [138, 1.774262658], "role": [445, 3.07302898], "recently": [430, 2.771242301], "far": [182, 2.377044918], "does": [150, 1.98202129], "allows": [41, 2.980822786], "provide": [411, 2.742254764], "benefits": [68, 2.734124638], "taking": [512, 2.465860651], "want": [564, 1.669832808], "mass": [322, 3.353163846], "including": [262, 2.191423806], "called": [88, 2.303341722], "means": [328, 2.244576413], "body": [77, 2.028904876], "doesn": [151, 2.125415777], "gets": [217, 2.831866923], "complete": [118, 2.910794181], "size": [473, 2.882220809], "sugar": [505, 3.700218192], "makes": [313, 2.075996484], "actually": [34, 2.138719742], "really": [427, 1.935414533], "instead": [269, 2.303341722], "travel": [537, 3.375978524], "blood": [76, 3.050556124], "won": [583, 2.438378006], "great": [227, 2.049107584], "uses": [554, 2.836341203], "table": [510, 3.407231068], "100": [2, 2.675168471], "brand": [81, 2.980822786], "different": [148, 1.899632541], "cut": [134, 3.012404358], "risk": [444, 3.050556124], "lose": [303, 2.854441245], "thing": [522, 2.191423806], "right": [443, 1.818643951], "maybe": [325, 2.915636806], "lower": [309, 2.775452834], "going": [223, 1.953797404], "stop": [492, 2.822977975], "home": [249, 2.332716331], "points": [388, 3.101849418], "strategy": [497, 3.415199237], "works": [589, 2.487770761], "real": [426, 2.308618779], "world": [590, 1.991609091], "increase": [263, 2.641394154], "meal": [326, 3.580073881], "small": [476, 2.244576413], "loss": [304, 3.07302898], "focus": [199, 2.686684913], "news": [354, 2.891654841], "powder": [394, 3.874065122], "effect": [163, 2.845350273], "following": [201, 2.516665227], "whey": [577, 4.747005413], "consider": [120, 2.758716041], "10": [1, 1.892627258], "free": [206, 2.215234454], "goals": [221, 3.174608772], "follow": [200, 2.580552495], "exercise": [174, 2.619495468], "men": [332, 2.792474521], "sports": [483, 3.239566669], "medicine": [331, 3.648393125], "american": [43, 2.792474521], "2013": [15, 3.431328619], "2014": [16, 3.375978524], "started": [485, 2.494119989], "job": [272, 2.758716041], "model": [339, 3.028577217], "local": [296, 2.986017603], "perfect": [378, 2.818562957], "able": [28, 2.244576413], "walk": [563, 3.155916639], "tell": [517, 2.543069401], "offer": [360, 2.925392981], "money": [341, 2.566759172], "experience": [175, 2.426401815], "fashion": [183, 3.11361426], "completely": [119, 2.859017912], "based": [65, 2.154468099], "second": [456, 2.570189707], "building": [84, 2.656264316], "white": [578, 2.792474521], "half": [233, 2.608723371], "things": [523, 1.901391556], "hard": [236, 2.222489625], "starting": [486, 2.722052057], "ability": [27, 2.722052057], "total": [534, 3.007071012], "love": [307, 2.399968558], "hair": [232, 2.920502996], "told": [530, 2.754575249], "natural": [349, 2.663783149], "days": [139, 2.282507635], "types": [545, 2.845350273], "models": [340, 3.48133904], "man": [316, 2.970513416], "young": [599, 2.901178723], "women": [582, 2.566759172], "skin": [474, 2.726060078], "little": [292, 1.928154973], "look": [299, 1.821890707], "13": [5, 2.854441245], "asked": [56, 2.925392981], "kind": [274, 2.405782527], "looking": [301, 2.152203093], "pretty": [398, 2.69833553], "looked": [300, 3.309039042], "yes": [596, 2.891654841], "probably": [400, 2.423430044], "times": [527, 2.152203093], "mean": [327, 2.706178708], "14": [6, 2.891654841], "face": [178, 2.637710908], "did": [144, 2.134265392], "sense": [459, 2.722052057], "thought": [526, 2.594538737], "bit": [73, 2.391310495], "recent": [429, 2.69443689], "country": [125, 3.07302898], "beauty": [66, 2.955245944], "facebook": [179, 3.137567501], "reach": [422, 2.975654816], "left": [283, 2.652525994], "games": [213, 3.84906382], "fit": [197, 2.920502996], "think": [524, 1.948246973], "company": [117, 2.516665227], "felt": [191, 3.061729424], "usually": [556, 2.608723371], "live": [293, 2.556537618], "city": [101, 2.940208067], "idea": [254, 2.411630497], "person": [381, 2.456615593], "short": [466, 2.379881799], "average": [60, 2.8869267], "week": [573, 2.200880141], "talk": [513, 2.872874947], "came": [90, 2.910794181], "book": [78, 2.746344749], "new": [353, 1.497100846], "needs": [352, 2.516665227], "eyes": [177, 3.168339159], "human": [253, 2.87753696], "industry": [265, 2.996488903], "having": [237, 2.217647001], "potential": [393, 2.868234567], "went": [576, 3.00176596], "friends": [208, 2.905974895], "view": [562, 2.965398315], "age": [37, 2.754575249], "17": [9, 3.107714538], "images": [258, 3.543032609], "making": [315, 2.088654881], "years": [595, 1.871901127], "practice": [396, 2.935245277], "point": [387, 2.200880141], "personal": [382, 2.626741877], "night": [355, 2.845350273], "getting": [218, 2.177404885], "woman": [581, 3.239566669], "12": [4, 2.441394599], "bad": [63, 2.660016666], "got": [226, 2.462769459], "list": [291, 2.506940677], "head": [238, 2.645091016], "writing": [593, 3.266779232], "track": [535, 3.02315715], "isn": [270, 2.34911014], "popular": [389, 2.767049423], "difference": [147, 2.8869267], "faster": [185, 3.119548995], "similar": [468, 2.468961429], "users": [553, 3.253080388], "18": [10, 2.910794181], "learn": [280, 2.580552495], "approach": [49, 2.986017603], "check": [99, 2.519927873], "plan": [385, 2.641394154], "author": [58, 2.955245944], "twitter": [543, 3.193656967], "tips": [528, 2.996488903], "page": [372, 3.034026822], "blog": [75, 3.11361426], "coming": [113, 2.863615621], "million": [335, 2.945195608], "according": [30, 2.475191979], "google": [225, 3.399325888], "data": [136, 2.722052057], "social": [477, 2.706178708], "comes": [112, 2.237159815], "month": [342, 2.775452834], "account": [31, 3.309039042], "step": [490, 2.742254764], "outside": [370, 2.920502996], "united": [548, 3.423231409], "states": [488, 2.996488903], "future": [211, 2.758716041], "brands": [82, 3.43949193], "room": [446, 2.970513416], "create": [128, 2.338151127], "tool": [532, 3.368315651], "buy": [87, 2.726060078], "media": [329, 2.831866923], "current": [132, 2.809790971], "large": [277, 2.55315352], "takes": [511, 2.69055339], "features": [187, 2.960309246], "better": [70, 1.853272308], "companies": [116, 3.050556124], "creating": [130, 2.960309246], "story": [495, 2.849885428], "wanted": [565, 2.859017912], "site": [472, 3.078727001], "looks": [302, 2.718060036], "health": [239, 2.377044918], "process": [403, 2.313923831], "close": [107, 2.872874947], "test": [520, 3.193656967], "working": [586, 2.234699789], "created": [129, 2.965398315], "group": [228, 2.619495468], "course": [127, 2.377044918], "true": [539, 2.630384868], "action": [32, 3.131525186], "results": [440, 2.55315352], "content": [121, 2.849885428], "daily": [135, 2.598066077], "clients": [106, 3.732653468], "performance": [379, 3.017766301], "early": [156, 2.630384868], "click": [105, 3.43949193], "change": [97, 2.274805415], "video": [561, 3.045015943], "care": [94, 2.580552495], "success": [504, 3.017766301], "market": [320, 2.901178723], "old": [363, 2.357408943], "particular": [374, 2.910794181], "aren": [52, 2.746344749], "running": [449, 2.634041179], "designed": [142, 2.955245944], "sales": [451, 3.423231409], "away": [62, 2.351868763], "question": [415, 2.69833553], "products": [406, 2.577086287], "took": [531, 2.868234567], "using": [555, 1.95751488], "life": [287, 2.022922805], "remember": [435, 2.758716041], "type": [544, 2.566759172], "morning": [344, 2.965398315], "line": [290, 2.519927873], "oil": [361, 3.266779232], "house": [252, 2.930306996], "read": [423, 2.316586949], "oils": [362, 4.11637859], "add": [35, 2.484611201], "essential": [171, 3.09022138], "makeup": [314, 3.812696176], "apply": [48, 3.232877681], "mind": [336, 2.465860651], "friend": [207, 3.143646547], "wear": [570, 3.294753084], "goes": [222, 2.775452834], "set": [463, 2.118829584], "color": [110, 3.330858089], "let": [284, 2.143194023], "didn": [145, 2.543069401], "used": [551, 1.877042527], "team": [514, 2.742254764], "try": [540, 2.143194023], "fun": [209, 3.028577217], "play": [386, 2.854441245], "services": [462, 3.226233138], "feet": [190, 3.431328619], "fitness": [198, 3.050556124], "run": [448, 2.405782527], "known": [276, 2.462769459], "instagram": [268, 3.48133904], "art": [53, 3.330858089], "000": [0, 2.523201198], "community": [115, 3.07302898], "16": [8, 2.801095264], "school": [453, 2.77968117], "product": [404, 2.792474521], "start": [484, 1.935414533], "wasn": [566, 3.143646547], "25": [23, 2.827412572], "lost": [305, 2.970513416], "problems": [402, 2.915636806], "culture": [131, 3.180917942], "gender": [215, 4.11637859], "certain": [96, 2.526485273], "family": [181, 2.754575249], "various": [558, 2.955245944], "matter": [324, 2.637710908], "identity": [256, 3.953053534], "trying": [541, 2.435370485], "effort": [166, 3.050556124], "online": [364, 2.671358942], "medical": [330, 3.330858089], "gay": [214, 4.947676109], "straight": [496, 3.174608772], "difficult": [149, 2.801095264], "2012": [14, 3.464389482], "game": [212, 3.246300701], "year": [594, 2.001289709], "tools": [533, 3.143646547], "business": [86, 2.615891861], "seen": [457, 2.726060078], "couple": [126, 2.975654816], "ago": [38, 2.746344749], "open": [365, 2.594538737], "months": [343, 2.634041179], "strong": [500, 2.788191859], "race": [419, 3.743703304], "history": [247, 3.039506288], "york": [598, 2.95020815], "major": [311, 2.872874947], "version": [560, 2.95020815], "thanks": [521, 3.119548995], "production": [405, 3.368315651], "self": [458, 2.634041179], "available": [59, 2.605158305], "stories": [494, 3.345673175], "style": [503, 2.930306996], "black": [74, 3.067363242], "share": [465, 2.667563872], "example": [173, 2.220065382], "simple": [469, 2.360190586], "design": [141, 2.980822786], "hand": [234, 2.623112109], "attention": [57, 2.87753696], "mr": [345, 4.00940647], "range": [420, 2.872874947], "science": [454, 2.920502996], "technology": [515, 3.323532049], "dry": [155, 3.489922784], "easy": [159, 2.237159815], "clean": [103, 3.143646547], "problem": [401, 2.652525994], "note": [357, 2.863615621], "finally": [194, 3.00176596], "mental": [333, 3.391482711], "stress": [499, 3.119548995], "physical": [383, 2.827412572], "food": [202, 2.516665227], "figure": [193, 3.137567501], "issues": [271, 3.012404358], "worth": [591, 2.758716041], "foods": [203, 3.259906353], "avoid": [61, 2.863615621], "program": [407, 3.084457675], "thinking": [525, 2.975654816], "extra": [176, 2.868234567], "come": [111, 2.121020165], "leave": [282, 2.8869267], "deal": [140, 3.174608772], "state": [487, 2.750451531], "calories": [89, 3.628392458], "strength": [498, 3.143646547], "yoga": [597, 3.84906382], "minute": [337, 3.125519162], "balance": [64, 3.213075053], "living": [294, 2.920502996], "likely": [289, 2.456615593], "app": [47, 3.323532049], "healthy": [240, 2.671358942], "easier": [157, 2.882220809], "choose": [100, 2.758716041], "drink": [154, 3.338238196], "sleep": [475, 3.246300701], "simply": [470, 2.472071852], "answer": [46, 3.017766301], "improve": [260, 2.758716041], "quality": [414, 2.868234567], "light": [288, 2.827412572], "hands": [235, 3.125519162], "ready": [425, 2.955245944], "built": [85, 2.960309246], "hour": [250, 2.868234567], "control": [123, 2.814167346], "pay": [376, 2.872874947], "learning": [281, 3.498580846], "turn": [542, 2.637710908], "single": [471, 2.626741877], "press": [397, 3.259906353], "past": [375, 2.615891861], "inside": [267, 2.940208067], "service": [461, 3.09022138], "space": [479, 2.796775603], "level": [285, 2.432371982], "end": [168, 2.049107584], "quite": [418, 2.783927461], "build": [83, 2.526485273], "cost": [124, 2.980822786], "shape": [464, 3.31625929], "spend": [482, 2.827412572], "believe": [67, 2.750451531], "air": [39, 3.246300701], "report": [436, 3.200087858], "teeth": [516, 3.966846856], "clear": [104, 2.818562957], "runs": [450, 3.489922784], "fingers": [196, 4.331489969], "series": [460, 2.980822786], "hold": [248, 3.056127169], "field": [192, 3.246300701], "steps": [491, 3.16210861], "case": [95, 2.546419488], "original": [369, 3.174608772], "weeks": [574, 3.012404358], "ask": [55, 2.742254764], "ways": [569, 2.456615593], "search": [455, 3.155916639], "routine": [447, 3.149762774], "image": [257, 3.067363242], "car": [92, 3.338238196], "store": [493, 2.980822786], "2016": [17, 3.415199237], "speed": [481, 3.143646547], "easily": [158, 2.801095264], "marketing": [321, 3.391482711], "result": [439, 2.69443689], "public": [412, 2.930306996], "individual": [264, 3.067363242], "non": [356, 2.8869267], "today": [529, 2.371395185], "area": [50, 2.818562957], "published": [413, 2.935245277], "website": [572, 3.143646547], "customers": [133, 3.423231409], "support": [507, 2.634041179], "general": [216, 2.675168471], "activity": [33, 3.200087858], "common": [114, 2.566759172], "allow": [40, 2.854441245], "class": [102, 3.206560372], "march": [319, 3.689636083], "financial": [195, 3.561381748], "treatment": [538, 3.447722429], "stay": [489, 2.809790971], "value": [557, 2.970513416], "ideas": [255, 3.213075053], "management": [317, 3.323532049], "heart": [241, 2.955245944], "11": [3, 2.69833553], "systems": [509, 3.464389482], "regular": [433, 2.868234567], "number": [358, 2.279933631], "studies": [501, 3.034026822], "effective": [164, 2.910794181], "study": [502, 2.686684913], "effects": [165, 3.084457675], "brain": [80, 3.360711052], "pain": [373, 3.287685917], "function": [210, 3.345673175], "key": [273, 2.608723371], "development": [143, 3.084457675], "review": [442, 3.259906353], "massage": [323, 3.912779634], "guide": [230, 3.137567501], "marathon": [318, 4.351692677], "related": [434, 2.734124638], "unique": [547, 3.07302898], "price": [399, 3.213075053], "19": [11, 3.180917942], "posts": [392, 3.743703304], "animals": [45, 4.038820355], "reading": [424, 3.039506288], "edit": [162, 3.84906382], "21": [21, 3.253080388], "books": [79, 3.323532049], "retrieved": [441, 4.605926815], "2009": [13, 3.836793727], "university": [549, 2.831866923], "en": [167, 4.505843356], "web": [571, 3.345673175], "2019": [20, 3.489922784], "2017": [18, 3.280668344], "amazon": [42, 3.789165678], "access": [29, 2.920502996], "pace": [371, 4.00940647], "areas": [51, 3.125519162], "options": [366, 2.945195608], "continue": [122, 2.915636806], "bike": [72, 4.149168412], "helpful": [243, 3.431328619], "terms": [519, 2.975654816], "multiple": [346, 2.872874947], "2018": [19, 3.431328619], "project": [408, 3.259906353], "method": [334, 3.345673175], "user": [552, 3.599122076], "animal": [44, 4.024005269], "information": [266, 2.587521164], "wiki": [579, 5.198990537], "wikipedia": [580, 5.02463715], "camera": [91, 4.183069964], "code": [108, 3.423231409], "collagen": [109, 5.065459144], "database": [137, 4.254528928], "org": [368, 3.980833098], "property": [409, 4.069125705], "estate": [172, 4.393365373], "ford": [204, 4.947676109], "wordpress": [584, 4.747005413]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_blogging_resources_and_services.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_blogging_resources_and_services.json deleted file mode 100644 index 7dd6324..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_blogging_resources_and_services.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.690285948, "feature_log_probs": [-6.46130057, -6.417719014, -6.549021983, -6.691335453, -6.686040053, -6.786385914, -6.781231295, -6.72131979, -6.844677943, -6.83478385, -6.838306579, -6.839811369, -6.696986996, -6.851543832, -6.819088464, -6.774011934, -6.745805798, -6.751027699, -6.755322713, -6.762862292, -6.703132057, -6.730646613, -6.640924174, -6.501854477, -6.378768081, -6.814532291, -6.42416398, -6.536935698, -6.626974716, -6.563463905, -5.800266765, -6.463961816, -6.404404053, -6.660410829, -6.583147153, -6.218975883, -6.488785192, -6.671970015, -6.535334722, -6.370115202, -6.952414796, -6.983598226, -6.555612179, -6.515531061, -6.675748637, -6.495594914, -6.686333849, -6.627230623, -6.223559008, -6.328213592, -6.537486999, -6.648813318, -6.238424393, -6.383636211, -6.549165411, -6.362887925, -6.608058371, -6.549344266, -6.657889929, -6.557457229, -6.620623414, -6.626523091, -6.057994496, -6.335456936, -6.515659825, -6.985575909, -6.528359739, -6.529454812, -4.691106773, -5.852665976, -5.790476838, -5.156352554, -5.883360931, -6.806752448, -6.608930714, -6.524258588, -6.603969417, -6.018101381, -6.236171515, -6.193047456, -6.410863187, -6.337543921, -6.083181588, -6.382783751, -6.719647848, -6.664811678, -6.941001682, -6.68572277, -6.613731612, -6.491899543, -6.349877325, -6.68460796, -6.368377946, -6.440114186, -6.502574577, -6.212792762, -6.478596305, -6.966946143, -6.661727826, -6.311051745, -6.948184083, -6.495150942, -6.581755751, -6.704206689, -6.091931228, -6.676528214, -6.507220548, -5.919232767, -6.544477582, -6.459448032, -6.3370517, -6.65690733, -6.490923907, -6.107962798, -6.632888227, -6.124804082, -6.694967102, -6.450930389, -6.619507326, -6.680821334, -6.650354612, -6.582382474, -5.333038089, -6.537186199, -6.506129384, -6.731058604, -6.426190796, -5.817189385, -6.427059416, -6.314786886, -6.479800878, -6.207307041, -6.667040501, -5.80643697, -6.599107744, -6.462293023, -6.356644004, -6.426801206, -6.517670013, -6.356515459, -6.526443675, -6.334381432, -6.012641753, -5.88324118, -6.590235519, -6.566845254, -6.403813627, -6.321005049, -6.319146212, -6.566191351, -6.617423005, -6.27774297, -6.620246436, -6.486790899, -6.261543868, -6.427197725, -6.07799724, -6.501164558, -6.415525532, -6.443131568, -6.276918814, -5.877902991, -5.987272313, -6.528994468, -6.725276284, -6.507192617, -6.379889056, -6.066708171, -6.337758309, -6.2394512, -6.559208419, -6.130560884, -6.934665744, -6.395526784, -6.530135799, -6.66388658, -6.757203851, -6.690521789, -6.288085706, -6.401780186, -6.627382062, -6.179171134, -6.630724628, -6.853100562, -6.634020645, -6.624561452, -6.609641032, -6.347928051, -6.49312167, -5.949795556, -6.461334651, -6.498071422, -6.611968955, -6.054038677, -6.32895848, -6.76107356, -6.592608652, -6.719793024, -6.460479705, -6.326121985, -6.3860087, -6.795281159, -6.367693776, -6.360661942, -6.190888577, -5.829914423, -6.593141143, -6.602544878, -6.638051083, -6.324806989, -6.401034853, -6.44727779, -6.544782826, -6.859312544, -6.947346578, -6.693376238, -6.465264934, -6.731742392, -6.626166218, -6.654512472, -6.273928374, -6.225776231, -6.008739516, -6.519388273, -6.024953311, -6.629274831, -6.655622665, -6.463923189, -6.754728662, -6.711347373, -6.543941522, -6.518950559, -6.730199025, -6.414712196, -6.871678892, -6.011910877, -6.568646673, -6.616919516, -6.805060731, -6.673088443, -6.852325632, -6.640712487, -6.498509896, -6.55286458, -6.128249473, -6.624657372, -6.905670402, -6.611988147, -6.88126256, -6.534701055, -6.527236125, -6.327250809, -6.06606566, -6.097839758, -6.355097399, -6.560460728, -6.391998367, -6.619689923, -6.524367504, -6.520154537, -6.497661564, -6.713077378, -6.704641005, -6.731641903, -6.684848786, -6.64646395, -6.291936979, -6.276429504, -6.551818586, -6.577138412, -6.517488587, -6.4713162, -6.688467446, -6.687304261, -6.67783865, -6.622318461, -6.601619944, -6.650925169, -6.056986009, -6.610817542, -6.718136764, -6.898035607, -6.733941451, -6.636267462, -6.625643997, -6.557579306, -6.295483682, -6.449072071, -6.317184822, -6.611487899, -6.610810382, -6.685187474, -6.258759254, -6.643800336, -6.59758541, -6.849051294, -6.588132602, -6.616072228, -6.186892571, -6.23803134, -6.056254814, -6.492908448, -6.463400918, -5.841715451, -6.588636108, -6.573451366, -6.466960539, -6.709699974, -6.180973893, -6.382120678, -6.621986858, -6.196865947, -6.459058174, -6.860925122, -6.58580273, -6.513998321, -6.711392643, -5.708869974, -6.471819616, -6.358302982, -6.515038489, -6.520382068, -6.642463364, -6.289124821, -6.640745973, -6.627040558, -6.490079244, -5.964187098, -6.979142835, -6.374598355, -6.54183887, -6.223746896, -6.660334186, -6.601738565, -6.638061038, -6.380755985, -6.607038658, -6.176695909, -6.456805521, -6.581145411, -6.640104935, -6.487337463, -6.338597638, -6.87989879, -6.610568719, -5.850947271, -6.718509774, -6.535719048, -6.257436538, -5.749229569, -6.407638281, -6.446244715, -6.695825112, -6.573557837, -6.38433168, -6.436668743, -6.447462637, -6.622680343, -6.612051456, -6.253060925, -6.438246402, -6.300841773, -5.977461756, -6.634091077, -6.438350398, -6.647711855, -5.538087004, -5.970619006, -6.679261023, -6.720030565, -6.702448393, -6.66214383, -6.501264362, -6.635067437, -6.693438899, -6.43543788, -5.744284583, -6.512648416, -6.559633845, -6.082350308, -6.503094325, -6.842020902, -6.934392617, -5.283169135, -5.661502165, -6.479897454, -6.722565767, -6.238078829, -6.481188357, -6.509936966, -5.33332788, -5.449420035, -6.734529137, -6.479181158, -6.352271838, -6.556877653, -6.665542206, -6.533331385, -6.548722637, -6.63203575, -6.753573444, -6.449236086, -6.412438261, -6.430209266, -6.501435301, -6.563775492, -6.548053402, -6.504162327, -6.65715836, -6.765326983, -6.413595106, -6.596143373, -6.630718282, -6.47957955, -6.536370239, -6.464230959, -6.540909908, -6.518330069, -6.593684008, -6.795208706, -6.767130078, -6.134850824, -5.901619565, -6.424295643, -6.381432248, -6.588449267, -6.207808216, -6.616214639, -6.627580589, -6.539206102, -6.559281721, -6.579829203, -6.687747691, -6.742654773, -6.716253027, -6.501306965, -6.086925347, -6.795874838, -6.57477033, -6.975702001, -6.653601481, -6.499625231, -6.158050178, -6.554197334, -6.587459174, -6.489458332, -6.460796846, -6.473070021, -6.073683466, -6.664515916, -6.416781739, -6.460284485, -6.743414748, -6.463730179, -6.517160457, -6.593919013, -6.712213361, -6.188318383, -6.585249246, -6.591929871, -6.412470748, -6.396738417, -6.217126861, -6.567857923, -6.20709203, -6.141035387, -6.422444061, -6.600026954, -6.328194239, -6.643895059, -6.176174731, -6.467901425, -6.507027041, -5.253692328, -5.977102895, -6.604727333, -6.61261857, -6.437030056, -6.554285825, -5.743412771, -6.507758162, -6.598732669, -6.438876174, -6.678127693, -6.748953974, -6.464772716, -6.557242758, -6.629985298, -6.960741354, -6.728372976, -6.033419366, -6.270927954, -6.484630823, -6.901719916, -6.959905464, -6.323340539, -6.7434433, -6.667318008, -6.656973065, -6.584376287, -6.863485056, -6.453129614, -6.57639505, -6.527592787, -6.639804568, -6.075255937, -6.199430945, -6.789449117, -6.40979868, -6.569135862, -6.72603173, -6.560388068, -6.622928928, -6.224091962, -6.35494951, -6.721200828, -6.67965097, -6.63737627, -6.22697806, -4.916842517, -5.553655777, -6.389483783, -6.181463525, -6.255036533, -6.655344682, -6.666207805, -6.551149792, -6.226551521, -6.394218458, -6.4183903, -6.313630942, -6.233436647, -6.314617527, -6.422969956, -6.858239536, -6.215927655, -6.820202144, -6.705386025, -6.64531558, -6.401588805, -6.635421171, -6.699498179, -5.774308192, -6.399681784, -6.532816777, -6.644818284, -6.47002597, -6.407423756, -6.473398312, -6.289888389, -5.601734535, -6.299774869, -6.374094153, -6.034537068, -5.876494443, -6.658293347, -5.921690398, -6.665972919, -6.544560821, -6.618679509, -5.869666375, -6.25474971, -6.337974232, -6.574570538, -6.511751021, -6.300223605, -6.463449845, -5.712519068, -6.660013182, -6.938614599, -6.033917741, -6.447740355, -6.07795626, -5.673080462, -6.242421783, -6.518306737, -6.81231314, -6.054008221, -6.313376387, -6.597257065, -6.714176762, -6.927449431, -6.974731206, -6.579316922, -6.347191758, -6.617090107, -4.330176471, -6.535585045, -6.107529758, -6.507717007, -6.527919415, -6.418686922, -6.617992196, -5.923097585, -5.931846144, -5.915733639, -6.557604857, -6.466574633, -6.399666459, -6.625024233]}, {"log_prior": -0.696016623, "feature_log_probs": [-5.970093914, -5.93005298, -6.342367504, -6.339381198, -6.323241666, -6.465430876, -6.404942117, -6.321538236, -6.402450668, -6.496688539, -6.404842044, -6.552195621, -6.261701756, -6.3562335, -6.472467726, -6.373005165, -6.287274874, -6.346441137, -6.565330573, -6.486963861, -6.282086361, -6.292463698, -6.483114063, -6.269831435, -6.444554719, -6.0368513, -6.543795072, -6.423283619, -6.550058353, -6.207715767, -6.338484622, -6.486586524, -6.676089622, -6.623046746, -6.560543852, -6.887601045, -6.663611916, -6.273640868, -6.488643832, -6.574506024, -6.039851586, -6.137876098, -6.473917942, -6.29253404, -6.505060171, -6.402010323, -6.48689165, -6.467258799, -6.436592777, -6.658603313, -6.461238083, -6.573775509, -6.698318766, -6.457020063, -6.723734903, -6.316358305, -6.24883286, -6.73614144, -6.565969567, -6.098215671, -6.591884741, -6.577432077, -5.966557253, -6.066230493, -6.13808678, -5.928112738, -6.421583417, -6.606330479, -6.594489789, -6.916632748, -6.916957341, -6.892923485, -6.836654214, -5.92855617, -6.017749462, -6.564932029, -6.560660858, -6.941547441, -6.445945686, -6.896170273, -6.392139383, -6.509343346, -6.163568607, -6.678986012, -6.261654259, -6.188122389, -6.008036966, -6.415066089, -6.172371434, -6.763455566, -6.79706203, -6.440460848, -6.232198802, -6.482482164, -6.609639029, -6.292514189, -6.479632552, -6.550271016, -6.550471223, -6.550004548, -6.064571416, -6.413518893, -6.543869127, -6.361256434, -6.558310103, -6.547227436, -6.715803704, -6.427197959, -6.560588309, -6.213658131, -6.324918562, -6.383661399, -6.651695639, -6.680310045, -6.427344163, -6.451476934, -6.247738388, -5.861440368, -6.578040252, -6.488114908, -6.451952946, -6.58163878, -6.54531219, -6.336703362, -6.634228865, -6.326733511, -6.291785462, -6.351854173, -6.528613943, -6.674908074, -6.693988407, -6.924473391, -6.446469224, -6.787966772, -6.55043059, -6.87370363, -6.886321151, -5.76704594, -6.310515297, -5.808129927, -6.171328715, -6.602228714, -6.912037092, -6.286403677, -6.442704319, -6.606632075, -6.780714482, -6.772309877, -6.501751768, -6.015291223, -6.196646532, -6.070931236, -6.570623812, -6.67914188, -6.771192898, -6.929133719, -6.941547441, -6.131846646, -6.27365063, -6.336018392, -6.633412628, -5.749023517, -6.692552238, -6.628359163, -6.275204614, -6.599012817, -6.507000434, -6.355391578, -6.385231347, -6.707658545, -6.713507499, -6.587252143, -6.707347098, -6.190722486, -6.460684464, -6.431470767, -6.333810559, -6.544346578, -6.157598467, -6.273985758, -6.540461202, -6.373513892, -6.347717702, -6.154990047, -6.330786836, -6.555799689, -6.429185191, -6.564720852, -6.708113731, -6.449902847, -6.67677929, -6.109275712, -6.506658503, -6.515588123, -6.6748597, -6.449827688, -6.640745898, -6.703192648, -6.492224702, -6.545922159, -6.398747184, -5.957481217, -6.923167673, -6.408517868, -6.819607393, -6.212511119, -6.677528846, -6.327240236, -6.578941309, -6.455810182, -6.899709112, -6.746314566, -6.391331378, -5.888723924, -6.111550921, -6.373826956, -6.272938837, -6.389370075, -6.602793948, -6.382405858, -6.060946357, -5.955915191, -6.163128091, -6.197664096, -6.138940943, -6.117651573, -6.524473636, -6.53546037, -6.364109588, -6.341181912, -6.267047227, -6.259144955, -6.370527656, -6.879817838, -5.982646371, -6.049321021, -6.477635215, -5.954984704, -6.37677665, -6.596253339, -6.194289912, -5.840892397, -6.918864595, -6.651533446, -6.876668229, -6.275286983, -6.103264873, -6.614984914, -6.057370544, -6.696143567, -6.403195864, -6.513654509, -6.435340086, -6.516938681, -6.178720966, -6.527679958, -6.416413277, -6.631272156, -6.631464848, -6.117369852, -6.48414083, -6.41878494, -6.537337692, -6.478375087, -6.43323115, -6.710938531, -6.308430953, -6.748426861, -6.265977901, -6.530308537, -6.399384825, -6.342872739, -6.420494661, -6.494989678, -6.49652302, -6.363004433, -6.356816196, -6.26130159, -5.979673666, -6.56440059, -6.258618861, -6.450324352, -6.435523186, -6.268484228, -6.268229602, -6.596384116, -6.844976098, -6.920809442, -6.377789976, -6.479009297, -6.468941581, -6.310321126, -6.254526081, -6.239775509, -5.735048476, -6.191646344, -6.264736876, -6.350886432, -6.555302769, -6.611729013, -6.296693326, -6.129938504, -6.333061889, -5.880741135, -6.692740875, -6.839322127, -5.903809264, -6.363412616, -6.145190134, -6.342404503, -6.548932778, -6.168144481, -6.130479274, -6.217019081, -6.631661429, -6.524521869, -6.344452166, -5.750873245, -6.235607994, -6.170890843, -6.702220476, -6.530319113, -6.129378324, -6.66607886, -6.478669902, -6.459864138, -6.344526409, -6.506424033, -6.344617663, -6.573833982, -6.446476256, -6.699757969, -6.171866369, -6.39135923, -6.306536529, -6.493158795, -6.446291057, -6.109132281, -6.324144091, -6.174491152, -6.734289533, -6.509516951, -6.941547441, -6.296317022, -6.82618031, -5.938971229, -6.453638952, -6.460713961, -6.399283128, -5.542354188, -6.383125285, -6.876628442, -6.392995317, -6.487696534, -6.076198001, -6.414933536, -6.535761839, -6.149515759, -6.518793825, -6.395088863, -6.314790811, -6.562449588, -6.590890663, -6.326915589, -6.690037921, -6.477467024, -6.496305089, -6.664536467, -6.615860895, -6.308926723, -6.311126888, -6.340813073, -6.467747569, -6.251824093, -6.175367769, -6.417116899, -6.736857867, -6.147049412, -6.403681914, -6.655624414, -6.764234925, -6.306324662, -6.239651413, -6.897327998, -6.920559593, -6.246723251, -6.458799231, -6.512814815, -6.773983716, -6.251025399, -6.369027051, -6.753540747, -6.151639812, -6.658459898, -6.839019207, -6.407406183, -6.23295138, -6.680953656, -6.380082345, -6.310213655, -6.356452186, -6.232869861, -6.344415024, -6.318092446, -6.553507647, -6.641932826, -6.219202731, -6.486979725, -6.589972156, -6.160788531, -6.883258521, -6.342322718, -6.661445937, -6.362582798, -6.412553005, -6.534303074, -6.632775771, -6.578377498, -6.49366012, -6.328084709, -6.284849568, -6.228881068, -6.756285236, -6.481485873, -6.542845779, -6.033797914, -6.017434455, -6.359752308, -6.407151837, -6.675045799, -6.485604371, -6.512526557, -6.519011349, -6.53187561, -6.144663276, -6.67048216, -6.873593371, -6.404573757, -6.374833153, -6.404470599, -6.484143182, -6.465460851, -6.082070697, -6.202195998, -6.350576909, -6.560579222, -6.089144812, -6.618717362, -6.4227344, -6.306096134, -6.691524945, -6.404550979, -6.383592653, -6.608598452, -6.326732971, -6.627984117, -6.33014751, -6.839829306, -6.30771481, -6.239218345, -6.318921333, -6.449015496, -6.119897427, -6.591243506, -6.784591146, -6.430827159, -6.71176846, -6.320873024, -6.910291338, -6.369934727, -6.406781987, -6.453459022, -6.258454787, -6.541459001, -6.594236645, -6.354475942, -6.499880474, -6.941547441, -6.135651033, -6.179979605, -6.450240307, -6.544494431, -6.37958459, -6.252833079, -6.41404247, -6.511392239, -6.430636153, -6.521374757, -6.606946032, -6.506511534, -6.238515407, -6.412039156, -6.561275053, -6.135149739, -6.311557102, -6.377966959, -6.387004069, -6.351949522, -6.132394758, -6.589741059, -6.156709999, -6.518055654, -6.514561485, -6.634671216, -6.65313552, -6.312894631, -6.257772038, -6.301199406, -6.823574967, -6.448394256, -6.397969597, -6.174822167, -6.425279843, -6.827227825, -6.919313428, -6.426332796, -6.520001759, -6.397803417, -6.619740368, -6.867230631, -6.878397112, -6.321359843, -6.02191875, -6.034902259, -6.462861472, -6.339389916, -6.154410615, -6.635499482, -6.680708436, -6.227448187, -6.614660839, -6.618894672, -6.742291012, -6.80270172, -6.476301534, -6.760531041, -6.136707183, -6.112742973, -6.308788067, -6.24382138, -6.361229649, -6.357830785, -6.508707729, -6.252916462, -6.467438574, -6.421918722, -6.593502863, -6.514052462, -6.695735489, -6.764079173, -5.767859435, -5.971573547, -6.647222052, -6.411715385, -6.347886309, -6.516249623, -6.11078369, -6.35462783, -6.241842586, -6.523473996, -5.950059898, -6.41434111, -6.216381417, -6.328240062, -6.578305744, -6.741707451, -6.677522904, -5.921900918, -6.379193862, -6.059061114, -5.841850593, -6.415377297, -6.502215972, -6.484811246, -6.734767552, -6.096918029, -6.24326505, -6.914730241, -6.923095584, -6.820267508, -6.768119497, -6.746009643, -6.061615268, -6.237817214, -6.941547441, -6.578202201, -6.795075, -6.517744794, -5.807665221, -6.205927406, -6.410692937, -5.776399803, -6.401406673, -6.928354764, -6.525168473, -6.42898911, -6.569264046, -5.648240418, -5.713172753, -6.446530236]}], "model_type": "nb", "positive_class_label": "blogging resources and services", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"article": [48, 2.260668148], "wordpress": [586, 1.901723056], "published": [411, 2.853010629], "magazine": [314, 3.359280437], "huge": [247, 2.786761244], "community": [115, 2.505510062], "built": [81, 2.473761363], "new": [349, 1.402605921], "developers": [147, 2.880790194], "project": [406, 2.899748107], "want": [567, 1.520656658], "help": [235, 1.734804647], "platform": [379, 2.625311262], "hard": [230, 2.401440702], "know": [278, 1.739292313], "skills": [476, 3.251649772], "getting": [216, 2.245630271], "started": [491, 2.248120932], "development": [148, 2.736750823], "easy": [167, 1.935807072], "directly": [152, 2.724629463], "core": [124, 3.08302706], "ways": [571, 2.325880297], "look": [308, 1.751358825], "different": [151, 1.786883796], "areas": [46, 3.021726534], "start": [490, 1.926724358], "ll": [303, 1.775937635], "let": [292, 1.980590675], "means": [326, 2.22105901], "readers": [422, 2.728653613], "blog": [68, 1.935807072], "ve": [560, 1.706841088], "using": [556, 1.649037825], "say": [446, 2.199449526], "think": [523, 2.005712769], "future": [212, 2.628954253], "web": [572, 2.315156333], "recent": [428, 2.728653613], "include": [256, 2.312493216], "including": [259, 2.157582946], "editor": [169, 2.91907238], "fact": [182, 2.495879169], "work": [588, 1.682467122], "create": [127, 1.833553568], "open": [360, 2.307188164], "source": [482, 2.669928327], "developer": [146, 3.106283922], "code": [107, 2.28624499], "support": [505, 2.206600927], "section": [450, 2.720621441], "going": [220, 1.954223799], "actually": [29, 2.331285715], "takes": [509, 2.541638786], "main": [315, 2.558502592], "approach": [44, 2.97939217], "turn": [541, 2.673737855], "improve": [255, 2.778250554], "knowledge": [279, 3.032596206], "probably": [398, 2.433939869], "page": [366, 1.954223799], "run": [443, 2.395643584], "wiki": [580, 4.528510293], "style": [501, 2.65858605], "user": [553, 2.28107702], "mind": [333, 2.511982576], "especially": [175, 2.544988873], "update": [547, 2.782496845], "related": [430, 2.651095379], "pages": [367, 2.433939869], "example": [178, 1.980590675], "topics": [533, 3.211644438], "attention": [51, 2.943764993], "specific": [485, 2.353204401], "function": [209, 3.049125508], "reason": [427, 2.558502592], "provides": [408, 2.848454813], "value": [558, 2.685254298], "created": [128, 2.404351912], "read": [421, 2.082986971], "key": [276, 2.618064853], "need": [345, 1.547520301], "changes": [93, 2.589593179], "creating": [129, 2.331285715], "content": [122, 1.880779882], "list": [300, 1.999859094], "group": [225, 2.774022218], "themes": [520, 2.381296136], "plugins": [384, 2.404351912], "experience": [179, 2.213803839], "make": [317, 1.387727857], "site": [473, 1.933983918], "additional": [33, 2.871444331], "hand": [229, 2.720621441], "design": [143, 2.268272747], "given": [217, 2.744914134], "far": [184, 2.486340146], "important": [254, 1.994039485], "sure": [506, 1.96168652], "comes": [110, 2.164440116], "quick": [416, 2.749020916], "large": [283, 2.483180585], "file": [193, 2.749020916], "consider": [120, 2.596635462], "focus": [198, 2.565328557], "language": [282, 3.198657242], "area": [45, 2.666133256], "website": [573, 2.113032149], "worth": [592, 2.666133256], "set": [462, 1.870470512], "higher": [238, 3.065932627], "level": [293, 2.525054658], "thought": [525, 2.704748092], "various": [559, 2.693006274], "mobile": [335, 2.933814662], "way": [570, 1.520656658], "makes": [318, 2.085103374], "place": [377, 2.117398968], "team": [511, 2.669928327], "making": [319, 1.974881811], "home": [241, 2.449068751], "following": [200, 2.331285715], "seen": [452, 2.728653613], "php": [376, 3.000335344], "plugin": [383, 2.358759971], "theme": [519, 2.218634766], "org": [364, 3.112183644], "series": [458, 3.027146602], "quality": [413, 2.589593179], "control": [123, 2.518497257], "process": [401, 2.342185006], "wp": [593, 2.843919658], "line": [297, 2.639963538], "great": [224, 1.822087431], "manage": [320, 2.948777535], "sites": [474, 2.358759971], "tool": [530, 2.876106344], "better": [63, 1.903488281], "test": [517, 2.933814662], "short": [467, 2.467530814], "study": [500, 3.286255302], "possible": [389, 2.211397099], "current": [132, 2.720621441], "wanted": [568, 2.969082801], "simply": [471, 2.312493216], "market": [322, 2.769811686], "websites": [574, 2.677561952], "use": [550, 1.418796237], "available": [55, 2.137289127], "helps": [236, 2.708692871], "post": [390, 1.794776497], "quickly": [417, 2.56190975], "check": [95, 2.076664505], "working": [589, 2.342185006], "certain": [91, 2.666133256], "professional": [404, 2.923962365], "usually": [557, 2.628954253], "big": [64, 2.18062544], "known": [280, 2.639963538], "good": [221, 1.70105236], "point": [385, 2.204211439], "today": [529, 2.28107702], "10": [1, 1.982500895], "aren": [47, 2.704748092], "quite": [418, 2.6436604], "50": [21, 2.799664649], "000": [0, 2.625311262], "active": [28, 3.043585328], "according": [25, 2.681400728], "running": [444, 2.610870577], "small": [478, 2.250617812], "number": [354, 2.076664505], "useful": [552, 2.565328557], "advanced": [36, 2.9742242], "custom": [133, 2.495879169], "favorite": [186, 2.953815329], "things": [522, 1.910580509], "free": [205, 1.905256628], "add": [30, 1.974881811], "field": [192, 3.154486024], "type": [543, 2.323188505], "users": [554, 2.255630354], "select": [453, 2.953815329], "change": [92, 2.102197807], "load": [304, 3.142215931], "creative": [130, 3.11811838], "comments": [113, 2.401440702], "features": [189, 2.248120932], "templates": [514, 3.27226906], "allow": [38, 2.442989705], "search": [448, 2.312493216], "live": [302, 2.538299885], "standard": [489, 2.857587296], "posts": [391, 2.159863449], "types": [544, 2.666133256], "images": [253, 2.618064853], "results": [438, 2.64737098], "settings": [464, 2.825981957], "simple": [470, 2.106517468], "ones": [358, 2.728653613], "special": [484, 2.984586987], "woocommerce": [584, 3.81126556], "database": [138, 3.438061315], "real": [425, 2.375614302], "care": [87, 2.90454428], "responsive": [436, 3.27226906], "menu": [331, 3.071598364], "navigation": [344, 3.258475738], "old": [357, 2.528349554], "child": [96, 3.238136053], "display": [154, 2.843919658], "easily": [166, 2.355978328], "multi": [340, 3.314828674], "categories": [89, 3.154486024], "css": [131, 3.016335686], "adding": [32, 2.555107003], "widget": [577, 3.293322469], "choose": [99, 2.347679525], "solution": [481, 2.866803952], "bar": [58, 3.336807581], "options": [362, 2.260668148], "screen": [447, 2.91907238], "included": [257, 2.91907238], "niche": [351, 3.382269955], "isn": [271, 2.325880297], "long": [306, 2.011600912], "share": [465, 2.2357292], "provide": [407, 2.480030976], "extra": [180, 2.765618807], "information": [266, 2.260668148], "articles": [49, 2.817132342], "google": [222, 2.350438147], "increase": [261, 2.839404977], "click": [104, 2.476891256], "review": [441, 3.005640396], "products": [403, 2.677561952], "traffic": [535, 2.899748107], "install": [267, 2.830436307], "note": [353, 2.618064853], "don": [161, 1.591803311], "high": [237, 2.238195292], "includes": [258, 2.728653613], "common": [114, 2.651095379], "option": [361, 2.433939869], "admin": [35, 3.032596206], "called": [85, 2.364346577], "customize": [135, 2.995058287], "product": [402, 2.673737855], "drop": [163, 2.843919658], "premium": [394, 3.054696553], "edit": [168, 2.808360356], "pro": [397, 3.300439937], "offers": [356, 2.689122774], "super": [504, 3.094587882], "powerful": [393, 2.769811686], "used": [551, 1.78845736], "works": [590, 2.342185006], "case": [88, 2.353204401], "come": [109, 2.13061502], "issues": [273, 2.938777451], "multiple": [341, 2.449068751], "feel": [191, 2.2357292], "brand": [76, 2.953815329], "comment": [112, 2.91420619], "fast": [185, 2.848454813], "fully": [208, 2.894974829], "looks": [310, 2.786761244], "best": [62, 1.708293521], "beautiful": [61, 3.11811838], "sidebar": [468, 3.244870085], "popular": [387, 2.296661751], "details": [145, 2.90454428], "data": [137, 2.508741082], "complete": [118, 2.708692871], "highly": [239, 2.943764993], "button": [83, 2.862185006], "modern": [336, 3.130094571], "customers": [134, 3.154486024], "end": [173, 2.007671634], "form": [203, 2.442989705], "seo": [457, 2.958878631], "box": [75, 2.92887638], "food": [201, 3.094587882], "rate": [420, 3.238136053], "image": [252, 2.579121879], "marketing": [323, 2.953815329], "social": [479, 2.22105901], "media": [327, 2.312493216], "world": [591, 2.01554569], "visual": [566, 3.166908544], "words": [587, 2.82154736], "layout": [286, 3.179487326], "elements": [170, 3.100418803], "try": [539, 2.201827648], "demo": [142, 3.731222853], "30": [20, 2.572201436], "25": [19, 2.923962365], "portfolio": [388, 3.588122009], "host": [243, 3.224802522], "hosting": [244, 3.205129757], "domain": [160, 3.179487326], "understand": [545, 2.757285426], "looking": [309, 2.082986971], "times": [526, 2.258146079], "year": [597, 2.132834776], "completely": [119, 2.786761244], "size": [475, 2.848454813], "logo": [305, 3.764745545], "security": [451, 3.106283922], "issue": [272, 2.984586987], "software": [480, 3.027146602], "business": [82, 2.245630271], "store": [497, 3.038075672], "app": [43, 3.265348617], "course": [126, 2.389879879], "wikipedia": [581, 4.840884978], "functionality": [210, 2.948777535], "designed": [144, 2.736750823], "ability": [22, 2.696904915], "allows": [39, 2.401440702], "directory": [153, 3.532552158], "years": [598, 2.013571356], "ago": [37, 2.91907238], "pretty": [395, 2.60372769], "right": [442, 1.78845736], "having": [231, 2.204211439], "months": [339, 2.757285426], "topic": [532, 2.97939217], "tags": [508, 3.218201838], "able": [23, 2.169037825], "basic": [60, 2.728653613], "family": [183, 3.049125508], "history": [240, 3.11811838], "person": [374, 2.757285426], "members": [330, 3.166908544], "really": [426, 1.96543887], "functions": [211, 3.11811838], "exactly": [177, 2.817132342], "does": [157, 2.035506433], "template": [513, 2.969082801], "instead": [268, 2.216216385], "build": [78, 2.218634766], "download": [162, 2.853010629], "true": [538, 2.744914134], "uses": [555, 2.724629463], "category": [90, 3.173178157], "feed": [190, 3.438061315], "write": [594, 2.413136742], "bit": [66, 2.476891256], "feature": [187, 2.531655342], "needs": [347, 2.419036464], "version": [561, 2.455184978], "points": [386, 3.038075672], "lot": [311, 1.907028108], "tell": [512, 2.689122774], "divi": [156, 4.330059354], "needed": [346, 2.799664649], "video": [562, 2.607292756], "buddypress": [77, 4.083199276], "multisite": [342, 4.271790446], "sense": [456, 2.740824149], "price": [396, 3.021726534], "based": [59, 2.153037484], "major": [316, 2.782496845], "public": [409, 2.853010629], "latest": [285, 2.91420619], "widgets": [578, 3.136136885], "20": [12, 2.528349554], "management": [321, 2.839404977], "little": [301, 2.175974269], "updates": [548, 2.989808931], "reading": [423, 2.572201436], "purpose": [412, 3.038075672], "second": [449, 2.54835022], "featured": [188, 3.106283922], "job": [275, 2.736750823], "tools": [531, 2.639963538], "required": [433, 2.948777535], "order": [363, 2.458257177], "did": [149, 2.315156333], "recommend": [429, 2.91420619], "leave": [290, 2.736750823], "week": [575, 2.565328557], "blogger": [69, 2.9639677], "sell": [455, 3.198657242], "publish": [410, 3.124088547], "email": [171, 2.677561952], "problem": [399, 2.541638786], "thinking": [524, 2.92887638], "2019": [17, 3.413768622], "setting": [463, 2.876106344], "goal": [219, 3.094587882], "ask": [50, 2.782496845], "questions": [415, 2.71662942], "kind": [277, 2.586090548], "stop": [496, 2.866803952], "problems": [400, 2.933814662], "thing": [521, 2.162149164], "income": [260, 3.505883911], "single": [472, 2.250617812], "facebook": [181, 2.651095379], "written": [596, 2.774022218], "day": [139, 2.059997453], "trying": [540, 2.677561952], "starting": [492, 2.673737855], "particular": [368, 2.817132342], "state": [493, 3.154486024], "love": [312, 2.407271622], "ideas": [251, 2.938777451], "twitter": [542, 2.528349554], "address": [34, 3.060298809], "visitors": [565, 3.005640396], "services": [461, 2.732694023], "service": [460, 2.610870577], "text": [518, 2.582600143], "similar": [469, 2.483180585], "url": [549, 3.238136053], "default": [141, 2.749020916], "profile": [405, 3.314828674], "choice": [98, 2.765618807], "added": [31, 2.600175288], "header": [233, 3.300439937], "footer": [202, 3.617109546], "range": [419, 2.948777535], "minutes": [334, 2.894974829], "chinese": [97, 4.776346456], "network": [348, 2.81273673], "account": [26, 2.830436307], "links": [299, 2.596635462], "link": [298, 2.480030976], "automatically": [54, 2.995058287], "party": [369, 3.142215931], "longer": [307, 2.696904915], "medium": [329, 3.505883911], "view": [563, 2.673737855], "offer": [355, 2.48950972], "idea": [250, 2.461338843], "online": [359, 2.410199882], "homepage": [242, 3.709482866], "blogging": [71, 2.452122188], "mean": [325, 2.720621441], "audience": [52, 3.010973742], "client": [105, 3.514694541], "interesting": [269, 2.943764993], "remember": [431, 2.808360356], "story": [498, 2.91420619], "learning": [289, 3.124088547], "writing": [595, 2.419036464], "traditional": [534, 3.390052095], "internet": [270, 2.923962365], "news": [350, 2.749020916], "early": [164, 2.843919658], "days": [140, 2.541638786], "got": [223, 2.483180585], "power": [392, 2.693006274], "spend": [487, 2.899748107], "success": [502, 3.021726534], "natural": [343, 3.351733231], "easier": [165, 2.568759092], "low": [313, 2.943764993], "sharing": [466, 2.853010629], "company": [117, 2.492689373], "individual": [263, 3.032596206], "personal": [375, 2.452122188], "yes": [599, 2.91420619], "water": [569, 3.505883911], "return": [440, 3.112183644], "coming": [111, 2.853010629], "successful": [503, 3.021726534], "block": [67, 3.374547909], "industry": [264, 3.185836554], "guide": [227, 2.732694023], "blogs": [72, 2.54835022], "resources": [435, 2.969082801], "money": [337, 2.558502592], "follow": [199, 2.565328557], "play": [381, 3.021726534], "away": [56, 2.470641236], "items": [274, 3.224802522], "hours": [245, 2.82154736], "save": [445, 2.610870577], "100": [2, 2.572201436], "later": [284, 2.528349554], "travel": [537, 3.550734477], "unique": [546, 2.685254298], "visit": [564, 3.100418803], "doesn": [158, 2.117398968], "matter": [324, 2.712653272], "11": [3, 2.681400728], "12": [4, 2.600175288], "likely": [296, 2.480030976], "answer": [42, 2.880790194], "13": [5, 2.933814662], "research": [434, 2.839404977], "14": [6, 2.938777451], "15": [7, 2.589593179], "life": [294, 2.344928492], "16": [8, 3.016335686], "17": [9, 3.211644438], "18": [10, 3.038075672], "19": [11, 3.238136053], "taking": [510, 2.757285426], "info": [265, 3.588122009], "month": [338, 2.689122774], "action": [27, 2.871444331], "step": [495, 2.575655671], "24": [18, 3.218201838], "bloggers": [70, 2.843919658], "doing": [159, 2.301911107], "plan": [378, 2.853010629], "body": [73, 2.97939217], "general": [215, 2.708692871], "space": [483, 2.724629463], "platforms": [380, 3.238136053], "clear": [103, 2.736750823], "perfect": [372, 2.778250554], "word": [585, 2.9639677], "didn": [150, 2.732694023], "framework": [204, 3.523583488], "chat": [94, 3.924594246], "clients": [106, 3.374547909], "friendly": [206, 3.071598364], "ready": [424, 2.589593179], "engine": [174, 3.08302706], "cost": [125, 2.839404977], "buy": [84, 2.894974829], "terms": [516, 2.765618807], "remove": [432, 3.192226352], "2014": [15, 3.59769146], "result": [437, 2.825981957], "building": [80, 2.473761363], "groups": [226, 3.344242559], "tips": [527, 2.839404977], "author": [53, 2.696904915], "car": [86, 3.720293782], "past": [370, 2.720621441], "half": [228, 2.984586987], "question": [414, 2.808360356], "dashboard": [136, 3.307608426], "structure": [499, 3.27226906], "million": [332, 3.005640396], "game": [213, 3.374547909], "learn": [288, 2.361549373], "won": [583, 2.378451184], "title": [528, 2.9742242], "background": [57, 3.293322469], "en": [172, 4.631164447], "human": [248, 3.185836554], "light": [295, 3.185836554], "files": [194, 2.92887638], "gives": [218, 2.662352533], "self": [454, 2.808360356], "companies": [116, 3.065932627], "fit": [195, 3.016335686], "slider": [477, 4.03738974], "builder": [79, 3.497150231], "pay": [371, 2.81273673], "server": [459, 3.211644438], "2016": [16, 3.382269955], "training": [536, 3.588122009], "clean": [102, 3.049125508], "non": [352, 2.799664649], "access": [24, 2.511982576], "book": [74, 2.90454428], "color": [108, 3.130094571], "layouts": [287, 3.646962509], "contact": [121, 3.043585328], "left": [291, 2.689122774], "health": [234, 3.413768622], "table": [507, 3.359280437], "city": [100, 3.514694541], "games": [214, 3.938017266], "performance": [373, 2.938777451], "original": [365, 3.038075672], "speed": [486, 3.060298809], "friends": [207, 2.909363566], "head": [232, 2.866803952], "fix": [196, 3.541601993], "land": [281, 3.787735063], "2013": [14, 3.688205468], "sport": [488, 4.553202905], "fixed": [197, 3.720293782], "class": [101, 3.173178157], "width": [579, 3.698787577], "index": [262, 3.787735063], "retrieved": [439, 4.686734298], "american": [40, 3.322101433], "house": [246, 3.238136053], "2012": [13, 3.505883911], "term": [515, 3.000335344], "white": [576, 3.185836554], "id": [249, 3.617109546], "div": [155, 4.658563421], "essential": [176, 3.429898004], "states": [494, 3.523583488], "women": [582, 3.776174241], "animal": [41, 4.271790446], "players": [382, 4.181639349], "medicine": [328, 4.528510293], "bike": [65, 4.686734298]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_books_and_literature.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_books_and_literature.json deleted file mode 100644 index c2e57da..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_books_and_literature.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.677708277, "feature_log_probs": [-7.032515685, -8.396861508, -9.113373853, -8.916102463, -8.625637069, -8.223047142, -8.678290559, -8.649206066, -6.193357785, -7.140180274, -6.43647011, -6.667900817, -6.794490148, -6.763861099, -6.73266935, -6.792935725, -6.862276598, -6.928534146, -6.892125488, -7.968797883, -7.864784992, -6.636391277, -7.848343071, -7.809427007, -7.90441816, -7.782350832, -7.784303309, -7.30079714, -7.693254086, -7.256809896, -7.523394032, -7.24273873, -7.280798916, -7.194736484, -7.298284934, -7.064357994, -7.090265755, -6.816725938, -6.995316375, -7.387968268, -7.157431554, -6.343252715, -7.020604928, -7.007426967, -7.202502124, -7.182077458, -7.035744478, -7.033764914, -7.08668631, -7.2638002, -7.423021331, -6.946245454, -7.595390215, -7.798385808, -8.001734743, -7.963523646, -7.594132314, -7.655565229, -7.850381831, -7.992761876, -7.295781832, -7.912518219, -8.153769002, -7.429316821, -8.247581058, -8.018465471, -8.492451952, -7.300281416, -8.203259615, -7.548540078, -7.416918957, -7.242565168, -7.975799961, -7.407910692, -7.277799208, -7.329204607, -7.402124568, -8.225642151, -8.870347212, -7.71843775, -6.826904651, -8.275596819, -7.578250157, -7.845245016, -8.280363845, -8.764836538, -6.833861829, -7.360908437, -6.473852793, -7.064883768, -7.959665162, -8.157089606, -7.945006448, -7.883572831, -8.186093813, -7.446107326, -6.274287933, -6.755143733, -5.995896039, -8.430363497, -7.381146248, -7.956185204, -8.313823466, -7.500409147, -8.360869393, -7.76875574, -7.406673139, -7.378992805, -9.67629627, -7.795211289, -7.555420268, -7.832815173, -8.165533158, -7.648076789, -7.64712548, -6.322491356, -7.023226226, -8.144423395, -7.128665812, -6.616478687, -7.171438002, -7.822378336, -7.202434038, -7.344303157, -6.692327191, -7.629849475, -7.19351831, -5.501206056, -6.265893362, -7.678028422, -8.249009158, -8.272112552, -7.914294522, -6.434353894, -7.344365056, -6.584263358, -6.895709183, -7.203822657, -8.092869485, -10.005206004, -7.487157491, -6.542992824, -7.202388534, -7.123709912, -7.247035784, -7.282712881, -7.086629926, -7.008561093, -5.631768126, -6.618644758, -10.663067204, -6.650780624, -8.039283759, -10.495403218, -6.999025345, -6.610916244, -7.825186624, -7.406161805, -8.696783375, -7.119775743, -4.437434809, -4.516292448, -6.979466174, -7.600021376, -6.70386448, -7.55548582, -8.257895427, -7.395831374, -7.60781264, -6.986304266, -7.248649907, -7.551376593, -7.291587223, -8.006836414, -7.861474235, -8.369102967, -7.24519429, -6.629042903, -6.467885951, -7.487061753, -6.879324357, -8.824412987, -8.683512408, -7.96115169, -8.647298691, -8.020377816, -7.958379734, -7.395474924, -7.141488454, -8.987294047, -7.059818222, -8.371039522, -7.413357173, -8.336173535, -7.683560952, -7.623697316, -6.44459902, -7.142092719, -7.125140863, -7.633869856, -6.96410053, -7.564612511, -8.037717021, -7.598948151, -6.77775976, -6.05408883, -5.811849919, -6.819177241, -7.231991253, -6.627308754, -6.424923658, -7.577427849, -7.518882612, -7.57023237, -7.717404679, -8.44301617, -6.535986194, -6.94774009, -6.725341169, -7.205475773, -7.603383013, -7.31727014, -7.113759746, -8.194388334, -7.43539697, -6.435869638, -7.113096989, -8.034354262, -6.554132198, -6.678650816, -6.893724113, -8.691289933, -7.329689032, -7.359784421, -7.297690916, -9.468066949, -7.691638181, -8.762511176, -7.429467661, -7.207056715, -7.483254453, -7.96459856, -7.779282619, -7.602333651, -7.578842141, -6.883420204, -7.929171634, -8.253337251, -7.595686253, -7.439804542, -7.629368178, -7.36272496, -7.513846678, -8.711941249, -8.489046626, -7.399773414, -8.591408439, -6.953024404, -7.292818707, -6.520443552, -8.563123392, -7.281625073, -7.574272798, -7.451525926, -8.043201287, -7.135653838, -6.491229775, -7.852993592, -7.081081874, -7.122433077, -6.699128376, -7.802924041, -7.967964596, -9.425620462, -7.714745816, -7.27218128, -6.416794864, -8.889226038, -9.726100801, -7.967121432, -7.1282119, -6.390610985, -6.195612601, -6.962498772, -6.691022688, -7.391075221, -6.157922256, -6.67739841, -7.411628389, -7.643201137, -7.523228856, -8.053519806, -7.163040461, -7.106577986, -7.197594548, -7.43615718, -8.765078447, -8.554483739, -7.269884374, -7.480466391, -6.89197797, -8.343474744, -8.054588312, -6.223785228, -6.487296676, -7.167829597, -7.132127693, -7.838598541, -6.544518169, -7.248575117, -7.946305941, -8.210542875, -8.019998635, -8.669847698, -6.422169547, -6.602090628, -7.75480547, -6.989849703, -5.738761904, -7.723032007, -7.875603549, -6.872465539, -7.124554559, -8.092786885, -8.435583692, -7.386326945, -6.801587302, -7.268469369, -8.36088523, -8.039152812, -7.809054971, -7.262805646, -7.910183302, -8.313325239, -9.194082961, -7.986273717, -6.365218471, -7.144339721, -6.73198687, -7.686764979, -7.677151564, -8.137267427, -9.887598054, -7.772945808, -7.449555746, -7.343000949, -9.259688277, -6.367441756, -8.32652054, -9.511680926, -7.3591134, -6.299237212, -7.101632095, -7.128982603, -7.637764006, -8.932654787, -7.001197088, -7.2272251, -7.034536604, -6.920762357, -6.6152908, -7.713293813, -8.286332633, -8.439879078, -8.184309581, -7.470494348, -7.082187527, -7.262097378, -8.000405106, -7.312040567, -8.518754194, -7.165168877, -7.131531417, -7.904720541, -7.531667585, -6.717826548, -7.268823982, -7.979043701, -8.590461341, -7.378785925, -6.999296357, -7.027006162, -7.020926253, -6.692429906, -8.1352324, -7.780196663, -6.872603011, -6.197333936, -6.829233981, -7.127791702, -7.195082177, -6.021201228, -6.658924852, -7.757429088, -6.535326133, -6.127076884, -7.084684974, -7.970815622, -7.725266349, -7.930580632, -6.373891251, -6.931022799, -7.07102921, -8.338183871, -6.805979943, -6.818968976, -7.475948277, -5.074323003, -7.747797368, -7.276990566, -7.387369385, -8.84837744, -6.703622512, -7.076387125, -7.001222489, -8.659883598, -7.461681181, -7.065239215, -7.675246074, -7.922864079, -7.483216787, -6.997984286, -7.74177038, -7.271067406, -6.994235566, -7.796327941, -7.691006946, -7.96141928, -7.2999769, -6.905706199, -7.425587983, -6.480686519, -7.330022143, -7.128217461, -6.561237052, -6.563734887, -7.930051922, -7.185892774, -8.736181212, -6.962498586, -6.959722346, -6.810553104, -7.739503006, -7.223070711, -7.711946777, -7.957556464, -7.613628506, -6.26212076, -6.553202744, -7.57984603, -8.702971681, -7.107341528, -7.288704504, -6.118709204, -7.113781319, -7.108287593, -7.569496282, -8.716181558, -8.200425751, -6.674311413, -7.162584026, -6.354785885, -6.810272364, -5.930807026, -6.595345582, -8.802930082, -6.700792086, -8.029469712, -7.499867047, -5.821292433, -6.975221364, -7.177827013, -7.248274271, -7.571404809, -8.774993346, -7.401471338, -6.520665675, -7.005204744, -7.021014691, -7.664410693, -7.447709067, -7.22839607, -7.251430343, -6.947987014, -6.673237211, -7.254197773, -6.884360981, -6.905196184, -8.439423567, -7.191333361, -7.257710309, -6.432404186, -8.605941232, -8.02385484, -6.747382003, -8.055984948, -6.984018303, -6.902080687, -8.373574795, -7.619866814, -6.734382954, -6.113460015, -7.630681794, -7.593770421, -6.5901947, -6.78976403, -6.818144945, -7.812925862, -7.311568535, -6.474954545, -8.584175979, -7.666027457, -7.393276328, -6.473327999, -6.916912191, -7.16791201, -6.772985674, -7.34106974, -7.293421016, -7.598193727, -7.584942019, -8.062529856, -7.302106422, -7.827800787, -8.259717469, -6.757088423, -8.90290894, -7.497666781, -7.656342834, -7.677313411, -6.784527769, -9.240823084, -8.772085354, -7.493540637, -7.804499635, -8.369993255, -7.109962742, -7.571083078, -7.776520241, -6.990628683, -7.104594015, -8.026529388, -7.094624838, -7.838130814, -7.625002224, -7.034506901, -7.846358619, -7.388993457, -7.035766871, -7.78658585, -7.853855771, -7.127885913, -6.711450964, -7.73623916, -7.729589214, -8.000237712, -7.208386189, -6.43723412, -6.683156803, -7.389306892, -7.425620483, -6.934710357, -7.147912159, -6.092295485, -7.31074701, -7.757428239, -7.116465521, -7.538777504, -7.772057849, -7.386651445, -8.043480601, -6.957445388, -7.698218031, -10.146645836, -7.490119295, -7.286476362, -7.419294472, -6.919376268, -6.29258522, -6.252065231, -7.059646209, -5.906963744, -7.591754577, -6.753258218, -7.109953191, -7.337662014, -7.441745736, -6.735100337, -7.747644108, -8.096083007, -6.985674005, -6.47226986, -7.245804416, -7.803980138, -6.476013431, -7.672127956, -7.142796684, -7.515626005, -8.084679993, -7.162706385, -7.089977478, -7.595396826, -7.16106472, -6.871453055, -8.43965031, -6.416570571, -7.08160545, -6.970630721, -7.712732829, -8.998759568, -6.62354477, -5.148423228, -6.914655616, -8.624657387, -7.697292303, -7.699321071, -6.892361575, -7.197051443, -7.979972275, -7.609085228, -5.808597926, -7.026087008, -7.365331005, -5.566407801, -5.877735483, -6.116562305, -6.789851524, -7.263782149, -6.374101683, -6.708557369, -6.252573832, -7.702724725, -6.839362929, -6.162518309, -7.330361492, -6.699632005, -7.53250802, -6.79645211, -7.583286509, -6.88869941, -7.593427305, -7.454267799, -6.882178636, -6.62394169, -5.471287131, -6.800879557, -8.220248505, -8.097618685, -6.850488196, -6.741299435, -7.169566927, -7.508123054, -6.2154749, -6.501690246, -6.933727734, -7.365459157, -5.640549713, -9.80640679, -7.098198429, -7.036960589, -7.013552673, -7.73724601, -8.311435143, -9.546164282, -7.076796644, -7.566337731, -6.827758644, -6.927907466, -7.109777348, -7.822618143, -7.455862291, -6.794125889, -6.889037287, -6.793232291, -7.127273615, -7.467508869, -7.069565508, -7.609841902, -7.44523976, -8.693413309, -8.475532025, -7.219172271, -7.747424425, -7.737899314, -7.781787109, -6.581475129, -7.137123604, -6.401887239, -8.058366049, -7.550908477, -8.870735534, -6.974346178, -7.10744752, -7.871219415, -8.15713743, -7.905173208, -6.469722059, -7.970672102, -7.268612256, -9.2199542, -8.325795108, -8.165260917, -9.547439791, -6.671047889, -6.848927092, -7.389052273, -7.278911143, -7.322155345, -7.581876467, -7.358724027, -6.487959707, -8.169303011, -7.207187716, -7.288582791, -6.711631655, -7.311929089, -7.482137403, -6.239883804, -6.758796979, -7.108077323, -11.073991583, -6.374492659, -6.292369456, -6.996362964, -7.410288592, -6.574867155, -6.449372496, -7.389053199, -7.906072947, -7.036769855, -7.72513362, -7.368409139, -8.063836361, -6.648079499, -7.51537683, -7.712728557, -8.868427085, -5.484520401, -7.268832551, -8.032981158, -6.483774015, -7.400643221, -6.664825664, -7.670221474, -7.2148701, -7.298995, -4.678033718, -6.324429555, -5.321632972, -7.785810471, -7.134492665, -8.683771884, -7.346139119, -7.343282693, -7.620620661, -7.875381367, -7.273639039, -9.438503773, -6.16827155, -7.228767111, -7.073671052, -7.443652193, -7.229060721, -7.313969454, -8.169954355, -8.879605763, -9.261571205, -7.043170576, -8.389472334, -6.76438171, -7.416812981, -7.278676434, -7.34516244, -8.439133185, -6.597070638, -6.472432548, -8.210869688, -7.593625589, -7.148212913, -7.167865189, -7.350118496, -7.283961705, -7.392144371, -7.746514614, -7.332842186, -6.596100568, -7.002535233, -8.075016202, -8.806199654, -7.017099792, -8.32001416, -7.330440961, -6.205287789, -6.967533208, -7.355763351, -7.31942633, -7.460868887, -7.915183462, -7.779434786, -7.460178442, -7.150994267, -7.451427095, -7.128108307, -6.477627249, -7.348213296, -7.697607864, -8.848049228, -7.224354318, -8.789816948, -6.623982939, -7.543769735, -6.86173776, -6.636339299, -6.802269995, -6.569335384, -6.543146261, -7.566603108, -8.714804877, -6.995026915, -7.081540115, -7.992912459, -7.316985563, -6.821698801, -7.999634596, -8.125156876, -6.596716682, -7.258391047, -7.709239277, -8.295883016, -7.121799386, -7.798806227, -7.077249389, -7.203777182, -7.554124717, -8.299021146, -8.992518292, -7.711693539, -6.41180379, -6.96160151, -7.508046303, -7.905495442, -7.387163514, -7.982501283, -8.032668111, -8.39724654, -9.112159795, -7.407121648, -8.47114005, -7.593223855, -8.528204074, -8.819141204, -6.634155612, -6.933150759, -8.272107311, -8.386933813, -6.99303133, -7.204685406, -5.85829004, -6.99909278, -7.262463973, -6.991489225, -7.69882417, -7.043314714, -7.81181574, -7.311796316, -6.723006492, -7.052045895, -7.699772007, -7.676492985, -7.003181685, -7.326215908, -9.705027645, -8.180793255, -7.030618479, -8.183340063, -8.188027254, -7.80353421, -7.846400657, -7.697183046, -4.838216366, -6.057970905, -5.889444547, -5.359100414, -6.910921679, -7.646477474, -6.371667046, -6.999468796, -6.203018977, -9.84949255, -7.174673525, -7.548313718, -7.47021999, -7.127663526, -6.739197657, -7.475132471, -8.268620891, -7.348264893, -7.459540529, -7.712878834, -6.996309559, -7.597441169, -7.16605936, -7.09855891, -6.804818937, -8.342631074, -8.875546706, -8.364853205, -7.964126652, -7.793734775, -7.165204945, -7.78851648, -8.375946226, -6.640161644, -7.290386664, -6.589202116, -7.117771054, -8.101620956, -7.297884658, -6.901454772, -6.526590116, -7.958083915, -7.553270327, -8.500026754, -7.246417901, -6.847593665, -7.535965363, -6.492470809, -7.000455422, -6.674257877, -7.72246588, -7.560052017, -7.419719197, -7.865508512, -7.343268764, -7.989991659, -7.28818207, -7.577963456, -7.596392737, -7.362472162, -6.282734675, -7.272510013, -8.562886015, -6.737083729, -6.696118058, -6.159687374, -8.424157867, -8.346233302, -7.313548115, -6.901402394, -6.517171251, -6.84366386, -7.703397783, -8.738413301, -7.569525836, -7.141098497, -6.419239585, -8.000878908, -7.698038903, -8.074670821, -6.510483097, -7.676882284, -8.511141986, -7.719953799, -5.823137425, -10.484846016, -7.72616352, -9.171138351, -6.395058347, -7.401955165, -7.304346281, -7.219756238, -7.246285477, -7.505256746, -6.027496165, -7.476456875, -7.532698204, -8.314213943, -7.563248316, -7.501401365, -7.047078456, -6.927152045, -6.847199644, -7.669287592, -8.547869778, -8.159807086, -8.783396269, -8.446094417, -7.900278441, -7.853127135, -6.732239441, -7.729563143, -6.807976632, -6.806575995, -6.825310574, -9.496220703, -7.434299711, -6.626266029, -7.189501847, -7.168060582, -7.574479091, -7.566639398, -7.439972843, -7.18267648, -7.303884323, -7.523588869, -7.612284551, -7.970526393, -8.599644877, -7.718227689, -7.38140325, -7.318674982, -9.891925277, -9.092496842, -11.073991583, -7.76590999, -7.19278095, -8.513037756, -7.235922, -7.252157449, -6.64439617, -7.110862454, -7.810689653, -7.368865667, -7.464959171, -8.051605629, -7.333091159, -8.116998036, -6.749392005, -7.061094248, -7.931697075, -5.623521865, -5.122022963, -7.04862296, -7.259459208, -7.340726778, -7.532110204, -7.254092364, -8.328976819, -7.742954792, -7.585669056, -6.812418338, -7.17325959, -6.992939707, -7.307272877, -6.970693594, -7.905837484, -6.876334129, -8.699399986, -8.760334871, -8.114859632, -7.409193682, -6.696011479, -7.451431143, -6.502070812, -6.846616452, -7.186773222, -10.053777141, -7.868784714, -9.350136621, -7.898921435, -6.441990097, -7.570961716, -6.654150428, -7.715271277, -7.82823059, -7.410650289, -8.302772287, -7.555869243, -7.84958445, -7.55201576, -7.061229062, -7.797463741, -6.410421171, -5.971016337, -5.862076254, -6.987968607, -7.447912071, -6.947816143, -6.525738349, -7.437020229, -6.259521863, -6.709171784, -6.746746542, -6.756626456, -6.505316732, -6.929234937, -8.770442271, -8.002667342, -8.221624192, -8.450964178, -7.024349917, -8.237660415, -7.476015458, -8.404595409, -6.951830148, -7.177110362, -7.391823289, -7.611802705, -6.637540208, -6.441794437, -7.377785246, -8.876219302, -7.726249712, -6.831896565, -6.962925687, -6.914346586, -7.119448722, -7.161666738, -7.33257827, -7.438764415, -7.151789261, -7.74341071, -8.477653264, -7.230217871, -7.128402819, -7.629130188, -7.608963347, -7.362321192, -7.227436627, -7.084074378, -8.127224146, -6.923064818, -7.000143557, -8.222183667, -9.290440361, -8.327966118, -7.681923185, -7.797081719, -7.494678155, -7.738939711, -8.58155922, -7.795518027, -5.805106765, -8.01800707, -7.299663621, -7.675615924, -6.942807412, -7.583808488, -6.687445045, -7.157496608, -8.371842017, -7.284765678, -7.601315284, -8.03186778, -7.54474522, -6.10354037, -6.700983371, -7.437323663, -6.156134238, -7.161009302, -7.381964571, -7.650950656, -5.817669294, -6.931378325, -8.548494628, -7.906056366, -7.838304591, -6.839415075, -7.63765933, -8.012073235, -7.077089072, -7.542884066, -8.472911511, -6.572072005, -7.953978021, -6.737116027, -9.467899489, -8.683581905, -6.80427641, -7.509967651, -7.208588058, -7.27184403, -7.374939386, -7.633289015, -6.038565953, -5.89711797, -6.765199388, -6.810713416, -10.37088429, -6.443828869, -5.653625389, -7.518612136, -6.987651448, -6.356413246, -5.506860675, -7.187796715, -7.794351477, -5.855402971, -5.633829797, -5.65415264, -6.563991187, -5.336564204, -5.930811224, -7.154499303, -6.060902087, -5.795611144, -5.846320073, -7.131433701, -6.330012278, -5.956048903]}, {"log_prior": -0.708828186, "feature_log_probs": [-6.163996992, -8.068156464, -8.18075652, -8.470912109, -8.709318374, -8.390954441, -8.865441009, -8.297725948, -6.130969341, -6.752705038, -7.008987121, -6.77897912, -7.268252899, -7.162668647, -6.921895557, -7.148213462, -7.513039179, -7.166960732, -7.606396317, -8.416894546, -8.823777231, -6.643486948, -8.48702518, -8.423932208, -8.44012679, -8.243654434, -7.995421635, -8.247733678, -8.19932698, -8.03216294, -7.907434028, -7.619534594, -7.49603185, -7.82581859, -7.153377285, -7.187677082, -6.991606741, -7.026846726, -6.885617197, -7.092480215, -6.897939996, -7.315947944, -7.300161187, -7.513144455, -7.89985978, -7.129808348, -6.950977488, -7.875287828, -7.618509001, -7.652519261, -7.735303789, -6.614267751, -7.668569621, -7.779380186, -7.811987349, -7.96291078, -7.577308912, -7.96648679, -8.320202155, -8.159059239, -7.135182715, -8.371663279, -7.830969918, -7.031368484, -7.345265542, -7.183104195, -7.45448687, -7.752032583, -8.658288673, -7.574691346, -6.984067299, -6.463935344, -6.628210089, -6.297818183, -6.682075068, -7.374954517, -7.228791864, -7.611426765, -7.195503133, -7.631037286, -6.372532592, -7.103632934, -6.527540226, -6.816156247, -7.076481977, -7.215531072, -8.569151668, -7.400736863, -7.373709238, -6.848790192, -7.051801832, -7.897292512, -7.098114896, -7.680221673, -6.941021322, -7.392315534, -6.616390285, -7.434653611, -6.817600852, -7.569816587, -8.088754853, -6.853611438, -6.553026078, -7.155504964, -5.881264311, -7.3947179, -8.172285592, -7.845791335, -6.850173497, -7.185314172, -7.193376872, -8.475076052, -6.800938592, -7.014172263, -7.958122179, -7.413639584, -6.682053677, -7.296315792, -6.940859583, -6.999616745, -8.405555723, -7.764386312, -6.911292428, -7.364097882, -10.874041423, -7.677302656, -10.221113303, -7.601606027, -8.166856102, -6.465654484, -7.007691306, -10.147340176, -7.122996992, -8.675371743, -8.534795841, -6.527866814, -6.950090913, -6.243430411, -7.054163238, -6.619023388, -8.054755874, -7.630623238, -7.232013622, -7.282474805, -7.712890668, -7.79322749, -8.458477785, -7.119170875, -6.091760716, -6.231821235, -7.441894478, -6.306381807, -7.180874245, -6.008266612, -6.656496486, -6.698920577, -6.250414317, -7.112850368, -6.930002447, -6.091210975, -6.951904436, -8.017183792, -8.097003704, -7.378881056, -8.469295172, -6.724305478, -6.704298966, -7.284923973, -7.119928954, -7.355386274, -8.527711242, -7.754109917, -8.687646193, -6.524925678, -6.720508442, -6.673787783, -6.332416158, -6.430948196, -6.654431751, -7.430425287, -6.845482039, -6.351402678, -6.953118469, -7.142536075, -6.983142055, -5.93747911, -7.092729755, -6.72043627, -7.246759323, -6.510346455, -6.498960138, -7.069576767, -7.406567691, -7.26847768, -7.426228121, -7.403293169, -7.487169855, -6.955041679, -7.676377918, -7.403974783, -6.261101933, -7.551874202, -6.711748002, -7.397588276, -8.630715281, -8.076811098, -8.079460476, -8.84801536, -6.487709924, -7.536595968, -6.766753615, -7.26098449, -7.244141281, -7.192233945, -7.02600233, -8.428363136, -6.657541071, -7.226961379, -8.209597118, -7.1479524, -6.763533142, -6.965656977, -7.979223945, -6.781755308, -7.443487844, -7.730147619, -7.731168995, -7.043424196, -6.522436944, -6.690973062, -7.144136615, -7.538256451, -7.340188954, -6.948295905, -6.894599681, -6.560617094, -6.002755518, -7.316837293, -7.123532552, -7.287336949, -7.348564648, -7.087812266, -7.393024419, -7.045430174, -7.413259998, -8.423420056, -6.247914137, -7.590906973, -7.376468589, -8.065761378, -6.58945674, -7.689979984, -7.968937581, -7.648847428, -6.655016394, -7.658505598, -7.040406834, -6.668021382, -7.234088575, -6.645880073, -7.096357017, -7.360310019, -6.306121928, -6.90250932, -7.044138331, -7.194337292, -8.477515861, -7.834220403, -8.631182538, -8.229198639, -7.467418732, -6.98417073, -7.302557447, -6.973063926, -7.366840012, -6.934734876, -7.823386998, -5.481621265, -6.707300582, -6.987419622, -8.188033029, -7.794437516, -5.903113539, -6.657752188, -8.041411294, -7.011733994, -7.825666091, -8.779571346, -7.493615149, -7.528821924, -7.250806907, -7.115069851, -7.177522567, -8.131991442, -7.75307381, -8.277587134, -6.013305605, -6.903304826, -7.17911198, -7.248041958, -9.562064287, -7.301910478, -6.744448796, -6.473054849, -6.66633459, -8.355270732, -7.935281853, -7.171805353, -6.209014459, -6.981400673, -7.354399522, -7.378830848, -7.185545926, -6.771584733, -6.442338117, -6.447202647, -6.631430705, -6.526783512, -5.73993965, -7.202810081, -6.869576231, -8.116182033, -8.384510159, -6.83342167, -7.144680739, -7.426980488, -6.799037947, -7.735213202, -6.994243849, -6.832372568, -7.647105278, -6.349987612, -6.636437185, -6.939874741, -7.153684097, -8.269804402, -6.569405676, -8.40247632, -7.647323759, -7.173921955, -7.282672732, -7.013968857, -8.394587518, -7.722917663, -9.723612725, -7.375943824, -8.116616264, -6.448354519, -6.903630896, -6.880806233, -8.246262597, -8.183461083, -7.166700646, -7.299959754, -7.640172703, -7.159320689, -8.907207678, -7.898434251, -6.949849037, -9.027307754, -9.725873799, -7.399674375, -6.677218361, -7.546009081, -7.71303583, -7.410294559, -7.452864927, -7.502098757, -7.182302757, -8.51757392, -7.741258102, -7.295782983, -6.216682169, -7.685297204, -7.346827654, -6.389812789, -7.341501328, -7.559562919, -6.993155602, -7.582892012, -7.619645233, -7.160901547, -6.381811163, -6.663360611, -7.741266213, -7.489535264, -7.844596573, -6.584120152, -7.728459849, -7.952904801, -7.826868757, -9.905666137, -6.813514218, -6.958226942, -8.039366107, -7.401868707, -7.539978219, -6.883656095, -6.43706454, -7.699099933, -6.402563518, -7.187507314, -7.498789723, -6.964835999, -7.204005369, -7.683019393, -7.986712919, -9.385968262, -6.901467177, -7.921045953, -7.070867646, -6.79650284, -7.5110772, -7.381407414, -7.317344963, -6.923598279, -7.481440565, -8.843506077, -7.497151991, -7.157428161, -6.808108748, -6.735006316, -7.699861372, -6.864182466, -8.379290384, -6.041696243, -7.687260228, -7.609220306, -7.972913254, -6.848373314, -7.31086714, -5.994159498, -7.799064955, -7.797057364, -7.518062617, -6.884059817, -7.313225553, -6.932721099, -6.818101412, -8.652351877, -6.674953525, -6.098854836, -6.480268091, -7.504868125, -6.921243098, -7.347589049, -7.352966633, -9.164034558, -8.59538912, -7.938021084, -7.316117036, -7.314772996, -6.464428501, -8.355908806, -6.834709178, -7.298332977, -7.522169914, -6.935475351, -7.223911468, -8.016387206, -7.247582524, -6.226087119, -7.880388171, -5.935877974, -10.874041423, -5.922559276, -6.692110829, -6.586422815, -8.098692957, -6.322528775, -8.03482149, -7.698488731, -6.408056202, -7.533924834, -7.033856943, -7.262805736, -10.575554209, -6.749134653, -6.748214289, -7.610366128, -7.272191155, -7.50238716, -7.505542589, -7.314631426, -6.518791343, -7.745476266, -6.525754224, -6.967602376, -6.145759345, -7.355843714, -7.611393519, -7.290093892, -9.584620756, -7.550414428, -6.011016793, -6.901463318, -8.334186643, -6.129630784, -6.735251752, -7.309418983, -8.246026885, -6.982300598, -7.342374063, -7.185317954, -5.953294129, -7.535172417, -9.148262011, -7.096354867, -6.70792568, -6.435760887, -7.151876419, -7.169645842, -9.008891523, -6.634681767, -8.096584676, -9.287599198, -6.633093357, -7.159398167, -7.515867192, -7.915943489, -6.510070731, -6.949191189, -7.538494876, -7.691539088, -7.125856914, -6.404628587, -6.918531459, -6.796796879, -7.224059864, -7.140434801, -6.497430065, -6.737210123, -6.862249876, -7.756030712, -7.130442317, -6.831257843, -8.111858208, -7.451413484, -6.293526697, -7.073595008, -8.023914662, -7.470089835, -6.652363303, -8.006463818, -7.692381225, -7.224945909, -7.17234423, -7.186804125, -7.222304826, -8.001699059, -7.352645565, -8.160387465, -6.603843221, -7.162869642, -6.92307807, -10.561851509, -8.900825798, -8.071562951, -8.91020648, -7.727190889, -7.722694437, -8.008746833, -6.640899598, -7.613871111, -9.09875128, -7.257180197, -7.726175352, -7.586458767, -7.212292719, -7.146979807, -7.190903547, -10.874041423, -6.587148428, -7.484918287, -6.8893334, -7.828603248, -8.369107294, -8.436760618, -6.87322542, -7.583552538, -7.779074264, -6.061206363, -7.107524821, -6.715549965, -8.030617772, -8.086097956, -7.059617044, -7.611670764, -6.601641544, -7.31235333, -7.287749624, -6.891166498, -7.162006926, -6.948964612, -8.125152698, -7.00420082, -6.602325509, -7.455676424, -6.616373467, -7.406802057, -8.742254893, -7.241759264, -8.814660699, -6.836282804, -7.362598103, -6.507596178, -8.261203536, -8.273461112, -6.504992662, -6.995982668, -8.049661728, -6.116681104, -6.533341228, -6.911423939, -6.575707881, -7.520724808, -6.703289657, -7.906090488, -6.970938116, -7.041735978, -6.46381361, -7.956954585, -7.583668037, -10.024389178, -8.948327256, -6.476981684, -6.591089583, -8.143858565, -7.305533374, -6.925543969, -5.915954605, -6.533833847, -7.235818231, -6.209660851, -6.939032241, -6.217749265, -7.445569552, -6.550891083, -7.002498983, -8.982820394, -7.320081383, -7.403001408, -7.390484855, -6.215580965, -6.684098562, -7.932976451, -6.599173812, -7.327082293, -7.80993292, -7.760118097, -7.074645051, -6.883312348, -5.651671162, -6.655305914, -6.404858884, -7.767852924, -7.283042981, -6.501176414, -7.227435984, -9.446473769, -7.456717258, -6.040230541, -7.229037601, -7.051888638, -9.098643156, -8.45195347, -8.228422802, -8.914000328, -7.752177938, -8.360322749, -7.711076172, -7.205045314, -7.034759982, -10.436493117, -6.988551209, -7.502874288, -6.687851133, -7.318532575, -6.444187051, -6.944245164, -6.999521724, -7.552746486, -7.60677199, -7.41527624, -7.1094995, -10.601096626, -7.712692198, -7.08450541, -7.060771007, -7.619532443, -7.293992103, -8.061412482, -7.443199613, -7.275277342, -7.626966407, -6.636163046, -6.785880054, -6.869458, -7.941076727, -6.900103276, -7.104050105, -6.492630154, -6.992322108, -7.194945689, -7.228083218, -6.013810161, -6.562248151, -6.526521463, -8.522086573, -7.336428035, -7.871735589, -7.224952322, -7.529257195, -7.215773718, -6.759853605, -8.530281666, -7.007778466, -10.874041423, -9.017661869, -7.188086777, -7.545566203, -8.579193857, -10.874041423, -7.917489732, -7.734702326, -8.695818819, -10.395299064, -6.904169051, -6.901328809, -7.157529765, -7.30338901, -7.127045613, -7.429362759, -5.807139089, -7.041953818, -6.78959311, -6.731826953, -5.460168134, -6.498657944, -7.147783094, -7.135337483, -6.958294211, -10.874041423, -7.423662811, -6.94602531, -7.706680248, -8.73208278, -9.72390084, -9.273935457, -7.812669447, -6.327016163, -6.863585001, -7.363197056, -6.901526074, -7.073895765, -7.088087546, -7.659426099, -6.657856926, -6.550224665, -7.610553058, -7.162044636, -6.68755331, -6.544156832, -7.767999038, -7.262272152, -6.844746641, -6.520107592, -6.735694182, -7.567838057, -7.116817964, -7.871643105, -9.256559178, -7.091221041, -7.134526757, -6.558226176, -7.382538361, -7.021419886, -7.306597925, -7.377091047, -7.670594896, -8.181530923, -7.275589596, -7.14549083, -7.350807995, -7.613885539, -6.880672858, -8.450555048, -6.646578038, -6.217954411, -7.099827278, -6.577640662, -7.368791531, -6.419308808, -6.863582532, -7.666561052, -8.714829236, -8.088619731, -6.940589275, -6.683659018, -7.024799587, -7.16479313, -7.887814644, -7.584325389, -6.52652836, -7.221445124, -6.751386508, -6.829798735, -6.542792806, -6.863931795, -8.789856613, -6.900709282, -10.317614313, -10.760220965, -9.615790631, -9.573222587, -6.517272583, -7.095609239, -7.299136834, -7.440939711, -7.094021667, -7.176750116, -6.703819161, -6.350235867, -6.887548987, -6.832283549, -6.541833271, -7.231612924, -7.923412083, -7.009405794, -7.38081497, -6.970047914, -7.253480686, -6.830831924, -7.272772317, -6.392783203, -7.108961341, -7.237506771, -8.630459159, -6.772623895, -6.444607175, -6.835740453, -6.268693306, -7.626189741, -6.60223839, -6.904802282, -6.408065395, -7.431348492, -6.762238421, -6.478211182, -7.004199153, -6.480378453, -10.477503881, -9.48526022, -6.870524456, -7.184507655, -6.565143815, -8.753111632, -7.354997798, -9.143823977, -9.178748083, -8.148954051, -7.759673754, -10.874041423, -6.936605081, -8.886237441, -6.973945486, -6.890883063, -7.339912434, -7.145280807, -6.814985513, -7.04451698, -7.345669613, -7.33186435, -10.748926298, -6.627405039, -6.936494065, -8.340147374, -7.860044291, -7.311972907, -6.969445419, -8.309679817, -7.979160835, -7.60446639, -8.631605521, -7.179710683, -6.306784149, -7.567289047, -6.169315508, -7.074951036, -7.104074687, -7.435251137, -7.623738431, -6.899969146, -7.033807886, -7.4395297, -7.051618428, -7.544124383, -7.945534214, -6.789738301, -7.463247643, -7.317929495, -7.437963257, -7.892431899, -7.347106961, -6.788539934, -7.456023967, -7.249732681, -6.321898725, -7.12806898, -7.217166558, -7.011690597, -6.543312715, -7.055006456, -7.110936161, -7.3516262, -8.281323628, -8.156847868, -7.590145132, -8.186538717, -6.096696637, -6.84838882, -7.937884112, -6.866361529, -6.972405236, -8.335730226, -7.098006237, -9.430603329, -6.931452757, -9.675994769, -7.657990049, -7.112826729, -6.696996937, -6.708523942, -10.874041423, -7.682041978, -8.145809941, -7.297725478, -7.025179089, -7.363380951, -6.385388205, -7.257494985, -7.202924655, -7.90467841, -6.84200434, -6.661654972, -7.11886616, -7.594516881, -6.466127761, -7.294878472, -6.775703976, -7.834456969, -7.310089786, -6.854349547, -7.614552839, -6.876848288, -6.657386719, -7.423287188, -7.430404747, -7.266314344, -7.135695812, -7.639845474, -9.751471588, -7.528636715, -6.81821108, -6.710761957, -6.649365858, -6.441843334, -6.23786717, -7.43000423, -7.795879458, -8.034384125, -6.802564122, -7.428296144, -7.011913975, -7.132258704, -7.142008247, -7.370103805, -6.906115732, -6.457079595, -6.868341435, -6.91902431, -8.447164864, -6.246814056, -6.993256738, -7.509783672, -6.573847191, -6.963077402, -6.998373326, -7.320927277, -6.320465999, -6.7863284, -7.699281205, -6.010431837, -7.411380147, -6.647764043, -7.469285492, -7.888670502, -7.308145805, -7.341338215, -7.429639703, -6.721418406, -7.293408539, -6.566735442, -8.055389335, -7.768078334, -6.91049713, -6.890103582, -6.511960337, -6.913612987, -7.180340639, -8.313605861, -7.154093561, -6.937679974, -7.121866872, -7.540418922, -7.753057721, -7.18333892, -7.717461914, -8.070869792, -6.416697802, -6.747846457, -7.178077883, -6.586367058, -6.71988158, -7.382966242, -7.018733707, -6.707763674, -8.486029279, -7.095940337, -6.783092029, -7.453846448, -6.951125684, -8.431539325, -7.385860026, -7.073240255, -7.156849954, -7.050874128, -7.38688776, -6.436771045, -7.007414812, -7.389937897, -7.493896312, -7.009746132, -7.435788206, -7.572439797, -6.549336514, -6.538039428, -7.472361323, -6.974624254, -6.93976168, -7.253350723, -7.011902941, -6.791593819, -8.532167193, -7.319763593, -7.617520767, -6.46672153, -6.206929974, -6.763790544, -6.498439891, -7.122626, -7.952557111, -8.007464246, -7.261301572, -6.629801407, -7.288331395, -6.956158592, -7.19751423, -7.390592395, -6.947188846, -7.711777844, -7.241328862, -6.547557952, -6.11657889, -6.155430557, -7.015022956, -8.233801448, -8.380310818, -7.083878495, -7.65479772, -6.622904526, -7.64891482, -8.984991505, -6.516702929, -6.768005569, -6.985962551, -7.031711662, -7.370431197, -6.983509715, -6.979023586, -7.979146484, -7.229851538, -7.503140251, -6.72219484, -9.533248638, -8.620497832, -6.145229003, -7.711527583, -10.701717822, -7.027629961, -7.601203312, -6.457396966, -7.42152676, -7.731057984, -6.613184437, -6.908426567, -6.811047549, -7.50825529, -7.804905359, -7.20704929, -6.738060082, -6.466308002, -6.951138888, -7.240270609, -7.020654247, -7.077945758, -7.403978606, -6.884471914, -8.526825824, -6.616238391, -7.054828969, -5.575090575, -6.033971726, -7.185671334, -6.566677171, -6.34929411, -7.095688563, -6.063842111, -7.027434905, -6.633982763, -7.254382193, -6.9953299, -5.905824446, -9.242700945, -6.758294257, -6.225319435, -6.82884337, -7.376779908, -7.668671076, -7.978606831, -8.728895731, -7.579758141, -7.417853451, -7.290247333, -7.176455712, -5.844342729, -7.129882311, -7.512768501, -7.250386357, -7.035437046, -7.061192321, -6.245251414, -5.88891333, -6.924373589, -7.489269552, -6.681024487, -6.695922813, -6.4779644, -7.087605251, -6.951314762, -7.107658367, -7.835940774, -7.394690509, -6.793177213, -7.191249222, -8.263104679, -8.421909687, -8.642566455, -8.634841107, -7.536808959, -7.785303426, -7.775192862, -8.82739024, -8.280975414, -7.554894216, -6.582835193, -6.717588334, -7.360740271, -5.821957246, -7.37562831, -5.961632302, -7.509604515, -6.490072681, -6.997742424, -5.977272731, -6.893645794, -7.456887547, -7.130180368, -8.007725459, -8.781554976, -7.857237149, -7.465075991, -7.65605051, -7.282202334, -7.44590839, -5.941012354, -6.089412888, -7.000889571, -7.115745782, -7.637116988]}], "model_type": "nb", "positive_class_label": "books_and_literature", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"months": [707, 2.682730778], "means": [676, 2.354987456], "leaves": [600, 3.372082887], "changing": [203, 3.211459693], "brand": [166, 3.572753583], "new": [737, 1.401585717], "novels": [748, 2.263420263], "ones": [760, 2.778421258], "self": [955, 2.40268233], "help": [494, 1.96702625], "worth": [1185, 2.729431871], "ve": [1132, 1.810753553], "gone": [462, 2.903026677], "following": [423, 2.609437912], "list": [620, 2.152326215], "titles": [1082, 3.418602903], "coming": [230, 2.588458122], "september": [962, 3.459094264], "december": [289, 3.402854546], "ll": [630, 2.068676186], "book": [160, 1.706665707], "fall": [386, 2.821162807], "season": [948, 3.591445716], "books": [161, 1.861294056], "girl": [453, 2.795299296], "social": [992, 2.551102335], "media": [678, 2.884246782], "local": [631, 3.090098836], "eventually": [367, 2.987026651], "turn": [1106, 2.521543533], "biggest": [152, 3.278151068], "good": [463, 1.672859671], "chance": [199, 3.101593216], "seen": [954, 2.554441237], "cover": [261, 3.013137795], "haven": [485, 3.142897022], "soon": [997, 2.8124671], "times": [1080, 2.040276712], "review": [914, 2.799563695], "received": [891, 3.095829511], "story": [1031, 1.925163905], "marriage": [664, 3.484200186], "told": [1084, 2.471059628], "husband": [514, 3.299057752], "wife": [1165, 3.050878123], "different": [308, 1.921605182], "relationship": [899, 2.856722109], "love": [644, 1.937720123], "prose": [851, 3.192289777], "complex": [240, 2.981885252], "characters": [206, 2.547774545], "simply": [979, 2.524785027], "reading": [882, 2.056406094], "rise": [921, 3.426571073], "set": [967, 1.92338296], "york": [1198, 2.561152671], "2008": [30, 3.434603244], "debut": [287, 3.372082887], "novel": [746, 2.102152115], "writer": [1188, 2.319990614], "title": [1081, 2.852207428], "modern": [703, 2.667636152], "day": [282, 1.831637847], "tale": [1053, 3.090098836], "tells": [1062, 2.992194621], "meaning": [675, 3.130920831], "protagonist": [852, 3.442700455], "make": [652, 1.582851865], "high": [497, 2.16131504], "society": [993, 2.961579985], "plot": [809, 3.198639005], "funny": [439, 3.372082887], "far": [392, 2.253469932], "critics": [268, 3.467393067], "latest": [592, 3.205028803], "author": [127, 2.097905824], "freedom": [432, 3.426571073], "young": [1199, 2.344088166], "woman": [1174, 2.574712201], "job": [562, 2.874987457], "sex": [970, 3.527496991], "travel": [1096, 3.173480445], "murder": [718, 3.450863765], "literary": [623, 2.50868162], "called": [178, 2.104282042], "today": [1083, 2.330629013], "2013": [35, 3.130920831], "read": [879, 1.759619254], "telling": [1061, 3.313242387], "going": [461, 2.060479419], "editor": [338, 3.07310126], "best": [148, 1.681204643], "lists": [622, 3.536385939], "don": [318, 1.645535567], "know": [581, 1.759619254], "does": [314, 1.937720123], "follows": [424, 3.173480445], "married": [665, 3.722285317], "mother": [710, 2.874987457], "act": [75, 3.192289777], "life": [611, 1.68540339], "gets": [451, 2.843238758], "way": [1152, 1.535871656], "magazine": [648, 3.231004289], "age": [88, 2.489693707], "old": [758, 1.993393126], "nearly": [731, 2.852207428], "star": [1017, 3.364535682], "amazon": [96, 3.450863765], "rating": [876, 4.996788272], "big": [151, 2.156810528], "magic": [649, 3.244249516], "nonfiction": [742, 3.711590028], "eat": [332, 3.545354609], "experience": [375, 2.317348605], "creative": [265, 3.285071511], "process": [841, 2.620095207], "including": [530, 2.128015626], "strange": [1032, 3.264452223], "close": [221, 2.656462851], "talk": [1054, 2.808147438], "subject": [1041, 3.034528985], "sure": [1046, 2.338682747], "couldn": [255, 3.285071511], "use": [1121, 1.888414362], "little": [625, 1.948609523], "days": [283, 2.495983036], "looking": [637, 2.253469932], "forward": [430, 3.034528985], "hear": [489, 3.161134609], "romance": [926, 3.690536619], "favorite": [395, 2.66017343], "answer": [103, 3.018442847], "march": [658, 3.327631125], "31": [52, 3.364535682], "wants": [1147, 3.142897022], "feeling": [401, 2.870389747], "feel": [400, 2.119319919], "literature": [624, 2.612977739], "points": [816, 3.045398657], "security": [952, 3.563536928], "sent": [960, 3.278151068], "click": [220, 3.459094264], "link": [618, 3.372082887], "begin": [144, 3.205028803], "10": [8, 1.95777549], "minutes": [697, 3.299057752], "check": [208, 2.745496473], "ancient": [100, 3.649714624], "epic": [356, 3.591445716], "home": [504, 2.28362297], "extra": [378, 3.299057752], "charles": [207, 3.334903884], "french": [433, 3.313242387], "revolution": [916, 3.777547996], "jane": [558, 3.426571073], "austen": [126, 4.229533119], "started": [1020, 2.574712201], "long": [633, 1.773307681], "russian": [935, 3.885436958], "classic": [218, 3.034528985], "stuff": [1039, 3.237604973], "george": [448, 3.050878123], "world": [1184, 1.604605761], "oh": [756, 3.434603244], "margaret": [659, 3.777547996], "genre": [447, 3.061927959], "science": [944, 2.733423892], "fiction": [407, 2.270948529], "fantasy": [391, 3.167288475], "lord": [639, 3.711590028], "series": [963, 2.319990614], "bit": [154, 2.588458122], "stories": [1030, 2.243617636], "william": [1168, 3.119086373], "plus": [810, 3.264452223], "color": [227, 3.563536928], "dead": [284, 2.870389747], "line": [616, 2.564525356], "great": [469, 1.737213537], "american": [98, 2.341381804], "works": [1183, 2.233861461], "period": [791, 3.084400815], "history": [501, 2.268432805], "think": [1074, 1.918059079], "thinking": [1075, 2.671388501], "sport": [1011, 4.426243414], "movie": [712, 3.492710875], "john": [563, 2.518312513], "conversation": [251, 3.30612492], "say": [939, 2.004909568], "james": [557, 2.816805501], "writing": [1191, 2.115000258], "true": [1099, 2.319990614], "david": [281, 2.799563695], "man": [656, 2.1726659], "thomas": [1077, 3.299057752], "pynchon": [862, 4.643966897], "happens": [482, 3.179710995], "lot": [643, 2.159060248], "understand": [1114, 2.709707366], "popular": [819, 2.652765989], "won": [1176, 2.368780779], "free": [431, 2.281075198], "country": [257, 2.649082744], "martin": [666, 3.450863765], "games": [442, 3.629911997], "better": [149, 2.032308542], "fan": [389, 3.442700455], "knows": [584, 3.192289777], "maybe": [672, 2.799563695], "culture": [270, 2.825539181], "recent": [892, 2.690364403], "try": [1104, 2.464924639], "club": [222, 3.554404444], "inspired": [540, 3.155018382], "community": [234, 3.095829511], "possible": [821, 2.489693707], "yes": [1197, 2.931874831], "lost": [642, 2.675154984], "start": [1019, 2.202795641], "forget": [428, 3.320410877], "non": [741, 2.816805501], "rest": [909, 2.803846357], "stop": [1028, 2.745496473], "china": [211, 3.836044202], "chinese": [212, 3.911079388], "highly": [499, 3.034528985], "kind": [578, 2.278533901], "turns": [1108, 3.113221254], "europe": [363, 3.75507514], "years": [1196, 1.657739108], "single": [980, 2.528037062], "bad": [136, 2.581561543], "talking": [1055, 3.090098836], "half": [477, 2.645413015], "live": [626, 2.431838915], "getting": [452, 2.492833427], "street": [1033, 3.271278188], "things": [1073, 1.844709928], "face": [381, 2.825539181], "22": [43, 3.023776193], "joseph": [564, 3.885436958], "come": [228, 2.076940696], "guide": [475, 3.107390333], "kill": [575, 3.450863765], "fi": [406, 3.911079388], "reach": [878, 3.067499004], "end": [347, 1.914525506], "section": [951, 3.250938504], "question": [865, 2.537857109], "reality": [886, 3.007860738], "break": [167, 2.936764816], "truly": [1100, 3.155018382], "person": [792, 2.265923393], "category": [192, 3.38735036], "add": [82, 2.761823367], "goal": [458, 3.450863765], "really": [887, 1.963315671], "probably": [838, 2.505491824], "originally": [770, 3.30612492], "appeared": [106, 3.372082887], "15": [14, 2.455792156], "listen": [621, 3.554404444], "important": [525, 2.117157756], "original": [769, 2.656462851], "version": [1134, 2.765947084], "early": [326, 2.391253634], "particular": [781, 2.757716585], "fact": [383, 2.24853165], "addition": [84, 3.148939336], "written": [1192, 2.231437217], "course": [259, 2.207512631], "career": [188, 3.061927959], "poetry": [814, 3.364535682], "essays": [360, 3.484200186], "letters": [607, 3.418602903], "learning": [598, 3.402854546], "comes": [229, 2.250997743], "topic": [1087, 3.669917331], "example": [372, 2.349522962], "daily": [275, 3.013137795], "learned": [597, 3.173480445], "writers": [1189, 2.471059628], "century": [196, 2.705808725], "member": [683, 3.434603244], "point": [815, 2.07901754], "wrote": [1194, 2.455792156], "successful": [1043, 3.061927959], "turned": [1107, 2.987026651], "attention": [122, 2.745496473], "philosophy": [796, 3.75507514], "lives": [628, 2.486563814], "house": [509, 2.43777365], "real": [885, 2.130201419], "estate": [362, 4.035377105], "clear": [219, 2.721495321], "look": [635, 2.032308542], "miles": [693, 3.812233554], "city": [216, 2.598892999], "brown": [172, 3.649714624], "sign": [975, 3.237604973], "feet": [403, 3.76624844], "mr": [714, 3.285071511], "appear": [105, 3.205028803], "limited": [615, 3.271278188], "led": [601, 3.07310126], "expect": [374, 3.237604973], "instead": [542, 2.346801872], "hand": [478, 2.537857109], "earth": [327, 3.434603244], "speak": [1003, 3.342229924], "tell": [1060, 2.455792156], "work": [1180, 1.644188765], "night": [740, 2.616530141], "usually": [1128, 2.761823367], "hours": [508, 2.951579902], "doesn": [315, 2.21701389], "matter": [671, 2.59192433], "ideas": [517, 2.898298535], "generally": [445, 3.155018382], "write": [1187, 2.377149028], "thoughts": [1079, 3.364535682], "second": [949, 2.145637227], "correct": [253, 3.937396697], "page": [774, 2.578131008], "deal": [285, 2.8124671], "certain": [197, 2.557791324], "short": [973, 2.156810528], "plan": [805, 3.07310126], "overall": [773, 3.484200186], "structure": [1035, 3.250938504], "away": [135, 2.229018836], "chapter": [204, 3.349610032], "finding": [416, 3.113221254], "happen": [480, 3.07310126], "general": [444, 2.847713039], "idea": [516, 2.314713557], "thing": [1072, 2.130201419], "happened": [481, 3.101593216], "entirely": [354, 3.130920831], "worked": [1181, 3.124986095], "hard": [484, 2.296460117], "considered": [244, 2.922166017], "able": [71, 2.349522962], "living": [629, 2.544457793], "enjoy": [352, 3.002611382], "doing": [317, 2.417154363], "sort": [998, 2.971681081], "english": [351, 2.717550543], "place": [803, 2.008778045], "did": [303, 2.032308542], "imagine": [522, 3.217932208], "didn": [304, 2.449749841], "actually": [80, 2.281075198], "later": [591, 2.205151355], "men": [687, 2.627263696], "got": [466, 2.443743817], "quite": [869, 2.595402594], "interested": [544, 3.35704501], "purpose": [861, 3.426571073], "working": [1182, 2.368780779], "moment": [704, 2.725455723], "human": [513, 2.374351824], "want": [1145, 1.799686247], "setting": [968, 3.084400815], "meeting": [682, 3.680173832], "influence": [536, 3.285071511], "scientific": [945, 3.978218691], "british": [169, 3.173480445], "medicine": [680, 4.050192191], "news": [738, 2.86581308], "outside": [772, 2.791053005], "tour": [1089, 4.096001727], "provides": [854, 3.29204018], "happy": [483, 3.039949052], "state": [1022, 2.741456064], "mind": [696, 2.327958784], "theme": [1069, 3.484200186], "various": [1131, 2.898298535], "ways": [1153, 2.461871202], "ago": [89, 2.678935707], "decided": [290, 3.084400815], "problem": [839, 2.725455723], "view": [1136, 2.616530141], "experiences": [376, 3.211459693], "jump": [568, 3.264452223], "search": [947, 2.656462851], "involved": [550, 3.278151068], "2007": [29, 3.418602903], "born": [162, 3.095829511], "june": [569, 3.395072406], "united": [1117, 2.961579985], "states": [1023, 2.870389747], "robert": [924, 3.090098836], "present": [829, 2.843238758], "movement": [711, 3.484200186], "military": [694, 4.096001727], "war": [1148, 2.616530141], "jack": [556, 3.872858175], "ii": [519, 3.545354609], "brother": [170, 3.610493911], "website": [1156, 3.217932208], "known": [583, 2.304242257], "major": [651, 2.709707366], "awards": [134, 3.885436958], "hugo": [512, 4.566005356], "award": [133, 3.179710995], "grand": [468, 3.680173832], "master": [668, 3.320410877], "2012": [34, 3.167288475], "year": [1195, 1.798115155], "related": [898, 2.931874831], "trilogy": [1098, 3.75507514], "collection": [225, 2.847713039], "references": [897, 3.285071511], "external": [377, 3.364535682], "links": [619, 3.113221254], "edit": [336, 3.402854546], "family": [387, 2.317348605], "lived": [627, 3.29204018], "child": [209, 2.856722109], "mary": [667, 3.410697724], "university": [1119, 2.879606402], "immediately": [523, 3.250938504], "army": [114, 3.836044202], "heart": [491, 2.630867304], "return": [913, 2.992194621], "professor": [846, 3.35704501], "technology": [1059, 3.237604973], "machine": [647, 3.610493911], "11": [10, 2.483443687], "2009": [31, 3.334903884], "2010": [32, 3.35704501], "12": [11, 2.443743817], "13": [12, 2.690364403], "published": [857, 2.255948248], "sold": [995, 3.372082887], "based": [137, 2.255948248], "adult": [86, 3.536385939], "14": [13, 2.725455723], "famous": [388, 3.050878123], "press": [831, 3.056387779], "universe": [1118, 3.65976496], "august": [125, 3.395072406], "february": [399, 3.639764293], "college": [226, 3.320410877], "class": [217, 2.912550558], "word": [1177, 2.774245887], "market": [661, 2.976770151], "amazing": [95, 3.379687487], "meet": [681, 2.907777279], "produced": [842, 3.527496991], "film": [412, 3.161134609], "low": [646, 2.931874831], "released": [901, 3.211459693], "1990": [19, 4.065230068], "product": [843, 3.205028803], "saying": [940, 2.884246782], "brain": [165, 3.563536928], "16": [15, 2.686540306], "2016": [38, 3.050878123], "interview": [548, 3.173480445], "morning": [709, 3.271278188], "poem": [811, 4.035377105], "17": [16, 2.884246782], "america": [97, 2.951579902], "past": [785, 2.354987456], "president": [830, 3.484200186], "citation": [215, 4.303641091], "needed": [734, 2.825539181], "18": [17, 2.821162807], "2005": [27, 3.467393067], "19": [18, 2.912550558], "hero": [496, 3.582055976], "20": [21, 2.304242257], "21": [42, 3.007860738], "2003": [25, 3.690536619], "2004": [26, 3.60092446], "23": [44, 3.179710995], "death": [286, 2.521543533], "october": [752, 3.155018382], "january": [559, 3.299057752], "2001": [23, 3.777547996], "24": [45, 2.931874831], "space": [1002, 2.782614136], "tool": [1086, 3.467393067], "uk": [1113, 3.410697724], "2000": [22, 3.680173832], "25": [46, 2.791053005], "2002": [24, 3.788976691], "winner": [1170, 3.501294619], "26": [47, 3.217932208], "27": [48, 3.244249516], "2014": [36, 3.045398657], "1999": [20, 4.050192191], "parts": [783, 3.155018382], "direct": [311, 3.30612492], "appears": [107, 3.334903884], "2011": [33, 3.320410877], "dreams": [322, 3.459094264], "2006": [28, 3.649714624], "study": [1038, 2.997389438], "body": [159, 2.709707366], "future": [440, 2.534573033], "mark": [660, 3.056387779], "edition": [337, 3.410697724], "la": [585, 3.722285317], "poems": [812, 3.722285317], "internet": [547, 3.161134609], "database": [278, 4.1944418], "retrieved": [912, 3.836044202], "04": [4, 4.61729865], "publication": [856, 3.426571073], "information": [538, 2.682730778], "data": [277, 3.090098836], "level": [608, 2.667636152], "image": [520, 3.198639005], "archived": [111, 4.177347366], "08": [7, 4.404737208], "03": [3, 4.493684694], "org": [768, 4.065230068], "07": [6, 4.342861805], "according": [73, 2.638113712], "note": [744, 2.7536266], "studies": [1037, 3.649714624], "art": [115, 2.729431871], "used": [1122, 2.016560185], "care": [187, 2.912550558], "michael": [691, 3.142897022], "tech": [1058, 3.992204933], "05": [5, 4.342861805], "02": [2, 4.566005356], "words": [1179, 2.467987429], "blog": [156, 3.217932208], "complete": [238, 2.838784408], "library": [610, 3.056387779], "authors": [128, 2.7536266], "google": [465, 3.518686362], "describes": [295, 3.379687487], "secret": [950, 2.86581308], "walking": [1143, 3.65976496], "west": [1161, 3.459094264], "lights": [613, 4.247551625], "german": [449, 3.649714624], "battery": [139, 4.671365872], "north": [743, 3.501294619], "center": [194, 3.224446889], "company": [236, 2.686540306], "black": [155, 2.709707366], "white": [1163, 2.59192433], "spirit": [1010, 3.639764293], "lose": [640, 3.237604973], "saw": [938, 2.997389438], "poet": [813, 3.442700455], "order": [767, 2.458827059], "beautiful": [141, 2.893592644], "july": [567, 3.342229924], "november": [749, 3.501294619], "pages": [775, 2.791053005], "attempt": [121, 3.320410877], "open": [762, 2.458827059], "despite": [298, 2.816805501], "final": [413, 2.936764816], "volume": [1139, 3.372082887], "building": [174, 3.002611382], "themes": [1070, 3.244249516], "essential": [361, 3.349610032], "need": [733, 1.874762273], "current": [271, 2.907777279], "sense": [959, 2.379954079], "took": [1085, 2.609437912], "came": [180, 2.537857109], "translation": [1095, 3.722285317], "public": [855, 2.578131008], "thought": [1078, 2.288738071], "bring": [168, 2.922166017], "play": [807, 2.733423892], "fully": [436, 3.119086373], "left": [603, 2.440754278], "spent": [1009, 2.907777279], "game": [441, 2.893592644], "friend": [434, 2.682730778], "right": [919, 1.919830559], "interesting": [545, 2.898298535], "change": [200, 2.299047441], "position": [820, 3.29204018], "head": [487, 2.598892999], "hope": [505, 2.757716585], "seeing": [953, 3.271278188], "case": [190, 2.354987456], "form": [429, 2.443743817], "role": [925, 3.050878123], "reader": [880, 2.557791324], "wisdom": [1172, 3.964425369], "begins": [146, 3.257672536], "beauty": [142, 3.442700455], "gives": [455, 2.8124671], "calls": [179, 3.320410877], "model": [701, 3.119086373], "shows": [974, 2.912550558], "lead": [595, 3.023776193], "deep": [292, 2.922166017], "types": [1112, 3.237604973], "readers": [881, 2.455792156], "letter": [606, 3.509952682], "40": [60, 3.013137795], "having": [486, 2.18877672], "added": [83, 2.931874831], "school": [943, 2.630867304], "pretty": [832, 2.745496473], "hands": [479, 3.211459693], "especially": [358, 2.489693707], "male": [655, 3.475761317], "particularly": [782, 2.847713039], "felt": [404, 2.749553274], "loved": [645, 3.107390333], "entire": [353, 2.7536266], "article": [116, 2.745496473], "green": [471, 3.342229924], "stars": [1018, 3.92415147], "contemporary": [245, 3.090098836], "eye": [379, 3.244249516], "language": [587, 2.761823367], "moving": [713, 2.951579902], "easy": [331, 2.467987429], "large": [588, 2.612977739], "killed": [576, 3.582055976], "code": [223, 3.459094264], "perspective": [794, 3.231004289], "god": [459, 3.299057752], "events": [366, 2.971681081], "looked": [636, 3.30612492], "test": [1066, 3.364535682], "party": [784, 3.173480445], "rich": [917, 3.224446889], "offers": [754, 3.084400815], "term": [1064, 2.931874831], "children": [210, 2.623673028], "leave": [599, 2.829934793], "reasons": [890, 3.045398657], "hold": [503, 3.07310126], "isn": [552, 2.344088166], "quick": [867, 3.29204018], "red": [896, 3.185980608], "trying": [1105, 2.464924639], "special": [1005, 2.976770151], "writes": [1190, 2.987026651], "growing": [473, 3.231004289], "pick": [800, 3.061927959], "release": [900, 3.379687487], "common": [233, 2.609437912], "goodreads": [464, 4.44822232], "users": [1125, 3.410697724], "numbers": [751, 3.536385939], "takes": [1051, 2.346801872], "account": [74, 2.981885252], "small": [989, 2.14120263], "given": [454, 2.408446035], "2018": [40, 3.271278188], "likely": [614, 2.729431871], "heard": [490, 3.095829511], "picture": [801, 3.475761317], "finally": [414, 2.721495321], "publishing": [860, 3.237604973], "continues": [249, 3.395072406], "marketing": [662, 3.872858175], "went": [1160, 2.678935707], "making": [654, 2.130201419], "actual": [79, 3.285071511], "wait": [1141, 3.320410877], "middle": [692, 2.956567444], "older": [759, 3.161134609], "wanted": [1146, 2.645413015], "focus": [420, 2.838784408], "hit": [502, 3.136890998], "comments": [232, 3.185980608], "share": [971, 2.717550543], "build": [173, 2.941678831], "terms": [1065, 2.91734673], "service": [965, 3.045398657], "novelist": [747, 3.056387779], "nabokov": [722, 4.144010946], "father": [394, 2.907777279], "uses": [1126, 2.888908795], "april": [110, 3.410697724], "died": [306, 3.257672536], "memory": [686, 3.29204018], "international": [546, 3.211459693], "began": [143, 2.825539181], "100": [9, 2.829934793], "memoir": [685, 3.563536928], "publisher": [858, 3.484200186], "greatest": [470, 3.205028803], "national": [727, 3.045398657], "seven": [969, 3.185980608], "problems": [840, 3.113221254], "russia": [934, 4.111750084], "37": [58, 3.690536619], "women": [1175, 2.518312513], "notes": [745, 3.161134609], "style": [1040, 2.733423892], "articles": [117, 3.649714624], "law": [593, 3.299057752], "included": [528, 3.002611382], "justice": [570, 3.836044202], "45": [62, 3.610493911], "rand": [873, 5.364513052], "source": [1000, 3.034528985], "near": [730, 3.101593216], "south": [1001, 3.442700455], "perfect": [789, 2.821162807], "details": [299, 3.130920831], "ability": [70, 2.870389747], "critical": [267, 3.372082887], "event": [365, 3.334903884], "son": [996, 3.090098836], "government": [467, 3.418602903], "england": [350, 3.518686362], "results": [911, 3.018442847], "taken": [1050, 2.741456064], "result": [910, 2.856722109], "followed": [422, 3.185980608], "european": [364, 3.76624844], "sister": [981, 3.484200186], "income": [531, 3.950819717], "gave": [443, 2.987026651], "knew": [580, 3.067499004], "parents": [779, 3.299057752], "provide": [853, 2.91734673], "met": [689, 3.250938504], "environment": [355, 3.591445716], "command": [231, 4.160540248], "group": [472, 2.588458122], "speaking": [1004, 3.395072406], "germany": [450, 3.964425369], "en": [346, 4.820897606], "visit": [1137, 3.38735036], "paris": [780, 3.733096233], "board": [158, 3.800537514], "natural": [728, 3.192289777], "created": [263, 2.7536266], "unique": [1116, 3.185980608], "students": [1036, 3.563536928], "court": [260, 3.860435655], "development": [302, 3.148939336], "summer": [1044, 3.271278188], "business": [176, 2.737431914], "legal": [604, 3.711590028], "research": [907, 2.870389747], "lines": [617, 3.257672536], "financial": [415, 3.484200186], "success": [1042, 2.903026677], "remains": [902, 3.090098836], "28": [49, 3.205028803], "asked": [119, 2.682730778], "29": [50, 3.349610032], "30": [51, 2.537857109], "access": [72, 3.023776193], "die": [305, 3.426571073], "issue": [553, 3.211459693], "32": [53, 3.402854546], "rights": [920, 3.582055976], "000": [0, 2.623673028], "33": [54, 3.629911997], "34": [55, 3.629911997], "35": [56, 3.327631125], "50": [63, 2.808147438], "36": [57, 3.545354609], "scale": [941, 3.545354609], "translated": [1094, 3.733096233], "evidence": [368, 3.649714624], "spend": [1008, 3.161134609], "individual": [534, 3.056387779], "text": [1067, 3.299057752], "identity": [518, 3.442700455], "makes": [653, 2.066620687], "character": [205, 2.605910572], "king": [579, 2.997389438], "queen": [864, 4.065230068], "response": [908, 3.402854546], "message": [688, 3.629911997], "39": [59, 3.744025304], "verse": [1133, 4.541312743], "developed": [301, 3.244249516], "simple": [978, 2.694203179], "application": [108, 3.885436958], "higher": [498, 3.023776193], "understanding": [1115, 3.130920831], "41": [61, 3.777547996], "piece": [802, 3.056387779], "narrative": [725, 3.056387779], "described": [294, 3.018442847], "number": [750, 2.299047441], "shared": [972, 3.237604973], "cases": [191, 3.29204018], "similar": [977, 2.675154984], "main": [650, 2.709707366], "starting": [1021, 3.039949052], "drive": [323, 3.395072406], "car": [185, 3.313242387], "sites": [983, 3.848165563], "area": [112, 3.231004289], "named": [723, 3.056387779], "names": [724, 3.285071511], "stephen": [1027, 3.313242387], "essay": [359, 3.450863765], "traditional": [1091, 3.320410877], "week": [1157, 2.612977739], "fans": [390, 3.442700455], "tried": [1097, 3.250938504], "value": [1129, 3.013137795], "examples": [373, 3.372082887], "post": [822, 2.440754278], "creating": [264, 3.119086373], "completely": [239, 2.856722109], "capital": [184, 3.824068011], "strong": [1034, 2.838784408], "power": [825, 2.461871202], "political": [818, 3.07310126], "continue": [248, 3.045398657], "land": [586, 3.231004289], "images": [521, 3.572753583], "friends": [435, 2.534573033], "60": [65, 3.271278188], "reason": [889, 2.645413015], "impact": [524, 3.410697724], "2017": [39, 3.205028803], "dream": [321, 3.264452223], "changed": [201, 3.078735078], "personal": [793, 2.564525356], "female": [405, 3.198639005], "video": [1135, 3.179710995], "truth": [1103, 3.013137795], "boy": [164, 3.155018382], "rushdie": [933, 4.9226803], "prize": [837, 3.217932208], "winning": [1171, 3.278151068], "80": [66, 3.475761317], "date": [279, 3.205028803], "earlier": [325, 2.936764816], "places": [804, 3.084400815], "meant": [677, 3.124986095], "ed": [335, 3.964425369], "2019": [41, 3.299057752], "isbn": [551, 3.92415147], "978": [68, 4.265900764], "2015": [37, 3.095829511], "music": [719, 3.264452223], "pp": [827, 4.160540248], "mrs": [715, 4.035377105], "type": [1111, 2.725455723], "design": [296, 3.090098836], "blood": [157, 3.299057752], "theory": [1071, 3.572753583], "evolution": [370, 4.247551625], "london": [632, 3.161134609], "road": [923, 2.981885252], "digital": [310, 3.629911997], "mystery": [721, 3.30612492], "field": [408, 3.161134609], "publishers": [859, 3.701007918], "le": [594, 3.582055976], "web": [1155, 3.217932208], "peter": [795, 3.501294619], "feature": [397, 3.185980608], "inside": [539, 2.774245887], "site": [982, 3.045398657], "online": [761, 2.8124671], "journal": [565, 3.395072406], "episode": [357, 4.020778305], "killing": [577, 3.777547996], "wrong": [1193, 2.808147438], "dark": [276, 2.829934793], "status": [1024, 3.582055976], "projects": [849, 3.680173832], "taking": [1052, 2.667636152], "figure": [410, 3.090098836], "previous": [833, 3.018442847], "medical": [679, 3.937396697], "deeply": [293, 3.224446889], "tv": [1109, 3.563536928], "consider": [243, 2.941678831], "asks": [120, 3.610493911], "allowed": [93, 3.285071511], "couple": [258, 2.961579985], "scene": [942, 3.285071511], "action": [76, 3.061927959], "room": [927, 2.847713039], "finds": [417, 3.349610032], "send": [958, 3.545354609], "crime": [266, 3.38735036], "office": [755, 3.38735036], "needs": [735, 2.765947084], "feels": [402, 2.987026651], "phone": [797, 3.410697724], "tend": [1063, 3.334903884], "performance": [790, 3.327631125], "emotional": [345, 3.410697724], "physical": [799, 3.101593216], "energy": [348, 3.467393067], "ian": [515, 3.701007918], "mcewan": [673, 4.1944418], "follow": [421, 2.554441237], "facebook": [382, 3.257672536], "twitter": [1110, 3.095829511], "recommend": [894, 3.379687487], "paul": [786, 3.459094264], "win": [1169, 3.418602903], "month": [706, 2.847713039], "opportunity": [764, 3.554404444], "buy": [177, 2.888908795], "independent": [533, 3.554404444], "customer": [273, 3.872858175], "competition": [237, 3.872858175], "advice": [87, 3.459094264], "includes": [529, 2.91734673], "skin": [987, 3.898175983], "multiple": [716, 2.997389438], "reviews": [915, 3.410697724], "quality": [863, 3.148939336], "force": [426, 3.264452223], "necessary": [732, 3.349610032], "goes": [460, 2.729431871], "light": [612, 2.678935707], "approach": [109, 3.095829511], "certainly": [198, 2.992194621], "cut": [274, 3.185980608], "introduction": [549, 3.518686362], "fight": [409, 3.327631125], "huge": [511, 3.084400815], "built": [175, 3.056387779], "daughter": [280, 3.349610032], "difficult": [309, 2.791053005], "brought": [171, 3.173480445], "paid": [776, 3.484200186], "wise": [1173, 3.992204933], "cultural": [269, 3.442700455], "recently": [893, 2.581561543], "option": [765, 3.402854546], "historical": [500, 3.090098836], "additional": [85, 3.434603244], "japan": [560, 4.050192191], "create": [262, 2.534573033], "food": [425, 3.07310126], "box": [163, 3.459094264], "significant": [976, 3.30612492], "allows": [94, 3.078735078], "failure": [385, 3.680173832], "moral": [708, 3.777547996], "larger": [589, 3.450863765], "material": [670, 3.410697724], "easier": [328, 3.271278188], "easily": [329, 2.912550558], "situation": [984, 3.38735036], "ask": [118, 2.757716585], "values": [1130, 3.649714624], "standard": [1016, 3.342229924], "held": [493, 3.285071511], "let": [605, 2.163574928], "nice": [739, 3.402854546], "loss": [641, 3.434603244], "beginning": [145, 3.002611382], "longer": [634, 2.757716585], "99": [69, 3.872858175], "reads": [883, 3.379687487], "run": [931, 2.623673028], "narrator": [726, 3.434603244], "dog": [316, 3.788976691], "emma": [344, 4.470695176], "east": [330, 3.620155822], "range": [874, 3.002611382], "detective": [300, 3.937396697], "potential": [824, 3.211459693], "richard": [918, 3.410697724], "eyes": [380, 2.981885252], "water": [1151, 3.095829511], "step": [1026, 3.205028803], "money": [705, 2.694203179], "dr": [320, 3.824068011], "features": [398, 2.884246782], "fit": [419, 3.264452223], "posts": [823, 3.610493911], "rules": [930, 3.231004289], "hub": [510, 4.303641091], "miss": [698, 3.492710875], "support": [1045, 2.721495321], "cost": [254, 3.173480445], "paper": [778, 3.257672536], "door": [319, 3.467393067], "questions": [866, 2.765947084], "fast": [393, 3.034528985], "sound": [999, 3.349610032], "failed": [384, 3.518686362], "looks": [638, 2.941678831], "late": [590, 2.717550543], "believe": [147, 2.678935707], "choose": [214, 3.023776193], "key": [572, 2.898298535], "concept": [242, 3.372082887], "ready": [884, 3.161134609], "decades": [288, 3.173480445], "rule": [929, 3.450863765], "watch": [1150, 3.107390333], "remember": [903, 2.709707366], "table": [1049, 3.364535682], "offer": [753, 2.907777279], "smart": [990, 3.434603244], "ad": [81, 4.229533119], "powerful": [826, 2.870389747], "exactly": [371, 2.884246782], "difference": [307, 3.161134609], "learn": [596, 2.634483944], "pain": [777, 3.475761317], "trust": [1102, 3.434603244], "rate": [875, 3.492710875], "01": [1, 4.284592897], "smith": [991, 3.426571073], "race": [870, 3.450863765], "journey": [566, 3.198639005], "voice": [1138, 3.018442847], "fun": [437, 2.987026651], "property": [850, 3.872858175], "running": [932, 3.023776193], "decision": [291, 3.313242387], "changes": [202, 2.997389438], "wall": [1144, 3.418602903], "cause": [193, 3.342229924], "avoid": [132, 3.192289777], "required": [906, 3.29204018], "control": [250, 2.7536266], "price": [834, 3.231004289], "available": [129, 2.678935707], "copy": [252, 3.545354609], "weight": [1159, 3.442700455], "fear": [396, 3.113221254], "knowledge": [582, 3.179710995], "oscar": [771, 4.265900764], "include": [527, 2.698056748], "intelligent": [543, 3.911079388], "generation": [446, 3.285071511], "project": [848, 3.034528985], "audiobooks": [124, 4.671365872], "stand": [1015, 3.039949052], "analysis": [99, 3.669917331], "kids": [574, 3.459094264], "fine": [418, 3.313242387], "choice": [213, 2.966617779], "town": [1090, 3.313242387], "helps": [495, 3.148939336], "campaign": [182, 4.020778305], "central": [195, 3.148939336], "horror": [506, 3.733096233], "elements": [343, 3.459094264], "improve": [526, 3.364535682], "update": [1120, 3.701007918], "quickly": [868, 2.936764816], "issues": [554, 3.113221254], "nature": [729, 2.838784408], "currently": [272, 3.278151068], "program": [847, 3.554404444], "report": [904, 3.418602903], "animals": [102, 3.992204933], "context": [247, 3.722285317], "sept": [961, 5.689935453], "file": [411, 3.872858175], "team": [1057, 3.029138136], "active": [78, 3.800537514], "useful": [1123, 3.395072406], "sell": [956, 3.554404444], "mean": [674, 2.66017343], "walk": [1142, 3.410697724], "training": [1093, 3.800537514], "forces": [427, 3.722285317], "lee": [602, 3.76624844], "95": [67, 3.992204933], "cold": [224, 3.271278188], "weeks": [1158, 3.257672536], "battle": [140, 3.777547996], "wide": [1164, 3.205028803], "air": [90, 3.29204018], "instance": [541, 3.442700455], "content": [246, 3.142897022], "giving": [456, 3.078735078], "sales": [936, 3.60092446], "user": [1124, 3.563536928], "levels": [609, 3.690536619], "hour": [507, 3.299057752], "total": [1088, 3.30612492], "switch": [1047, 4.006389568], "wasn": [1149, 2.8124671], "production": [844, 3.509952682], "slow": [988, 3.379687487], "al": [91, 4.323059177], "global": [457, 3.554404444], "sports": [1012, 3.964425369], "health": [488, 3.264452223], "network": [736, 3.450863765], "murakami": [717, 4.050192191], "record": [895, 3.536385939], "million": [695, 3.142897022], "opening": [763, 3.349610032], "japanese": [561, 3.812233554], "roth": [928, 4.404737208], "computer": [241, 3.582055976], "audience": [123, 3.450863765], "stage": [1014, 3.418602903], "train": [1092, 3.733096233], "wikipedia": [1167, 5.310445831], "raised": [872, 3.629911997], "effects": [341, 3.610493911], "private": [836, 3.379687487], "education": [339, 3.402854546], "thanks": [1068, 3.320410877], "kaladin": [571, 6.175443268], "pay": [787, 3.107390333], "wouldn": [1186, 3.264452223], "options": [766, 3.29204018], "wealth": [1154, 4.08049754], "save": [937, 3.067499004], "size": [985, 3.35704501], "thinks": [1076, 3.563536928], "aren": [113, 2.971681081], "directly": [312, 3.095829511], "growth": [474, 3.610493911], "egypt": [342, 5.259152537], "effect": [340, 3.078735078], "average": [130, 3.459094264], "selling": [957, 3.35704501], "stay": [1025, 2.931874831], "ivan": [555, 5.364513052], "disease": [313, 4.1944418], "score": [946, 4.493684694], "voted": [1140, 4.996788272], "members": [684, 3.285071511], "policy": [817, 3.836044202], "risk": [922, 3.591445716], "oil": [757, 4.211833542], "industry": [535, 3.426571073], "countries": [256, 3.65976496], "canon": [183, 4.44822232], "markets": [663, 4.177347366], "engine": [349, 4.035377105], "speed": [1007, 3.518686362], "using": [1127, 2.301641476], "cars": [189, 4.006389568], "guin": [476, 4.247551625], "wheel": [1162, 4.111750084], "request": [905, 4.160540248], "ratings": [877, 4.699536749], "evil": [369, 3.76624844], "software": [994, 3.872858175], "specific": [1006, 2.981885252], "allow": [92, 3.039949052], "skills": [986, 3.860435655], "store": [1029, 3.395072406], "photo": [798, 3.788976691], "method": [690, 3.733096233], "animal": [101, 3.836044202], "economic": [333, 3.788976691], "drop": [324, 3.610493911], "mode": [700, 3.964425369], "practice": [828, 3.372082887], "basic": [138, 3.124986095], "players": [808, 4.160540248], "rear": [888, 4.591323164], "function": [438, 3.60092446], "models": [702, 3.937396697], "management": [657, 3.649714624], "products": [845, 3.38735036], "economy": [334, 4.160540248], "increase": [532, 3.434603244], "racing": [871, 4.61729865], "info": [537, 4.493684694], "services": [966, 3.410697724], "designed": [297, 3.264452223], "500": [64, 3.572753583], "companies": [235, 3.492710875], "percent": [788, 3.563536928], "card": [186, 3.978218691], "trump": [1101, 4.470695176], "mat": [669, 5.689935453], "app": [104, 3.777547996], "actions": [77, 3.701007918], "prices": [835, 4.160540248], "wordpress": [1178, 4.541312743], "bike": [153, 4.591323164], "platform": [806, 3.65976496], "wiki": [1166, 5.482296088], "mobile": [699, 4.08049754], "systems": [1048, 3.554404444], "hegel": [492, 6.308974661], "kickstarter": [573, 5.546834609], "tax": [1056, 4.211833542], "camera": [181, 4.177347366], "avg": [131, 6.175443268], "server": [964, 4.758377249], "bicycle": [150, 5.482296088], "mysql": [720, 6.057660233], "sql": [1013, 5.421671466]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_business_and_industrial.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_business_and_industrial.json deleted file mode 100644 index e4716e9..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_business_and_industrial.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.681847625, "feature_log_probs": [-6.932665847, -7.056516643, -7.384275243, -6.339424771, -6.806233371, -6.99334063, -6.864802252, -7.318993548, -7.195104473, -6.918148269, -7.186464614, -7.256473392, -7.144080079, -7.507340907, -7.019844543, -7.501159241, -7.389145781, -7.535225868, -7.828786612, -7.595799363, -7.353302454, -7.539607728, -7.265040122, -7.835733153, -7.217179102, -7.17469586, -6.958450178, -7.178872448, -7.630935992, -7.592370587, -7.734212982, -7.541847707, -7.60410347, -7.813982501, -7.836799239, -7.422184981, -7.863440625, -7.044921233, -7.345141183, -6.727628173, -6.053542039, -7.061999023, -7.128110055, -7.901673834, -7.213374151, -7.427063937, -6.846700924, -6.38745069, -7.040151976, -7.042349882, -7.364756688, -6.943248539, -6.884129426, -7.242644677, -7.793277042, -6.852105452, -7.135814105, -6.530620493, -6.560165612, -6.501586287, -8.196356375, -6.639448655, -6.408782279, -6.704689799, -6.049336864, -6.997182236, -6.757275736, -5.78127189, -6.035822341, -7.287260333, -6.663137409, -6.40292274, -7.771327932, -7.845756966, -6.722363464, -7.586966736, -7.631190142, -7.680166185, -6.901264307, -6.717266428, -6.513997264, -7.235072962, -7.389041324, -7.81266809, -6.51410271, -7.680875996, -6.861924656, -7.013829833, -6.015289496, -7.097742016, -7.175710881, -7.324265593, -6.444343474, -6.509398648, -6.124592029, -11.430327165, -7.297890823, -9.614137276, -7.447565782, -6.527130145, -8.054359257, -7.413804092, -8.201894157, -7.261453017, -6.812953282, -7.162100173, -6.522587768, -6.947136895, -6.581230661, -5.503344658, -6.624760353, -7.829403711, -6.82722938, -6.727936915, -7.876047745, -10.807381121, -11.68031896, -9.545939148, -7.903943329, -6.41568774, -6.827277528, -6.481557696, -7.458096081, -7.167950193, -7.436439931, -6.39135399, -7.308451549, -6.601059692, -6.805661631, -9.258375235, -7.207572008, -7.193311363, -7.458275171, -7.78188201, -6.935494456, -7.46609838, -6.39790757, -6.265123532, -7.12943271, -7.368581671, -5.785631247, -5.648230117, -5.797368941, -6.211967891, -6.333908353, -7.194481752, -5.819003055, -6.071782105, -7.121251819, -7.137082702, -6.15422325, -7.089353268, -7.394739112, -7.036946741, -7.04124545, -5.694535387, -5.466269224, -7.476605677, -7.029847712, -7.995308292, -6.903465356, -7.117562397, -7.408874786, -6.68848385, -7.063261933, -6.543010464, -6.897310456, -7.707653856, -6.674121504, -7.238276366, -7.398229376, -7.182168316, -7.184760456, -7.000513369, -7.207415752, -6.901860947, -6.55191292, -7.355252646, -7.119579838, -8.183260398, -7.193030465, -5.551589363, -6.489828212, -6.811764243, -5.515393976, -6.85750112, -7.30774265, -5.064088104, -5.519554183, -3.877681172, -4.266273558, -5.194146078, -6.571572557, -6.894521351, -7.062297765, -6.294406714, -6.129551106, -6.479853365, -6.62828967, -7.367633914, -6.334260951, -7.087737301, -7.531160213, -6.666318027, -6.270060434, -6.781348383, -7.061723964, -7.157574413, -6.634583275, -6.480657807, -7.210273983, -7.209818216, -7.482589304, -5.942300503, -7.37187166, -7.019679183, -7.143607667, -6.264972925, -6.064207485, -6.919182068, -6.265916218, -6.807351346, -6.415896599, -6.941099979, -7.1440617, -6.386431991, -7.25960689, -6.677163644, -7.429055937, -7.110507288, -7.226360594, -7.060838679, -6.675210694, -7.142269909, -6.567068404, -7.801249344, -7.026976993, -6.598005152, -7.079880106, -6.895978565, -7.321618995, -6.375373748, -6.316231002, -7.255981082, -6.20398663, -7.228462655, -6.839171367, -6.61013703, -7.290103522, -10.094902535, -6.445373932, -6.513784551, -7.396095221, -5.865341374, -7.049359415, -6.634729205, -6.610355342, -6.879767958, -7.542703696, -6.57432709, -7.127923917, -7.77485771, -6.780631266, -7.013060065, -7.520497094, -7.504020199, -6.598655803, -6.740486089, -6.868354246, -6.31514361, -8.028636958, -6.778063032, -7.136727057, -7.032585851, -5.656754145, -6.29548275, -7.557024241, -7.310875768, -7.456816678, -6.794107031, -7.074264085, -7.158223304, -6.018309535, -9.435876569, -7.378042701, -6.886042726, -6.970933417, -6.528583066, -6.497807837, -6.905591503, -6.951534318, -8.28563427, -9.432011771, -7.236973979, -7.6498376, -7.538055933, -7.393524225, -7.380567027, -6.896192839, -7.45056669, -7.049606159, -7.590916462, -6.695124169, -6.45886855, -6.621015449, -7.629271441, -7.869569258, -6.449215311, -6.668803804, -6.507893393, -7.50858624, -7.048865577, -6.322703753, -7.597969284, -5.373329539, -7.517926615, -7.144408603, -7.262033615, -7.064164807, -7.132781269, -7.025938275, -5.52062904, -6.632369764, -7.852329157, -8.148160458, -6.248475181, -7.177668344, -6.29557301, -7.056369946, -7.268802162, -7.242288246, -6.350778267, -7.955865028, -7.632111882, -8.121242972, -7.29791795, -7.642191653, -6.234659158, -7.525650466, -7.798685233, -7.079829586, -6.491563659, -6.657625247, -6.790874536, -7.612490631, -6.990597327, -6.702331735, -7.164166726, -5.043143589, -7.337897405, -5.6126953, -7.496544982, -6.841021606, -5.973521991, -6.136625094, -7.463912663, -6.428549008, -6.976694363, -6.830569968, -6.724576393, -6.466427406, -7.990177325, -8.84890248, -6.995927396, -7.252926305, -6.96736154, -7.249651293, -6.865056571, -6.917327096, -6.316907025, -6.899223442, -5.419009412, -6.785235937, -7.399873068, -6.460493377, -7.087407033, -6.646765801, -6.122944412, -7.213020247, -7.207919336, -9.465848634, -7.03035891, -6.936759904, -7.167346474, -7.278222839, -6.430316716, -6.306573266, -7.988356824, -8.375182627, -8.581020268, -7.127180207, -7.5707251, -6.814967958, -7.678753618, -7.870566806, -6.481474702, -7.509528207, -7.316398061, -6.318276157, -6.471946946, -7.353367578, -7.116777893, -6.003309438, -6.691651463, -7.485822316, -6.530136548, -7.114335643, -7.598570518, -6.498542205, -8.004837527, -7.062605615, -7.359271424, -6.837180272, -7.191798677, -7.279583547, -6.161064258, -6.858715888, -6.989756841, -6.852465406, -5.752693966, -7.132812982, -6.946923384, -6.635093921, -7.509017971, -7.47778928, -6.200738929, -6.151480227, -6.3774742, -7.608894894, -7.601222737, -7.257642877, -7.342100279, -6.615864321, -7.310474089, -9.920982794, -5.941743942, -11.627575635, -7.275313561, -7.314084316, -6.203572114, -6.761032375, -7.472052362, -7.683316012, -7.248014994, -5.966775152, -7.032262587, -7.774602898, -7.359617487, -5.648255029, -7.153582202, -6.892301527, -6.952399129, -6.138376283, -4.814177273, -7.307321672, -7.149456745, -7.502625641, -5.682455447, -6.950513744, -6.511963722, -7.370822417, -6.773832231, -5.513240496, -7.971074897, -6.386494968, -6.375689062, -6.53084511, -7.092562975, -7.196946924, -5.373246538, -7.001962629, -6.02113741, -6.038663334, -6.633479963, -6.789567897, -7.205921778, -6.994204892, -7.607613524, -7.271358638, -6.584872964, -7.802238206, -6.773778265, -6.157172421, -6.827359918, -6.147153386, -7.217777528, -6.695648927, -6.870653633, -5.667192608, -6.28241671, -6.968826883, -7.31249013, -6.848108659, -7.320415817, -6.447284487, -6.407507574, -7.059882512, -6.962357149, -6.968727429, -6.126797845, -7.056046295, -6.499547348, -7.020590927, -7.618647134, -7.034479468, -7.356568769, -7.093708314, -7.893093107, -7.141521741, -6.966838026, -5.620552998, -7.408605482, -8.084679467, -7.08161348, -7.204143364, -6.396322072, -7.064079285, -6.190609108, -8.111965884, -6.618373507, -7.346822327, -7.174676719, -6.69288869, -6.627467943, -5.677186621, -7.345650666, -7.214789783, -7.304031923, -7.97943231, -7.945878869, -7.657616338, -8.028094728, -7.433902636, -7.259517195, -7.031022884, -6.34255235, -7.737395315, -7.270743804, -6.657028122, -7.068722536, -7.137219615, -6.024468247, -6.978402862, -6.168049223, -5.861490388, -6.774090953, -6.521965735, -6.921698539, -6.427354556, -7.296773563, -7.533562921, -7.827199721, -6.50545181, -6.408258988, -7.341513052, -7.821985279, -5.737843237, -5.057776457, -7.200204525, -7.114095231, -6.934721293, -7.229948323, -6.695919409, -7.080400052, -7.102989638, -6.739593758, -6.090821933, -7.535381789, -7.079287419, -6.670542583, -6.688215355, -7.405339037, -7.323304409, -7.217962807, -6.851139023, -6.7249862, -5.847091265, -6.868528331, -6.788616715, -6.91261798, -5.761763184, -7.090930834, -7.030512773, -7.924842601, -5.99445123, -6.880763311, -7.123997851, -7.095349978, -7.092333839, -6.879950045, -6.90256632, -7.15662152, -6.914814576, -6.784423719, -7.373480116, -6.678426257, -6.590037719, -7.05660253, -7.089836392, -7.7701656, -6.598294159, -7.468183201, -7.086835926, -5.967439489, -5.823728799, -7.26684089, -7.582485429, -6.193185286, -6.358570655, -5.848626045, -7.444876449, -6.984916704, -6.157608639, -6.755726874, -7.098724423, -6.113259138, -7.505585085, -6.758372909, -6.756603237, -6.780856212, -6.945321137, -6.984553931, -7.539726264, -5.269685198, -7.517666701, -7.529491196, -7.113931777, -6.978006899, -4.868394519, -6.342612515, -5.831171415, -6.274032076, -6.951226607, -5.82408532, -7.338816088, -5.852372786, -5.861993633, -6.4482522, -6.575437403, -7.462662694, -7.344209502, -6.927366118, -7.329314152, -7.308933849, -6.891007357, -7.021200197, -6.519365963, -7.205552825, -6.118004678, -7.065862949, -6.243802963, -7.045762971, -6.729348068, -7.410077682, -7.273457598, -5.890791767, -6.278317964, -6.782252266, -7.318019679, -5.820647229, -7.212723217, -6.480073937, -6.456925533, -7.763713772, -6.80654625, -6.747500588, -7.941404252, -4.565757513, -6.139588064, -7.03626298, -6.364213712, -6.950808286, -7.322678038, -7.059975966, -6.286843482, -6.959280451, -7.638753479, -7.529706482, -6.635271075, -7.075928496, -7.465729656, -5.958463519, -6.000846537, -6.120313747, -6.74734755, -7.79558099, -7.121954541, -7.263457823, -7.096782421, -6.676708704, -8.261618722, -7.008130482, -5.747855192, -6.934696035, -6.879480137, -6.67557052, -5.846492157, -4.664870411, -5.432453713, -7.396069108, -7.519792301, -6.866226802, -6.834175232, -8.859870429, -6.176114942, -6.395831791, -6.181858017, -7.823408813, -6.696425563, -7.033062277, -6.994384532, -6.59329125, -7.094002225, -6.832677827, -9.947625301, -8.249298905, -7.281931728, -6.716108161, -6.790247298, -7.982553668, -7.705672575, -7.128727949, -7.697249279, -6.769183614, -7.907511967, -6.542962399, -6.108437641, -7.028696135, -7.298798859, -7.385624231, -7.10850262, -6.08861034, -6.391217415, -8.776481033, -7.390400575, -7.216316356, -6.958946885, -7.365039404, -7.574289276, -7.310748212, -6.29830745, -6.548155272, -7.109584553, -6.823621591, -7.520140733, -6.808100846, -7.00256582, -8.657335768, -6.217576214, -7.172974225, -7.161951679, -7.125561652, -5.272542648, -5.734666937, -6.923787332, -5.701883983, -5.91583707, -6.683804704, -5.515044124, -6.895647724, -5.685937821, -6.068627731, -6.555798397, -7.170009361, -7.177821054, -6.495184407, -6.432547158, -7.637834201, -6.341324303, -6.824697938, -7.114307109, -6.187453559, -7.827723573, -6.189462123, -10.176919421, -6.246615108, -7.171381281, -6.59578575, -7.351177882, -7.139970047, -7.178955016, -7.545306817, -10.902286958, -7.486668004, -8.945107628, -7.826569897, -6.202060793, -6.692946438, -7.012842194, -6.69942562, -7.592392876, -6.372602602, -7.022194875, -7.332490381, -7.192692886, -6.445954187, -6.620993852, -7.629588452, -7.869304617, -5.385432736]}, {"log_prior": -0.704575876, "feature_log_probs": [-7.852977391, -5.747493955, -8.207386736, -5.758696029, -6.602351737, -6.429404295, -6.352297216, -6.647174105, -6.701270184, -6.384568497, -6.587132251, -6.764159391, -6.584412881, -6.897333039, -6.286697434, -7.958919439, -6.983726557, -7.139271424, -7.170317419, -7.062563908, -6.680501954, -7.08580679, -6.765734972, -6.652631205, -6.787098507, -6.755577279, -7.042088225, -6.554395516, -7.104835251, -6.855917343, -6.972338974, -6.966895621, -6.688262648, -6.99687369, -7.191942162, -6.219312926, -6.770465186, -6.659985218, -6.715319915, -6.244212986, -6.540671205, -6.18082841, -6.618263853, -6.550249851, -7.132730757, -7.498877142, -6.103298645, -6.328461833, -6.930299868, -7.162536362, -7.200608261, -7.289806545, -7.375958881, -7.508327183, -6.480816405, -6.304592518, -6.880094277, -7.418704461, -9.212181018, -6.684532672, -6.031588233, -7.209286136, -8.41338724, -6.820987481, -11.260916039, -7.462834776, -6.299508815, -7.64395584, -7.800358319, -6.97619326, -6.973124404, -8.291780475, -6.551259739, -6.576182915, -6.721389233, -6.513825328, -6.532264565, -7.296418058, -7.434435998, -9.286946316, -6.26341591, -6.681822179, -6.736349084, -6.153976312, -9.211346831, -6.400990126, -8.689071439, -7.200116156, -6.200730458, -7.028837195, -7.214426729, -7.296513902, -5.583648833, -5.942701375, -6.081047595, -5.611306845, -6.26503659, -6.104257317, -7.340646709, -6.209287069, -5.687727616, -5.737468659, -6.085007901, -6.767803474, -8.910033216, -8.41059954, -6.513194977, -6.431868952, -6.62933794, -6.210672735, -7.793858251, -6.092864909, -9.39640508, -6.266002929, -6.395603361, -6.264000796, -7.411783032, -5.458109184, -6.530587048, -6.277628287, -7.125877674, -15.370334299, -6.990494201, -6.812767951, -6.728648235, -6.304895622, -7.364166417, -6.778610284, -6.226304053, -6.731447464, -7.172778539, -6.783991986, -5.802628527, -6.757873068, -9.314876386, -6.484030576, -6.797417581, -7.645780293, -7.601689473, -6.759064741, -8.031286616, -15.370334299, -8.690474503, -11.335227513, -6.664315637, -7.480937629, -8.399030656, -9.25727323, -6.084266651, -6.296605212, -7.775117081, -8.130737888, -8.000261024, -6.588062373, -6.302705857, -6.518874004, -5.816293402, -7.121153607, -6.934962023, -6.693307556, -7.096282961, -7.338464233, -6.885344273, -8.285322889, -7.525220467, -7.691957511, -6.791927058, -7.124189445, -8.550720365, -7.035570535, -7.766888307, -7.471836737, -6.224040773, -6.204487575, -8.056855656, -7.536040711, -6.489657794, -6.700525381, -7.667120313, -6.198022278, -6.204948717, -6.331274834, -6.994395105, -7.058580534, -12.669572249, -6.897014036, -7.087020027, -7.895888693, -7.030366736, -6.302725876, -8.080126652, -9.439833197, -7.081486592, -5.426042735, -6.019791474, -9.957372559, -15.370334299, -15.370334299, -6.777910037, -7.156473442, -7.892148678, -8.07757508, -7.641687689, -8.169898129, -6.314219791, -6.818751438, -7.141231776, -7.717769146, -7.491522961, -6.707932321, -5.803127147, -6.060039563, -7.12078658, -5.952863261, -6.664231164, -7.170766552, -8.360537964, -10.11750764, -9.025067794, -8.117437383, -7.614442193, -7.884105501, -6.04189597, -6.063327656, -6.187979803, -5.183169583, -7.232023142, -7.295291403, -7.635480564, -6.478397451, -6.699922576, -7.006882031, -6.267888634, -6.547772074, -6.235171528, -6.646074238, -7.965115359, -7.017996681, -7.765951807, -7.42506452, -7.581136936, -6.120939673, -7.130992884, -7.419401778, -8.944236059, -7.015542599, -7.327502195, -8.2751331, -6.450311237, -6.361513192, -12.738207175, -7.236897262, -6.772579462, -6.295064453, -7.577634325, -9.379486994, -8.85416178, -7.3347354, -6.989843789, -6.125698589, -7.368083172, -6.86571584, -5.872775061, -6.45230205, -6.143617379, -6.178648206, -6.785904747, -7.080184116, -6.929212172, -6.567485696, -5.793474564, -7.134512936, -7.686525231, -6.83293871, -7.265996617, -7.250909581, -6.792187874, -6.302366391, -6.981753668, -7.437152943, -6.699145124, -6.469027764, -6.895107968, -5.776714299, -6.9419655, -6.385608776, -7.657801732, -5.968730071, -6.85852265, -7.774337342, -6.531319808, -5.507729102, -5.972007338, -6.444809301, -6.814380457, -8.368318008, -6.756145862, -6.248862657, -6.561258039, -6.936005124, -6.988174253, -6.779576244, -5.781271531, -5.59372144, -5.70704509, -6.166115657, -6.215016109, -8.27567206, -5.786501633, -6.188827037, -6.893999982, -7.036430678, -6.809591645, -7.020431755, -15.370334299, -6.49433586, -7.345926112, -6.13827834, -7.91962784, -10.123184989, -6.356321208, -15.370334299, -15.370334299, -6.056091434, -6.097221969, -5.706475881, -6.918626502, -6.002894158, -6.766633213, -6.946061629, -6.419236812, -9.335922324, -5.433790295, -6.438061629, -5.964508413, -7.11280555, -5.920454455, -8.020931337, -6.362966798, -6.166615186, -7.166869914, -6.182749813, -6.924384876, -6.596663447, -7.233953098, -7.060627575, -6.148709811, -6.688067595, -8.517305799, -12.824612801, -9.842093493, -7.010186937, -6.85006938, -6.387525249, -9.695186296, -6.620407135, -7.303088788, -8.544325156, -6.388964866, -8.944311929, -8.79191922, -6.38346985, -6.945262073, -6.191042036, -6.861940936, -7.022616676, -7.910681449, -6.111461007, -7.146857868, -7.346340397, -9.673143449, -6.867119127, -8.762589972, -6.15239535, -5.518789127, -6.45124254, -6.939405447, -6.881415481, -7.176895625, -6.396532899, -6.040173157, -6.874480853, -6.235864038, -6.749612117, -6.504385339, -6.192234357, -6.481148377, -6.51973945, -5.428110202, -5.963946721, -6.259248237, -7.105266018, -6.455100784, -6.963701661, -6.752491082, -6.236069707, -5.789828559, -6.270800096, -5.467196702, -8.027120481, -6.386768962, -7.203897043, -8.180548335, -5.688269218, -6.677580645, -5.747332909, -6.171382788, -6.742867853, -5.831774985, -6.084563205, -6.434531848, -6.688425646, -6.795265558, -6.752137711, -6.714385249, -5.24812497, -6.185968864, -6.071873593, -7.686184734, -7.435616142, -7.116263712, -7.724238973, -15.370334299, -7.001965085, -15.370334299, -6.11159768, -7.024846794, -7.165713509, -11.442931217, -6.528247835, -8.171187299, -6.76139746, -6.345941253, -6.243951405, -6.477386767, -7.999729438, -6.191333784, -7.055913949, -7.094628371, -7.860842137, -6.086449757, -6.140100895, -6.23241417, -7.138093919, -6.359983076, -6.880868203, -6.461505766, -5.552026964, -13.381038092, -6.319637914, -6.385829654, -7.394188762, -7.169772696, -9.311531225, -7.227701104, -7.194087186, -7.434704593, -5.665656645, -6.486263606, -6.706669159, -7.058642728, -6.584879965, -5.069140239, -6.227971358, -8.402703163, -8.028384333, -6.928879566, -15.370334299, -6.914870891, -11.873860521, -6.968421216, -11.024219697, -6.411804932, -7.868484882, -7.731652378, -6.636395235, -6.893840756, -6.401263013, -5.963715512, -15.370334299, -6.61047151, -6.447102598, -6.441910963, -8.432189958, -8.502160157, -15.370334299, -7.076024507, -6.635370395, -11.412385222, -6.456810594, -7.158433654, -6.742425941, -8.00626147, -7.107315279, -7.649986946, -6.175661903, -6.99884708, -8.802250579, -7.072668246, -9.495351865, -12.364221733, -15.370334299, -11.316825618, -6.804521833, -7.646078355, -6.467027196, -7.181569887, -6.260264278, -5.881049057, -7.599566007, -6.949126665, -6.020767859, -6.374646619, -7.129741367, -5.971761495, -6.855675123, -7.255731839, -6.790476904, -6.312773093, -6.182923316, -6.665441567, -6.709404734, -6.515146871, -5.955588921, -10.961225835, -6.497627411, -6.738233031, -6.02452367, -6.551719293, -6.765130433, -6.028805023, -6.587623247, -6.374016052, -7.091118991, -6.359353584, -7.884021463, -6.596564521, -6.282935046, -6.514962286, -6.766415751, -8.773256727, -6.318697885, -7.888467694, -8.28592322, -6.614477451, -6.578417745, -6.566345877, -6.682290488, -6.301825018, -6.627369177, -6.970465149, -6.306666754, -6.87928913, -7.360248392, -6.405200495, -6.303511552, -9.673545639, -8.886085319, -6.379321328, -6.46652559, -6.788967862, -6.666095075, -6.644807424, -6.621875141, -6.81744871, -12.677621152, -6.048186114, -6.609373313, -8.26800696, -5.897176533, -5.755413675, -6.525419681, -6.598070118, -6.851484229, -7.114470046, -7.713897647, -10.837194774, -7.203270113, -7.462068994, -6.670961303, -10.825198713, -7.000431234, -7.256731633, -6.721261985, -9.505837516, -6.687393069, -7.188910084, -7.225663249, -7.297997902, -7.133554548, -8.263189668, -7.503945001, -5.958495433, -7.481228954, -7.120782094, -6.931999173, -6.472389578, -6.638654178, -7.005762264, -6.761264616, -5.756457086, -6.523296861, -6.697747706, -8.625561555, -9.590451691, -6.895133217, -6.79874905, -6.499922217, -6.835761392, -7.145402396, -6.562049927, -5.864712028, -7.646407664, -9.733378202, -8.46067611, -11.273661043, -5.95580892, -7.598196996, -6.456079442, -6.388436687, -7.368061947, -6.538798014, -6.474409148, -7.62498718, -6.387334482, -6.501527536, -7.533229657, -6.331959686, -7.456822108, -9.508808814, -6.496733329, -6.936695779, -7.784862803, -5.990179928, -6.953920561, -10.135378376, -15.370334299, -10.664155997, -6.402839188, -7.045427436, -6.323137443, -7.366788471, -6.706733608, -7.412255318, -7.977765907, -6.558574789, -6.477621747, -6.394279265, -6.67458948, -6.251680032, -6.76395796, -7.174268915, -6.033440272, -6.940079234, -5.740917694, -7.075068611, -7.285418745, -7.549446863, -6.975618154, -6.867586933, -7.384293291, -6.456402865, -8.611195667, -6.853935477, -6.606131768, -6.249477465, -6.456594106, -8.238612628, -15.370334299, -6.848934301, -6.031900057, -6.224164085, -6.925933777, -6.117882124, -7.356028569, -8.135026685, -6.511972897, -6.930658719, -6.453398758, -7.346991099, -6.699017702, -7.174700371, -7.099332361, -8.41794209, -7.451425316, -6.08660113, -7.442437914, -8.322871106, -6.826594482, -7.167623567, -5.978809099, -6.726137365, -6.414195973, -8.083758481, -6.003081367, -15.370334299, -7.221460923, -7.206715731, -8.441582597, -6.44632258, -6.420726455, -7.644356808, -7.628955484, -6.547214415, -6.380208044, -8.523913264, -6.772649723, -6.372730287, -15.370334299, -6.713695171, -6.854224054, -6.699782337, -7.241948085, -7.29192813, -6.494811284, -6.32481901, -5.93810723, -5.612060774, -5.582165292, -6.575487974, -6.311974751, -6.083380084, -7.276898352, -6.362894599, -6.435621157, -7.157070711, -7.151827613, -6.963221132, -7.013119797, -7.106747776, -6.831089597, -8.991219397, -8.752748928, -5.956514879, -7.115018201, -6.345883029, -6.189010566, -6.519511072, -6.194561264, -6.180872098, -6.663185576, -7.063897582, -7.319398809, -6.706402632, -7.1507927, -6.953406419, -6.753568283, -6.164063078, -7.275956467, -7.661132738, -7.795631672, -8.67653635, -5.488432099, -5.996540093, -7.32808355, -7.11541031, -6.233731259, -7.019236742, -6.066348138, -6.735345068, -6.6229945, -7.506309266, -13.274961566, -8.271414939, -6.904715507, -5.512345943, -6.678785498, -5.909245125, -6.709983745, -7.68883391, -7.893380367, -5.445318308, -6.467625172, -10.561778487, -5.748976975, -5.380643832, -6.400522776, -6.973756116, -6.550396021, -6.083858977, -8.340585163, -7.916019573, -5.905619655, -6.374753292, -6.131234412, -6.633373668, -5.437539993, -6.338984106, -6.406787288, -5.436822397, -6.473496677, -6.574897178, -7.50442411, -6.600670431, -7.120767766, -5.404362285, -5.479151657, -6.630240384, -6.26540262, -11.991575849]}], "model_type": "nb", "positive_class_label": "business_and_industrial", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"search": [618, 2.598146332], "designed": [205, 2.608728441], "speed": [665, 2.80389814], "range": [562, 2.659648531], "highly": [329, 2.85247281], "section": [620, 2.998362084], "larger": [378, 2.879997484], "compared": [157, 2.942367814], "series": [627, 2.816913508], "standard": [669, 2.769996589], "create": [181, 1.919133662], "lower": [411, 2.889343346], "begin": [90, 3.068851962], "form": [285, 2.540208495], "effect": [235, 3.240000218], "50": [37, 2.753467287], "testing": [712, 3.287790882], "known": [375, 2.479194389], "american": [60, 3.301875622], "test": [711, 2.795314397], "higher": [328, 2.652213553], "design": [204, 2.520535729], "project": [548, 2.769996589], "increase": [347, 2.745303976], "high": [327, 1.957216233], "research": [592, 2.77417196], "external": [260, 3.337980626], "links": [394, 3.330654586], "edit": [234, 3.375438189], "difficult": [214, 2.717246023], "traditional": [730, 2.866140449], "called": [113, 2.193851499], "used": [753, 1.642634887], "experience": [259, 2.378517722], "problems": [539, 2.659648531], "performance": [510, 2.179897784], "original": [491, 2.786803707], "feature": [268, 2.705458067], "main": [413, 2.721206424], "benefits": [91, 3.108971955], "number": [472, 1.889333034], "reduce": [577, 2.90830126], "allows": [57, 2.412905065], "efficient": [236, 3.169231147], "allow": [56, 2.498062873], "particular": [498, 2.530323735], "given": [298, 2.3589913], "flow": [279, 3.532136641], "certain": [124, 2.652213553], "required": [589, 2.53360781], "point": [519, 2.083119021], "generated": [295, 3.577806677], "value": [760, 2.072691398], "local": [400, 2.816913508], "created": [182, 2.367313123], "far": [265, 2.501242526], "possible": [522, 2.161590636], "end": [241, 1.953526192], "distribution": [219, 3.308993089], "addition": [50, 2.821289883], "gives": [299, 2.870738158], "makes": [416, 2.070618858], "example": [253, 1.825766488], "uses": [757, 2.384167455], "17": [11, 3.080151517], "low": [410, 2.540208495], "region": [578, 3.69675862], "short": [640, 2.633864414], "entire": [245, 2.686115105], "provide": [552, 2.279373672], "using": [758, 1.595195162], "systems": [696, 2.451542857], "requirements": [590, 3.138647724], "area": [72, 3.041149359], "rule": [605, 3.479950887], "march": [423, 3.625662699], "family": [264, 2.998362084], "related": [579, 2.626618006], "2011": [19, 3.446614467], "10": [3, 1.920914606], "18": [12, 2.987945323], "today": [723, 2.439494519], "science": [616, 3.085849538], "business": [109, 2.224769538], "media": [433, 3.114837075], "2012": [20, 3.163039177], "complete": [158, 2.615845909], "story": [685, 3.126671532], "2009": [17, 3.446614467], "program": [547, 3.097343917], "technology": [706, 2.630234646], "report": [585, 3.080151517], "13": [7, 2.987945323], "status": [677, 3.352795712], "isbn": [362, 4.512965894], "24": [31, 2.942367814], "2018": [26, 3.383101061], "article": [74, 2.556903373], "week": [779, 2.749377301], "space": [661, 2.457621904], "center": [123, 3.156885311], "run": [607, 2.083119021], "query": [557, 2.350738158], "tables": [698, 2.488584129], "mysql": [453, 3.144690038], "database": [190, 2.018187495], "table": [697, 2.186850303], "help": [325, 1.887607408], "understanding": [744, 3.00361144], "results": [596, 2.476083966], "looking": [406, 2.353481644], "column": [146, 2.753467287], "look": [405, 1.933470825], "12": [6, 2.476083966], "14": [8, 2.927625533], "silver": [644, 4.466445878], "bronze": [104, 5.206113074], "badges": [86, 5.115141296], "asked": [76, 2.998362084], "15": [9, 2.570462903], "30": [35, 2.553542025], "16": [10, 2.861563782], "use": [752, 1.404755637], "size": [650, 2.491733738], "need": [457, 1.562280798], "select": [623, 2.57388171], "list": [395, 2.25169895], "order": [489, 2.119409022], "share": [638, 2.580754589], "improve": [342, 2.637507406], "answer": [63, 2.870738158], "21": [28, 3.246689206], "rows": [604, 2.778364838], "total": [727, 2.83453511], "schema": [615, 3.074485779], "additional": [51, 2.667139203], "databases": [191, 2.53360781], "following": [282, 2.068550605], "db": [195, 3.479950887], "group": [309, 2.442493022], "result": [595, 2.401310732], "details": [206, 2.659648531], "22": [29, 3.156885311], "25": [32, 2.879997484], "want": [771, 1.737405401], "currently": [186, 2.866140449], "simply": [647, 2.491733738], "copy": [174, 3.308993089], "20": [14, 2.421689894], "easy": [232, 2.177590978], "way": [775, 1.554836595], "right": [600, 1.957216233], "click": [136, 3.126671532], "shows": [642, 2.749377301], "second": [619, 2.236920356], "data": [189, 1.649405393], "27": [34, 3.422321775], "output": [492, 3.323381827], "news": [463, 3.150769084], "set": [633, 1.786047208], "00": [0, 3.893926685], "specific": [664, 2.342552574], "row": [603, 2.83453511], "try": [736, 2.407091095], "command": [150, 3.085849538], "head": [323, 3.019526895], "solution": [656, 2.543525247], "check": [128, 2.384167455], "script": [617, 3.471512019], "fields": [272, 3.367833589], "field": [271, 2.972520853], "11": [5, 2.626618006], "structure": [689, 2.77417196], "usage": [751, 3.352795712], "index": [348, 2.866140449], "working": [787, 2.281927952], "line": [392, 2.608728441], "sort": [658, 2.967431783], "inside": [355, 2.85247281], "needs": [459, 2.25169895], "variable": [763, 3.665668033], "23": [30, 3.233355675], "string": [687, 3.655515662], "access": [40, 2.219950252], "different": [213, 1.706723666], "existing": [257, 2.601661274], "don": [225, 1.779836008], "actually": [46, 2.331741658], "disk": [217, 3.194389707], "based": [88, 1.825766488], "instance": [356, 2.709371967], "file": [274, 2.682291008], "join": [369, 2.972520853], "postgresql": [524, 4.045942893], "financial": [277, 3.330654586], "industry": [352, 2.947330604], "private": [536, 3.505703384], "option": [486, 2.686115105], "market": [425, 2.587675032], "big": [94, 2.117237469], "tools": [726, 2.563660156], "cloud": [140, 3.030279687], "support": [692, 2.115070621], "application": [67, 2.448517137], "requires": [591, 2.80389814], "contains": [171, 2.898777378], "records": [575, 3.103141035], "trade": [729, 3.615906524], "new": [462, 1.403692372], "architecture": [71, 3.150769084], "apache": [64, 3.550155146], "hbase": [321, 3.596675162], "amazon": [59, 3.345360733], "storage": [681, 2.594643701], "cost": [176, 2.52705041], "early": [229, 2.69380745], "year": [795, 2.208002678], "fast": [266, 2.580754589], "quickly": [560, 2.501242526], "grow": [311, 3.103141035], "large": [377, 2.106449878], "store": [682, 2.445500543], "cluster": [142, 3.138647724], "hadoop": [314, 3.532136641], "running": [608, 2.337132506], "stored": [683, 2.577312245], "hdfs": [322, 4.190192501], "replication": [584, 3.367833589], "instances": [357, 3.505703384], "updated": [749, 3.091580213], "close": [139, 2.769996589], "day": [193, 2.212764592], "load": [399, 2.83898946], "api": [65, 3.550155146], "operation": [483, 3.097343917], "mapreduce": [422, 4.173098068], "simple": [646, 2.175289481], "queries": [556, 2.580754589], "took": [724, 2.957330687], "minutes": [442, 3.052138481], "hours": [333, 3.024888838], "old": [478, 2.494893298], "days": [194, 2.630234646], "event": [251, 3.194389707], "apply": [69, 2.972520853], "needed": [458, 2.451542857], "availability": [79, 3.294808454], "single": [648, 2.040035435], "processing": [543, 2.889343346], "started": [671, 2.445500543], "users": [756, 2.315741316], "components": [161, 3.294808454], "creating": [183, 2.520535729], "doing": [224, 2.418753035], "updates": [750, 3.108971955], "applications": [68, 2.594643701], "stores": [684, 3.046628825], "hive": [331, 4.261651465], "spark": [662, 4.40048791], "directly": [215, 2.67848148], "including": [346, 2.125952121], "job": [367, 2.667139203], "state": [673, 2.689953881], "having": [320, 2.229612163], "available": [80, 2.072691398], "extra": [261, 3.008888497], "management": [419, 2.292210819], "instead": [358, 2.177590978], "work": [786, 1.728542714], "configuration": [163, 3.246689206], "small": [652, 2.141387929], "write": [791, 2.445500543], "log": [402, 2.967431783], "server": [628, 2.227187919], "memory": [435, 2.917916719], "cache": [112, 3.68628732], "node": [464, 3.301875622], "faster": [267, 2.725182573], "read": [566, 2.097902817], "request": [587, 3.330654586], "included": [344, 3.057678661], "actual": [45, 3.194389707], "directory": [216, 3.881187659], "version": [766, 2.476083966], "format": [286, 3.213682909], "major": [414, 2.709371967], "steps": [679, 2.84795813], "unique": [745, 2.795314397], "able": [39, 2.196196166], "types": [741, 2.482314516], "nodes": [465, 3.367833589], "save": [610, 2.875357104], "significant": [643, 2.903527981], "costs": [177, 3.030279687], "100": [4, 2.591153296], "pay": [507, 2.998362084], "response": [594, 3.108971955], "risk": [601, 3.233355675], "execute": [255, 3.240000218], "multi": [451, 3.18173131], "automatically": [78, 2.875357104], "servers": [629, 3.097343917], "isn": [363, 2.460675341], "development": [209, 2.608728441], "turn": [738, 2.598146332], "process": [541, 2.104306254], "separate": [626, 2.821289883], "impact": [340, 2.932515518], "scale": [612, 2.663386853], "light": [389, 3.287790882], "make": [415, 1.535252126], "changes": [127, 2.482314516], "operations": [484, 2.567055745], "update": [748, 2.641163717], "default": [200, 2.753467287], "overall": [493, 2.85247281], "great": [308, 2.08942819], "success": [691, 3.063249706], "questions": [559, 2.761697786], "blog": [99, 2.77417196], "month": [449, 2.879997484], "posts": [525, 3.360286384], "page": [495, 2.717246023], "online": [481, 2.598146332], "course": [180, 2.476083966], "tempdb": [708, 5.115141296], "core": [175, 3.120736797], "information": [353, 2.020154064], "microsoft": [439, 3.074485779], "points": [520, 2.947330604], "sql": [667, 2.279373672], "team": [704, 2.682291008], "scaling": [613, 3.497045321], "customers": [188, 2.648516691], "things": [717, 2.08942819], "know": [374, 1.901496521], "does": [222, 1.835538553], "problem": [538, 2.331741658], "files": [275, 2.903527981], "ve": [765, 2.093656526], "got": [305, 2.77417196], "level": [386, 2.196196166], "think": [718, 2.134743386], "kind": [373, 2.637507406], "engine": [242, 2.927625533], "control": [173, 2.648516691], "pages": [496, 3.390823108], "sys": [695, 4.123501127], "twitter": [739, 3.220197591], "let": [385, 2.076849408], "long": [403, 1.908514093], "post": [523, 2.370102525], "later": [379, 2.409993855], "usually": [759, 2.454577761], "better": [93, 1.940717234], "good": [303, 1.820916034], "product": [544, 2.498062873], "add": [47, 2.259170965], "customer": [187, 2.812556203], "mean": [431, 2.729174594], "best": [92, 1.848718315], "practice": [528, 3.144690038], "idea": [338, 2.594643701], "cause": [122, 2.927625533], "reason": [571, 2.594643701], "plan": [515, 2.725182573], "require": [588, 2.729174594], "won": [783, 2.686115105], "writing": [793, 2.913097432], "really": [570, 2.196196166], "thing": [716, 2.353481644], "slow": [651, 3.091580213], "necessary": [456, 2.884659497], "quite": [561, 2.641163717], "lead": [381, 2.84346374], "buffer": [105, 4.443973022], "free": [287, 2.323709486], "handle": [316, 2.952318145], "multiple": [452, 2.219950252], "start": [670, 2.022124508], "code": [144, 2.591153296], "works": [788, 2.482314516], "yes": [797, 3.052138481], "bit": [96, 2.667139203], "clients": [138, 3.352795712], "class": [133, 3.194389707], "potential": [526, 2.857007966], "vs": [770, 3.438451157], "avoid": [82, 2.786803707], "helps": [326, 2.870738158], "address": [52, 2.967431783], "came": [114, 2.998362084], "difference": [212, 2.77417196], "likely": [390, 2.523787764], "adding": [49, 2.749377301], "analysis": [61, 2.922759343], "path": [506, 3.108971955], "lot": [408, 2.121585302], "developers": [208, 3.008888497], "useful": [754, 2.633864414], "developer": [207, 3.414353605], "ll": [398, 2.044059585], "present": [529, 3.046628825], "note": [470, 2.536902706], "environment": [246, 2.937429533], "real": [569, 2.163860785], "ensure": [243, 2.942367814], "text": [713, 2.957330687], "life": [388, 2.553542025], "world": [789, 2.044059585], "procedure": [540, 3.784727393], "objects": [474, 3.246689206], "definition": [202, 3.383101061], "source": [659, 2.348002178], "etl": [250, 4.358815214], "say": [611, 2.249220634], "takes": [699, 2.543525247], "task": [702, 3.138647724], "current": [185, 2.494893298], "production": [545, 2.884659497], "processes": [542, 3.226754991], "varchar": [762, 4.031127807], "int": [359, 3.831794904], "insert": [354, 2.99314014], "count": [178, 3.308993089], "company": [156, 2.297392178], "buy": [111, 3.014193549], "backup": [84, 3.606244613], "perform": [509, 2.799597058], "client": [137, 2.884659497], "fact": [263, 2.418753035], "especially": [248, 2.491733738], "master": [427, 3.103141035], "dbo": [197, 4.379434501], "open": [482, 2.307836137], "transaction": [731, 3.052138481], "transactions": [732, 3.132641699], "choose": [131, 2.757574069], "alter": [58, 3.541105311], "connection": [165, 3.246689206], "setting": [634, 2.947330604], "user": [755, 2.339838868], "mode": [443, 3.406448425], "generally": [294, 2.894049237], "function": [288, 2.947330604], "dynamic": [228, 3.471512019], "values": [761, 2.689953881], "doesn": [223, 2.224769538], "max": [430, 3.807984255], "left": [384, 2.745303976], "return": [598, 2.932515518], "similar": [645, 2.302600523], "columns": [147, 2.957330687], "case": [119, 2.026077083], "null": [471, 3.446614467], "study": [690, 3.260202925], "physical": [513, 3.030279687], "advantage": [53, 3.024888838], "self": [624, 2.982777353], "service": [630, 2.375704781], "building": [107, 2.697675927], "completely": [159, 2.962368481], "future": [290, 2.536902706], "years": [796, 1.99488547], "products": [546, 2.69380745], "zendesk": [799, 3.843916265], "did": [210, 2.315741316], "companies": [155, 2.563660156], "facebook": [262, 3.126671532], "employees": [239, 3.568504285], "technologies": [705, 3.323381827], "approach": [70, 2.615845909], "groups": [310, 3.108971955], "services": [631, 2.633864414], "months": [450, 2.85247281], "changed": [126, 3.014193549], "analytics": [62, 3.26702889], "machine": [412, 2.90830126], "learning": [383, 3.233355675], "security": [621, 3.041149359], "platform": [517, 2.77417196], "network": [461, 2.84795813], "didn": [211, 2.753467287], "model": [444, 2.540208495], "considered": [167, 2.99314014], "built": [108, 2.485444409], "follow": [281, 2.745303976], "strategy": [686, 3.207210395], "base": [87, 3.041149359], "build": [106, 2.488584129], "focus": [280, 2.778364838], "projects": [549, 3.138647724], "place": [514, 2.227187919], "000": [1, 2.713301245], "change": [125, 2.070618858], "choice": [130, 2.879997484], "target": [701, 3.280822212], "human": [336, 3.014193549], "live": [397, 2.737206766], "understand": [743, 2.504432321], "remember": [583, 3.014193549], "taking": [700, 2.633864414], "track": [728, 3.008888497], "term": [709, 2.84795813], "special": [663, 2.952318145], "cases": [120, 2.686115105], "learn": [382, 2.514063214], "features": [269, 2.367313123], "making": [417, 2.157065742], "wanted": [772, 3.163039177], "defined": [201, 3.014193549], "trying": [737, 2.667139203], "words": [785, 2.894049237], "shared": [639, 3.163039177], "language": [376, 2.913097432], "ability": [38, 2.782575371], "resources": [593, 2.942367814], "step": [678, 2.608728441], "execution": [256, 3.253423238], "issues": [365, 2.67848148], "complex": [160, 2.717246023], "distributed": [218, 3.046628825], "error": [247, 3.330654586], "power": [527, 2.630234646], "common": [153, 2.334433449], "easily": [231, 2.580754589], "tool": [725, 2.709371967], "getting": [297, 2.540208495], "come": [148, 2.305214903], "offer": [475, 2.741247175], "indexes": [350, 3.114837075], "relationships": [582, 3.390823108], "various": [764, 2.701559427], "options": [487, 2.587675032], "associated": [77, 3.156885311], "provides": [553, 2.448517137], "general": [293, 2.550191939], "offers": [476, 2.977635953], "community": [154, 2.866140449], "cassandra": [121, 3.881187659], "mongodb": [448, 3.568504285], "connect": [164, 3.035699754], "home": [332, 2.782575371], "drop": [227, 2.942367814], "aren": [73, 2.922759343], "mind": [441, 2.733182615], "video": [767, 3.18173131], "thought": [720, 2.741247175], "figure": [273, 3.041149359], "away": [83, 2.630234646], "2014": [22, 3.260202925], "title": [722, 3.761999142], "2008": [16, 3.352795712], "website": [778, 3.194389707], "clear": [135, 2.786803707], "camera": [115, 4.489435396], "record": [574, 3.080151517], "game": [291, 3.253423238], "parts": [503, 3.046628825], "starting": [672, 2.733182615], "include": [343, 2.356232678], "person": [511, 2.778364838], "email": [237, 3.074485779], "spend": [666, 3.052138481], "feel": [270, 2.682291008], "ago": [55, 2.85247281], "basic": [89, 2.725182573], "software": [655, 2.644833446], "2013": [21, 3.463143769], "action": [43, 3.057678661], "tell": [707, 2.821289883], "pretty": [532, 2.927625533], "sources": [660, 3.200779505], "thinking": [719, 3.213682909], "hard": [317, 2.43650498], "sure": [694, 2.186850303], "manager": [420, 3.26702889], "probably": [537, 2.580754589], "content": [172, 2.998362084], "quality": [555, 3.046628825], "personal": [512, 3.035699754], "press": [531, 3.463143769], "role": [602, 3.024888838], "download": [226, 3.430353946], "canon": [116, 5.542585311], "little": [396, 2.329057092], "image": [339, 3.169231147], "love": [409, 2.962368481], "sense": [625, 2.745303976], "social": [654, 2.922759343], "finally": [276, 2.857007966], "recently": [573, 2.85247281], "marketing": [426, 3.488461577], "percent": [508, 3.156885311], "global": [300, 3.220197591], "growth": [312, 3.080151517], "key": [371, 2.066486621], "issue": [364, 2.812556203], "chinese": [129, 4.466445878], "country": [179, 3.390823108], "consider": [166, 2.491733738], "president": [530, 3.615906524], "bad": [85, 2.957330687], "expensive": [258, 3.108971955], "tax": [703, 4.338612506], "average": [81, 3.097343917], "jobs": [368, 3.375438189], "reports": [586, 3.156885311], "deal": [198, 2.894049237], "19": [13, 3.163039177], "recent": [572, 2.761697786], "2019": [27, 3.398605248], "means": [432, 2.056230121], "rates": [564, 3.541105311], "strong": [688, 2.898777378], "true": [735, 2.674686409], "longer": [404, 2.713301245], "times": [721, 2.302600523], "rate": [563, 3.126671532], "typically": [742, 2.866140449], "going": [302, 2.093656526], "economic": [233, 3.90683009], "2015": [23, 3.360286384], "question": [558, 2.733182615], "cloudera": [141, 4.358815214], "01": [2, 3.856186357], "integration": [360, 3.383101061], "important": [341, 1.985334299], "reading": [567, 2.972520853], "decision": [199, 3.103141035], "enterprise": [244, 3.063249706], "tree": [734, 3.68628732], "en": [240, 4.139761648], "wikipedia": [781, 4.724274987], "org": [490, 3.625662699], "wiki": [780, 4.587073866], "consistency": [168, 3.414353605], "book": [101, 2.898777378], "commands": [151, 3.541105311], "added": [48, 2.601661274], "gets": [296, 2.808217801], "location": [401, 3.080151517], "writes": [792, 3.213682909], "supports": [693, 3.024888838], "date": [192, 2.982777353], "named": [454, 3.144690038], "individual": [351, 2.898777378], "collection": [145, 3.260202925], "account": [42, 2.932515518], "java": [366, 3.881187659], "public": [554, 2.962368481], "force": [284, 3.345360733], "contain": [170, 3.063249706], "native": [455, 3.635514995], "hardware": [318, 3.367833589], "comes": [149, 2.401310732], "previous": [533, 2.83453511], "money": [447, 2.786803707], "type": [740, 2.271749747], "written": [794, 2.90830126], "primary": [535, 2.697675927], "play": [518, 3.014193549], "property": [551, 3.596675162], "site": [649, 3.014193549], "2017": [25, 3.438451157], "relationship": [581, 3.126671532], "crm": [184, 3.919902172], "ask": [75, 3.00361144], "sales": [609, 3.024888838], "session": [632, 3.675924533], "message": [437, 3.390823108], "view": [768, 2.52705041], "manage": [418, 2.816913508], "functions": [289, 3.114837075], "terms": [710, 2.749377301], "active": [44, 3.226754991], "past": [505, 2.749377301], "reads": [568, 3.345360733], "nosql": [469, 3.406448425], "redis": [576, 4.107500786], "looks": [407, 2.967431783], "includes": [345, 2.69380745], "solutions": [657, 3.057678661], "sharding": [636, 3.596675162], "examples": [254, 2.884659497], "link": [393, 3.273901769], "guide": [313, 3.080151517], "partitioning": [501, 3.761999142], "partitioned": [500, 4.00214027], "shards": [637, 4.207584244], "shown": [641, 3.114837075], "statements": [675, 3.406448425], "rdbms": [565, 3.893926685], "shard": [635, 4.06098077], "map": [421, 3.345360733], "non": [466, 2.469891996], "id": [337, 3.273901769], "40": [36, 3.074485779], "oracle": [488, 3.226754991], "relational": [580, 3.035699754], "review": [599, 3.308993089], "block": [98, 3.615906524], "commit": [152, 3.796288216], "normal": [468, 3.163039177], "according": [41, 2.591153296], "statement": [674, 2.972520853], "2005": [15, 3.675924533], "partition": [499, 3.635514995], "object": [473, 3.074485779], "google": [304, 2.903527981], "huge": [335, 2.972520853], "history": [330, 2.884659497], "2010": [18, 3.625662699], "retrieved": [597, 3.90683009], "26": [33, 3.430353946], "2016": [24, 3.294808454], "net": [460, 3.422321775], "box": [103, 3.260202925], "graph": [307, 3.796288216], "hand": [315, 2.663386853], "json": [370, 3.881187659], "clustered": [143, 3.946570419], "internet": [361, 3.367833589], "price": [534, 2.99314014], "age": [54, 3.280822212], "document": [220, 3.280822212], "web": [777, 2.795314397], "models": [445, 3.126671532], "care": [118, 3.108971955], "states": [676, 3.169231147], "ways": [776, 2.454577761], "oltp": [479, 3.933147398], "delete": [203, 3.294808454], "million": [440, 2.866140449], "indexed": [349, 4.107500786], "keys": [372, 3.260202925], "package": [494, 3.523247693], "concept": [162, 3.200779505], "fit": [278, 3.097343917], "events": [252, 3.301875622], "rules": [606, 3.169231147], "body": [100, 3.085849538], "ones": [480, 2.947330604], "optimizer": [485, 4.261651465], "clause": [134, 3.665668033], "scan": [614, 3.69675862], "parameter": [497, 3.843916265], "views": [769, 3.253423238], "smaller": [653, 2.952318145], "plans": [516, 3.132641699], "easier": [230, 2.644833446], "businesses": [110, 3.375438189], "limited": [391, 2.922759343], "law": [380, 3.625662699], "documents": [221, 3.606244613], "office": [477, 3.532136641], "employee": [238, 4.076248242], "contact": [169, 3.414353605], "app": [66, 3.220197591], "popular": [521, 2.778364838], "warehouse": [773, 3.615906524], "levels": [387, 3.287790882], "properties": [550, 3.287790882], "seen": [622, 2.705458067], "united": [746, 3.596675162], "games": [292, 3.960176071], "method": [438, 3.080151517], "health": [324, 3.488461577], "worth": [790, 2.786803707], "books": [102, 3.323381827], "theory": [715, 3.665668033], "car": [117, 3.665668033], "house": [334, 3.18173131], "stop": [680, 3.063249706], "matter": [429, 2.778364838], "partitions": [502, 3.973969393], "government": [306, 3.606244613], "travel": [733, 3.856186357], "dbms": [196, 4.261651465], "modern": [446, 3.132641699], "theme": [714, 4.421994115], "hash": [319, 4.045942893], "city": [132, 3.103141035], "medicine": [434, 4.587073866], "password": [504, 4.076248242], "nonclustered": [467, 4.561756058], "men": [436, 3.933147398], "goes": [301, 2.884659497], "materialized": [428, 5.031759687], "black": [97, 3.532136641], "bike": [95, 4.639717599], "wordpress": [784, 4.639717599], "ssis": [668, 4.667116573], "york": [798, 3.308993089], "university": [747, 3.390823108], "mariadb": [424, 5.206113074], "food": [283, 3.471512019], "estate": [249, 4.443973022], "water": [774, 3.69675862], "women": [782, 3.831794904]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_computers_and_electronics.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_computers_and_electronics.json deleted file mode 100644 index 0e7f9b0..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_computers_and_electronics.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.686743744, "feature_log_probs": [-6.824199413, -7.393582555, -7.955768032, -8.81352165, -6.141541142, -6.980852893, -6.965127173, -6.501897761, -7.174845891, -7.13984022, -7.170659743, -6.724212295, -6.772600015, -7.397772346, -7.150084321, -7.484200915, -6.755949917, -7.13639409, -7.590264416, -7.144617173, -7.243439247, -7.659848942, -7.29500785, -7.011751945, -7.247713369, -7.656852653, -6.830025893, -7.602007647, -7.495248668, -7.342100662, -7.176316095, -7.764568452, -7.834416465, -7.629084931, -7.865642888, -7.174234707, -6.966878307, -8.244570078, -7.202026068, -7.40270527, -7.391453797, -7.116609778, -7.315197194, -6.545075287, -5.651452933, -7.403831531, -6.460113139, -7.123821705, -6.823053635, -6.74339434, -5.904142551, -6.837176363, -6.964919375, -7.440277423, -6.767138605, -5.968330266, -6.959120303, -6.639202659, -6.484862553, -6.302266138, -8.880561209, -6.974440326, -6.650320393, -6.052883587, -6.216970567, -5.328594732, -5.543773703, -6.040838523, -7.212754801, -7.25969104, -6.708305437, -5.142518472, -7.872491809, -6.970293678, -7.506118303, -6.825264412, -5.828005276, -6.663691995, -6.011675255, -7.215828984, -7.532508173, -6.54990667, -7.464342062, -7.306752212, -6.113260148, -6.783311565, -6.72640631, -7.511453532, -6.665605389, -6.707670474, -7.130177146, -12.36752373, -6.542397421, -6.298117257, -7.798489145, -6.855378524, -7.179857196, -6.652705793, -6.194287198, -8.098423054, -7.531322993, -8.186062277, -6.98125422, -6.22777451, -6.684918105, -6.349913894, -6.908079861, -6.641683141, -6.957278883, -6.419241697, -7.338830868, -6.52185792, -6.455835205, -6.607152734, -7.312243216, -7.809874865, -7.082066683, -8.023169836, -6.218524922, -7.558139253, -7.743576899, -6.234527389, -7.126188712, -7.457040522, -7.099364355, -8.353037618, -7.269257123, -5.971506429, -6.146172996, -6.627725961, -6.751710787, -6.144857423, -7.563978548, -6.962199002, -15.345901745, -8.925872327, -7.017940017, -7.534631127, -5.837997911, -5.735887315, -7.403219097, -5.670203699, -6.280789525, -5.322765086, -7.144595652, -7.156741705, -5.640518023, -6.656511163, -6.851947519, -6.935020237, -7.10709307, -6.18525337, -6.883385947, -7.145853477, -6.726298129, -5.810290078, -6.509797593, -6.254948256, -5.711083806, -6.575490075, -6.805385835, -6.152240803, -6.424451514, -6.076296137, -6.477055832, -7.506326349, -6.14129535, -6.744521287, -7.025272155, -6.711709447, -7.120869603, -7.542811634, -6.223442569, -6.476300164, -6.951561951, -6.398508337, -6.978125845, -8.305074729, -7.139856541, -6.367337536, -5.882243314, -6.56532202, -7.136321742, -6.762486112, -6.69408538, -7.082016265, -6.996766811, -7.156424702, -4.939579096, -6.120004267, -7.029690829, -7.279551599, -7.176529318, -7.758631301, -5.746526754, -7.156204267, -7.190224291, -6.675559545, -7.079551825, -6.806323102, -6.550679363, -6.932758494, -6.730097831, -6.513997711, -5.374030667, -5.544765042, -7.136167181, -7.046471, -7.555035705, -6.232760157, -6.603234939, -6.710170592, -6.138832639, -6.58213023, -6.76044863, -6.151855203, -5.737620649, -6.304195488, -6.523394307, -6.871273386, -6.0070363, -6.208408971, -6.107053952, -6.488234283, -6.738611203, -7.433535284, -7.023836232, -7.009882757, -6.464541173, -6.639530514, -7.540338035, -6.494990097, -7.473966755, -6.48553988, -6.843139007, -6.242002883, -7.61166366, -7.147642755, -6.596346057, -7.42887942, -7.323796486, -6.484962991, -6.458948404, -7.571488729, -9.079770572, -6.90252305, -7.344395526, -5.712832899, -6.900690316, -7.125542434, -7.27225261, -6.617215528, -7.344600803, -7.004949526, -7.436029421, -8.985799348, -7.112779579, -7.265837393, -7.106846811, -6.633048903, -6.313522567, -9.454369378, -7.45756166, -7.39257848, -7.19037111, -5.037447296, -5.73762967, -11.143449486, -7.120582689, -7.538491189, -6.909507477, -5.932058518, -9.532808687, -7.634192878, -7.220789431, -6.629981166, -7.717181533, -6.420939826, -6.033321058, -6.889372564, -7.079372342, -7.383284355, -7.52599689, -7.193566988, -7.241250292, -6.956627742, -6.279774385, -6.114326157, -6.805918228, -7.554212258, -7.51176399, -6.557149047, -6.50997304, -6.27016414, -6.949582378, -8.66696303, -6.908493789, -6.773833602, -7.484340092, -6.89114255, -7.834619257, -7.385779423, -7.005570543, -6.694795137, -5.67095243, -6.834596653, -7.242123944, -6.957839657, -7.568747436, -6.535377305, -6.522432577, -7.789328709, -7.829418466, -7.28098197, -6.378165872, -6.153834653, -7.515795204, -8.201613475, -8.077871098, -6.487821187, -7.153397926, -7.275182242, -6.668714494, -7.271636106, -7.056497275, -6.699087902, -7.169592926, -6.902657755, -7.653093503, -7.117656446, -6.756309798, -7.639933372, -7.091262298, -9.706611135, -7.602922274, -7.966822796, -6.064488383, -6.458972998, -6.418875056, -6.885692692, -5.64598187, -6.625383473, -6.608001418, -6.699305696, -6.663412774, -6.94538875, -6.480355512, -7.126810948, -6.133892856, -7.056489601, -6.432217624, -6.634556336, -5.922359045, -15.345901745, -6.994731297, -6.541224977, -6.633875148, -7.251004506, -6.998099714, -7.57172847, -8.454617822, -6.795481049, -6.441451063, -5.715159581, -6.667645934, -8.832916575, -7.297046407, -6.35636768, -7.758031672, -7.39332325, -6.436096738, -6.892454578, -7.741817245, -6.68993227, -7.489982161, -6.95146105, -6.754565411, -8.378099511, -7.94658259, -6.95635238, -7.616975718, -6.988863435, -7.114540682, -6.14589835, -6.22838194, -6.446473773, -7.424935126, -7.312565074, -7.2343541, -7.156939209, -7.186765878, -6.269963813, -7.066342874, -6.543089956, -7.468221772, -5.842484804, -6.203851671, -6.901950448, -7.312482121, -5.892201466, -6.128199208, -6.152966459, -6.87915513, -6.975568375, -6.276103082, -6.476545829, -6.754829657, -7.244477231, -6.376626962, -7.080529103, -7.114418795, -6.739562588, -7.62557318, -6.699898617, -7.641850748, -6.11098407, -6.75964396, -7.793741885, -5.849611678, -7.039727692, -6.888268115, -8.171947914, -6.49812654, -7.571203982, -7.937082553, -7.221523106, -6.821302284, -7.797813545, -7.524432255, -7.621645995, -6.580459588, -7.083059337, -9.816627739, -5.488034812, -11.264946089, -6.108466312, -6.449827942, -6.658460514, -5.374718664, -7.944345125, -7.773485975, -7.373604385, -6.669717926, -6.059998911, -6.828957422, -7.382621864, -6.050504601, -8.081376649, -6.440649156, -7.644450743, -7.273230372, -8.006694352, -6.817676231, -6.332893899, -6.887247206, -7.410779935, -7.360773628, -5.477987073, -6.878665256, -6.811002269, -6.830503497, -5.582006546, -5.463938715, -7.315250528, -6.245760587, -15.345901745, -5.654984838, -6.600497786, -6.982687293, -6.357002129, -8.452562469, -6.023767924, -6.402505799, -6.883910768, -8.063232546, -7.812828283, -7.574921524, -7.374364653, -6.911852636, -7.048035338, -7.503518108, -7.177848418, -5.725162284, -6.481091983, -7.025899016, -6.438841626, -6.622509877, -6.500189579, -6.631197321, -7.297957223, -6.106093776, -6.125741116, -7.576848177, -7.013472371, -6.115562561, -7.413489027, -6.855278923, -7.174361002, -6.926856017, -7.241797403, -7.115303916, -5.598435188, -7.612550698, -6.768061877, -8.60429877, -6.624098218, -7.544717582, -6.152242276, -7.920593701, -7.814950152, -7.569394634, -7.098614372, -6.621055742, -7.005273268, -5.228506624, -6.133347998, -7.094694378, -7.502121155, -6.421387994, -7.365518274, -6.56029922, -7.505576646, -6.712734211, -7.76939686, -5.833995757, -6.478938991, -6.301927719, -7.813404868, -5.880527769, -8.109991974, -7.426011131, -7.106484417, -7.143859808, -7.162465514, -7.527502436, -6.72628749, -6.892171927, -6.389360641, -6.842329188, -5.966441363, -6.799616203, -6.888379612, -6.734193663, -6.893579765, -6.807917556, -6.385880548, -6.551992277, -5.790426318, -6.683812728, -7.543620954, -8.089564461, -6.507605675, -6.558093608, -6.932019897, -6.798614557, -6.555946506, -6.774805976, -6.956557739, -7.483673835, -7.564453885, -7.368501551, -7.136831235, -7.075528183, -7.267364287, -5.494569402, -7.429827588, -8.095473472, -6.111711576, -7.183852076, -7.096435708, -6.760841048, -6.688201242, -7.303249033, -7.510828954, -7.430287399, -7.093902227, -7.221520691, -7.167964903, -6.704584595, -7.348389964, -6.594636385, -7.00262333, -7.028686624, -5.849829764, -6.309956994, -6.914012843, -6.597997642, -7.15436242, -7.814795868, -6.949464871, -6.740845777, -6.870214343, -7.278756844, -6.766404502, -7.039703779, -7.520373718, -6.91208459, -7.497652788, -6.43538567, -8.277221852, -7.406599861, -7.357098, -6.24499382, -8.076621149, -7.301618016, -5.680282352, -5.855423852, -6.950442701, -7.229759122, -6.929901779, -7.086768751, -6.856993158, -8.970061513, -8.07816015, -6.736476411, -6.082876556, -7.033521881, -6.552171374, -6.956634435, -6.55594965, -5.552449568, -7.452312161, -6.364008757, -7.383919944, -6.208608317, -8.11597605, -6.865846655, -6.295649455, -7.475435752, -4.692926787, -5.848020967, -5.530077517, -5.876313361, -6.751160186, -5.741180791, -6.627398987, -6.351661591, -6.265214902, -6.78001388, -7.069045964, -7.236244883, -7.080295485, -7.078962062, -7.089896516, -7.44986949, -6.968460215, -6.182179975, -6.744607392, -6.158209393, -6.498491783, -7.233552055, -6.369764077, -6.831943634, -7.391272505, -8.407157748, -5.525051949, -6.763708976, -5.909477015, -10.072594981, -6.830034059, -7.186693248, -7.350462877, -6.719026954, -7.326644518, -7.226382098, -7.10914987, -6.969980649, -7.489369229, -5.991680508, -6.027044662, -7.137413403, -7.185284024, -6.548369568, -6.183304585, -6.759670596, -7.390185329, -6.485654309, -8.339696908, -6.823280522, -6.148276389, -6.866603176, -7.189095753, -6.173861584, -6.309023348, -6.829274225, -8.0768996, -6.700038234, -7.290189345, -9.175545295, -7.966552399, -7.665337958, -6.002515283, -5.870202205, -7.153140349, -6.826503556, -6.500149766, -6.6714749, -6.216299364, -6.994851923, -7.446014121, -7.216913581, -8.001481838, -7.480312742, -6.841113605, -6.792871559, -6.820967196, -6.322735148, -6.674380398, -6.895943209, -7.269936562, -7.500370178, -7.545844459, -6.028063974, -6.674301438, -6.752147545, -9.660356956, -8.460721545, -6.723818234, -6.452728557, -6.858805166, -8.133075313, -6.505614159, -7.098791965, -6.755737785, -6.143612605, -7.646377269, -7.630484627, -6.395062163, -6.181726961, -7.767322083, -7.849792355, -6.7831229, -7.346074357, -9.085385634, -6.698867686, -7.666868624, -6.641386638, -7.480608052, -7.134078249, -7.331157458, -6.257056965, -7.41916747, -7.391880948, -7.226645147, -7.455847481, -8.927640215, -8.16440501, -6.036701661, -6.996071072, -6.908342035, -6.964567297, -6.766665558, -5.316304712, -5.0067775, -5.571202499, -6.754452594, -5.232053047, -6.928954883, -5.903519223, -6.401879302, -5.240696201, -7.185291484, -6.061888193, -6.790240278, -7.161542935, -6.164856066, -5.96397537, -6.835252512, -6.305197944, -6.929935701, -6.173500414, -6.533848784, -5.803619683, -6.99451995, -7.120301189, -9.350995526, -6.047731019, -7.283224089, -5.639023267, -6.93778844, -7.339894102, -7.751810259, -8.421857487, -7.423050214, -8.989304978, -5.229402284, -11.266765265, -7.129868296, -7.412310695, -6.046812392, -6.557937939, -6.74800633, -6.842560833, -6.43539353, -7.241069471, -7.248011005, -7.2164557, -7.044246987, -7.008245536, -9.873779791]}, {"log_prior": -0.699591886, "feature_log_probs": [-8.009066396, -5.627901768, -15.348891113, -15.348891113, -5.836918163, -6.453772685, -6.725801051, -6.480271644, -6.846490974, -6.904686411, -6.560160961, -6.965342087, -9.762721272, -7.09093521, -6.911424002, -7.239799259, -10.588236296, -6.25838041, -7.088602272, -7.034733144, -7.261036053, -6.925239145, -7.021398675, -6.497189703, -6.655005287, -6.588450906, -6.652187331, -7.164206515, -7.164075398, -7.105359517, -6.803467578, -6.755130113, -7.433577115, -7.500540642, -7.368791623, -6.45485817, -7.76316435, -10.594644136, -8.728847161, -7.118959017, -6.554563747, -7.475209298, -6.791665146, -6.267133651, -6.846157575, -6.037896203, -6.361037037, -6.768928303, -7.716715143, -6.141925223, -6.440852959, -6.720473433, -7.27421563, -6.94911332, -7.287242739, -7.602501602, -6.324414904, -6.950290723, -6.89157176, -6.41250996, -6.051426064, -6.780111871, -8.60358454, -8.723281697, -6.32565678, -7.205989498, -7.327669343, -7.84854861, -7.252075514, -6.831657618, -6.904133947, -15.348891113, -6.32127483, -6.479524058, -6.450530836, -7.621626202, -10.056656007, -7.42965668, -6.535868888, -6.836217933, -6.183500668, -8.619740846, -6.477768706, -7.402907224, -6.16097415, -7.113364721, -6.825417842, -6.917674717, -5.477229549, -5.890929491, -5.889559845, -5.58283483, -10.190082374, -6.360372118, -6.140306749, -7.327987474, -8.153770433, -5.975136691, -6.971982731, -5.656589751, -5.576656343, -6.115939123, -7.088908164, -8.884011209, -9.669077761, -6.514244752, -6.550218045, -6.634757423, -6.051320751, -7.177621752, -5.994644967, -15.348891113, -9.232299806, -6.27864395, -7.437626163, -6.516332315, -6.253159789, -5.70093524, -6.958553098, -6.90044648, -6.433685433, -6.428448011, -7.118777442, -6.968999445, -6.660740439, -7.060668227, -6.602283871, -10.119865968, -6.350556931, -6.938864609, -7.474227586, -6.363862004, -7.081311384, -6.706760719, -9.898596845, -5.775859851, -6.857254601, -6.550464466, -7.270795739, -7.889305628, -6.584369174, -7.021595089, -8.544706085, -6.984882093, -5.966155922, -6.284792187, -8.592314959, -8.464435982, -6.783668172, -6.567051481, -6.269810107, -5.585928308, -7.136977227, -7.027603709, -7.649901036, -7.208823863, -10.662795248, -11.511861498, -8.939928904, -9.265518028, -10.189824538, -7.665487906, -7.699635023, -7.510495346, -7.814986967, -6.597581827, -8.423808624, -9.115189837, -7.509812746, -6.242173365, -7.815437764, -6.874692671, -6.521870169, -9.102591883, -7.70270961, -7.680764116, -6.357908442, -6.421625441, -6.261427817, -9.573165279, -6.284081212, -7.004489512, -7.226031973, -10.330431937, -6.853191933, -7.050718368, -7.678124488, -6.626712931, -5.644848791, -6.581477572, -7.232335025, -5.417719333, -6.182226877, -6.387712479, -8.232028954, -8.204852697, -7.934431657, -6.244817303, -6.836409896, -7.114257198, -9.910798575, -7.354291444, -7.317283247, -6.555067995, -7.497348714, -6.983404694, -5.923388583, -6.290044656, -6.938820915, -5.845981992, -7.147272292, -7.185659053, -9.574119509, -9.027270402, -7.37079854, -12.171911277, -13.346918143, -5.996141585, -6.159912615, -6.345606813, -8.26497209, -5.284183187, -7.733511012, -6.93511503, -7.574277467, -6.241386815, -6.780501603, -6.877423383, -6.329946783, -6.420111702, -6.685388637, -6.772402417, -7.678695004, -8.440938369, -8.596970445, -6.085619732, -6.626716264, -7.494480031, -7.419691987, -6.987282605, -7.544170878, -7.183100967, -7.998886316, -6.43307186, -7.366776752, -7.155512297, -6.84180006, -6.380907036, -7.875787477, -7.008546969, -6.067858066, -7.658740849, -6.687449882, -6.283933645, -6.321033164, -6.130960889, -6.370085717, -6.726181321, -7.207247182, -7.171555275, -6.661999283, -7.251267643, -5.878811362, -6.808029453, -7.00990793, -7.861095155, -7.804908731, -6.18402704, -7.061091281, -6.305549127, -6.846770307, -6.732362503, -5.727644446, -6.993679153, -6.609518183, -7.843337476, -6.816560656, -6.09160447, -7.310386965, -8.132971974, -6.229086771, -5.521042881, -5.951893261, -6.598269241, -6.887485427, -6.369502077, -11.536683762, -9.608462218, -6.480922751, -7.032655984, -6.843788374, -5.759312964, -5.504623543, -5.858133202, -6.213307994, -6.377184637, -5.78537374, -6.142928364, -6.940557544, -6.760033972, -6.511054905, -6.283670963, -7.223430174, -6.278017385, -8.50183014, -6.362781498, -6.243991827, -9.091461829, -5.817985703, -5.726190889, -5.869623354, -6.418616087, -6.367908589, -6.94730186, -5.527840397, -8.003206355, -6.42368993, -6.155999876, -6.022677532, -7.894257176, -6.408140924, -7.027280878, -6.123017961, -6.561736136, -8.920630788, -6.085969859, -6.691125296, -6.665100287, -7.13112865, -7.094250471, -6.169414792, -6.664641825, -7.2763974, -7.213194438, -6.904533873, -6.634797773, -6.109657715, -8.151028843, -8.977649421, -6.747890588, -8.443295486, -8.339242699, -8.72424852, -7.591980642, -6.248873005, -7.780085344, -8.502303587, -6.740498621, -8.225067221, -7.608522499, -6.621426004, -11.218090695, -9.185160956, -9.556798803, -6.206117511, -7.150407165, -7.116154356, -6.067246653, -15.348891113, -7.378885484, -7.025887777, -15.348891113, -12.243675561, -6.58612173, -8.227018561, -7.097584072, -6.195615612, -5.622748311, -6.826215953, -6.17648847, -15.348891113, -6.617447716, -7.849368943, -6.555603584, -6.920105444, -6.424690996, -7.1793225, -6.26028196, -6.367377809, -6.236309527, -6.62728394, -7.054494147, -6.304171276, -6.216280629, -6.412188705, -7.85423303, -5.492771049, -6.187925813, -6.342372666, -7.521090282, -7.197351758, -6.659587903, -7.526386893, -7.129680986, -7.187013042, -10.230188829, -6.017042786, -5.701263546, -6.421875621, -5.523493625, -7.730099918, -6.773613905, -7.311802334, -8.126542566, -8.614516371, -9.681211215, -5.70069321, -6.646606396, -5.935842405, -6.21821949, -6.782686438, -5.80915882, -5.853708273, -6.261275064, -6.882480134, -7.0674525, -6.959699989, -6.585129633, -5.33072366, -6.235138652, -6.004543721, -6.188070063, -6.942488394, -7.466284504, -6.851561879, -5.957537375, -7.079036731, -6.538910508, -6.580722012, -6.619661862, -6.283060564, -6.285354382, -6.356446494, -7.600282605, -6.070075559, -7.279100636, -7.501932448, -7.258321857, -8.154390192, -5.93786978, -6.2868663, -6.527626046, -6.662082687, -7.482318418, -6.217273904, -6.620969618, -8.573060033, -5.613828934, -8.109482215, -6.186547642, -6.17553858, -5.937306055, -8.005359078, -6.960041057, -7.425213335, -7.384350451, -7.16236564, -5.558608475, -6.68362856, -6.729029668, -7.526574889, -7.087513177, -5.117302806, -6.3404003, -15.348891113, -7.714536326, -8.628709199, -8.820759808, -6.733537509, -7.164967329, -7.339085475, -6.220779381, -8.096477948, -7.814502767, -6.893925384, -6.510069502, -6.728055062, -6.789169183, -7.755454653, -6.205812798, -6.530885234, -6.295765977, -6.463345816, -8.230840194, -7.702940397, -6.90599912, -6.787427669, -6.446117909, -7.29901041, -6.523144808, -10.040543207, -7.813127475, -6.834830827, -7.694997099, -6.425607758, -6.965815926, -9.299948409, -6.993962374, -7.22869681, -6.91406183, -7.58216937, -8.85727611, -6.281593707, -7.208601341, -6.192290834, -8.565414909, -6.039815971, -6.830823062, -6.746642642, -5.925498873, -6.250654403, -6.595538908, -7.766019981, -6.775667054, -8.637162185, -8.32777769, -5.992462771, -6.323270953, -6.929323785, -6.169443247, -6.195643421, -6.867611891, -7.139241507, -6.511589379, -8.669142651, -6.480690508, -6.080661929, -6.567127517, -6.237690487, -6.6102995, -7.237725838, -7.038271008, -6.566985306, -7.133818771, -6.111574169, -7.033000472, -6.386608593, -6.365301442, -6.681108833, -6.336892089, -7.895557036, -8.409161445, -6.628191012, -6.683377746, -6.398027066, -6.63962347, -7.524406376, -6.219199767, -6.932032756, -6.89632656, -6.244979071, -8.290042676, -6.698033408, -7.506047517, -8.571117245, -7.273826534, -6.29730825, -7.527935226, -6.397764071, -6.417616248, -6.520600412, -6.867300131, -6.698185689, -6.813838801, -9.556308594, -6.357146697, -6.702671986, -5.966470804, -6.579714695, -6.947064026, -5.825990885, -5.784824833, -6.777275618, -6.577330125, -6.685344127, -8.382081766, -6.868869487, -6.726853398, -7.100301989, -6.797350638, -8.690060397, -7.346558535, -6.513748542, -7.742655459, -8.718996127, -7.240337765, -7.608869515, -7.315791059, -6.048194176, -8.478148521, -7.337829569, -6.74313824, -6.675258358, -6.689454946, -6.560372648, -6.84026809, -6.832420309, -6.766822127, -5.755736053, -6.821004936, -6.460717154, -6.711594732, -8.420586577, -15.348891113, -6.831612219, -6.480694636, -6.692224759, -7.488964257, -7.729997671, -6.400190379, -5.855648959, -6.956968862, -6.257010388, -5.988175957, -7.4265428, -8.983815628, -6.342396604, -6.312401977, -6.983823144, -8.06984161, -6.960307794, -6.413608702, -7.396895317, -6.345275135, -7.61316666, -6.418386305, -7.342391592, -9.28575194, -6.384529382, -7.738674854, -8.511221996, -6.344562536, -6.814765255, -7.380008873, -6.015417603, -7.245311646, -7.670712207, -8.235791702, -6.362758747, -7.38978531, -6.111840479, -7.508816478, -6.756367248, -6.997145862, -7.153583434, -6.582634172, -6.693823805, -6.536771631, -6.590659128, -6.45033686, -6.916925494, -6.832946119, -5.944900782, -6.700423283, -5.715102847, -7.354177489, -7.075531362, -6.96188648, -6.841371055, -6.424048406, -7.579226555, -6.682880655, -6.702166171, -9.126141511, -9.521746419, -6.673062849, -7.407708498, -9.638743072, -15.348891113, -11.551996547, -15.348891113, -7.027015859, -7.196108659, -6.120723375, -6.410165434, -7.019572914, -6.324242202, -6.297632216, -7.341426007, -6.663437146, -7.264656119, -6.667722051, -7.401010891, -6.578741373, -8.218604196, -5.878526472, -8.684754125, -7.089733828, -5.927994295, -6.661362434, -6.673088728, -9.851410792, -6.443214278, -7.834592379, -8.295564907, -6.115105111, -7.828636093, -6.787021572, -6.849919134, -6.853389195, -6.643851722, -6.50750789, -6.578537597, -7.407666059, -7.663897244, -7.508107194, -15.348891113, -5.959362253, -6.373690047, -6.368393393, -6.705131318, -6.792156654, -6.739619349, -7.255971218, -7.296543411, -6.438788333, -6.511052229, -6.086838736, -5.559408558, -5.578412384, -6.354391006, -8.296353966, -5.930414991, -6.236858507, -10.003926095, -6.225083382, -6.486599632, -7.211163725, -6.933855756, -6.949833207, -6.796920592, -7.134236497, -7.88983523, -5.90611451, -6.7198135, -7.028846959, -6.261648527, -6.522403109, -6.350832901, -6.52935716, -6.591772671, -6.634620926, -7.049330497, -6.686892546, -6.863423766, -6.479608241, -6.144935071, -7.228846094, -7.660812637, -8.031723174, -8.135429252, -8.283876592, -9.027788188, -5.500182512, -6.02856646, -6.939850439, -7.386661909, -9.373921774, -6.723753343, -7.05340561, -6.122375665, -6.665934106, -6.501319751, -7.876143219, -6.929508865, -5.475515866, -6.964895506, -7.980944299, -6.402428034, -6.60698801, -8.64469196, -7.605740148, -5.479004716, -6.785576805, -6.68273514, -5.968387185, -5.442254368, -6.463979196, -6.986920595, -6.438758415, -5.923263254, -6.479487648, -6.353366148, -8.34994837, -7.682557244, -8.159871495, -5.883930953, -6.402587422, -5.993579166, -5.503425559, -6.450972684, -6.63181375, -5.522193579, -6.418959291, -6.264248427, -6.909662036, -5.3329784, -5.416759307, -6.718433539, -6.345617135]}], "model_type": "nb", "positive_class_label": "computers_and_electronics", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"channel": [130, 3.601264168], "multi": [452, 3.492064876], "keys": [364, 3.670944089], "core": [175, 3.208702465], "doing": [219, 2.468002744], "work": [789, 1.703183107], "intel": [346, 4.134781203], "far": [256, 2.614443286], "including": [330, 2.217376547], "physical": [513, 3.133667279], "based": [84, 2.017144064], "designed": [198, 2.87037666], "process": [539, 2.170309037], "data": [188, 2.01517362], "times": [722, 2.370724337], "able": [43, 2.136407485], "information": [336, 2.12755787], "way": [776, 1.601865334], "similar": [645, 2.486753294], "uses": [759, 2.402110651], "point": [520, 2.188871054], "june": [360, 3.863628433], "bit": [93, 2.402110651], "key": [363, 2.329453005], "little": [397, 2.210173635], "17": [13, 3.176750865], "using": [760, 1.603168266], "does": [217, 1.937556626], "require": [585, 2.842977686], "knowledge": [368, 3.282810437], "memory": [433, 2.87037666], "cache": [112, 3.734795561], "lines": [392, 3.268921325], "machine": [415, 2.898547537], "learning": [380, 3.401467981], "need": [457, 1.564800389], "root": [602, 3.311181134], "blog": [97, 2.825120068], "post": [526, 2.32139927], "user": [756, 2.271845456], "space": [659, 2.781823263], "team": [707, 2.898547537], "server": [629, 2.410844331], "infrastructure": [337, 3.591694717], "feel": [262, 2.607300398], "remote": [580, 3.355305939], "login": [405, 3.620682254], "example": [247, 1.963388321], "website": [779, 2.972655509], "use": [753, 1.436615762], "used": [754, 1.66779371], "library": [385, 3.189409262], "internet": [350, 2.765016144], "access": [44, 2.25419052], "method": [437, 2.952350243], "say": [610, 2.334858424], "security": [620, 2.639853001], "needs": [459, 2.362332679], "hardware": [304, 2.852027521], "october": [474, 3.803003811], "won": [787, 2.565482459], "issue": [355, 2.756717341], "unique": [744, 3.058269262], "research": [588, 2.962451339], "shared": [639, 3.255222481], "resources": [590, 3.036168915], "software": [655, 2.486753294], "issues": [356, 2.71622598], "development": [203, 2.777594926], "customers": [187, 3.466531574], "products": [544, 3.047158036], "continue": [171, 3.115756353], "understand": [743, 2.777594926], "working": [790, 2.31340988], "ensure": [237, 3.063871517], "users": [758, 2.50908277], "new": [462, 1.428919187], "report": [582, 3.109856631], "potential": [527, 3.092363473], "product": [542, 2.962451339], "simply": [647, 2.41965496], "secure": [619, 3.248442794], "isn": [354, 2.531922262], "results": [594, 2.781823263], "main": [416, 2.68113466], "reason": [572, 2.736266731], "told": [725, 3.121691088], "help": [309, 1.997612193], "choose": [133, 2.811933064], "money": [447, 2.957388037], "performance": [507, 2.777594926], "companies": [150, 3.127661255], "future": [280, 2.654668087], "operating": [483, 3.080869094], "updates": [749, 3.385842663], "hit": [313, 3.255222481], "play": [519, 2.962451339], "github": [287, 3.115756353], "private": [535, 3.052698217], "running": [606, 2.222207475], "updated": [748, 3.208702465], "called": [113, 2.239301908], "port": [524, 2.977796909], "days": [192, 2.72419415], "day": [191, 2.343021734], "half": [300, 3.041648381], "seen": [621, 2.744396857], "risk": [600, 3.228375231], "standard": [672, 2.781823263], "easily": [227, 2.62888397], "files": [266, 2.744396857], "love": [412, 2.87037666], "linux": [395, 3.003908053], "home": [314, 2.41965496], "check": [131, 2.170309037], "state": [676, 2.603747997], "article": [73, 2.669705964], "14": [9, 2.988159696], "popular": [523, 2.889068793], "things": [718, 2.001488167], "years": [797, 2.163436157], "original": [489, 2.884362902], "testing": [713, 3.063871517], "pretty": [532, 2.82070505], "recent": [573, 2.879679053], "different": [209, 1.858775748], "wiki": [783, 4.151310505], "following": [271, 2.134187728], "guide": [299, 3.063871517], "installed": [342, 3.127661255], "16": [11, 2.847492366], "watch": [774, 3.268921325], "best": [88, 2.057390945], "setup": [637, 2.838483296], "dns": [215, 3.901849646], "domain": [220, 3.333000182], "net": [460, 3.433470712], "kerberos": [361, 5.35528331], "ip": [352, 3.170481252], "address": [55, 2.654668087], "192": [16, 4.151310505], "168": [12, 4.220303377], "200": [18, 3.433470712], "role": [601, 3.282810437], "controller": [173, 3.876207215], "make": [418, 1.505135708], "sure": [695, 2.118785883], "date": [190, 3.14578864], "install": [340, 2.912936274], "want": [772, 1.645784568], "kernel": [362, 3.968988949], "sudo": [691, 3.713055574], "update": [747, 2.71622598], "build": [105, 2.396330288], "dev": [200, 3.901849646], "config": [157, 3.466531574], "installation": [341, 3.325674142], "ask": [74, 2.952350243], "setting": [635, 2.803237357], "important": [325, 2.134187728], "configuration": [158, 2.71622598], "network": [461, 2.493082429], "change": [128, 2.086559679], "box": [102, 3.215217146], "currently": [185, 2.838483296], "set": [634, 1.847060133], "search": [616, 2.781823263], "file": [265, 2.402110651], "makes": [419, 2.316065924], "don": [221, 1.730942377], "support": [692, 2.210173635], "required": [586, 2.643536247], "live": [398, 2.756717341], "add": [50, 2.165721872], "changes": [129, 2.68113466], "effect": [230, 3.362853145], "certain": [126, 2.816309439], "going": [291, 2.09932581], "protocol": [551, 3.393624804], "stop": [681, 2.865757714], "service": [631, 2.279508328], "org": [488, 3.282810437], "start": [673, 1.993751184], "actually": [49, 2.292411733], "default": [194, 2.579228379], "conf": [156, 4.102520341], "doesn": [218, 2.140861835], "try": [736, 2.305483815], "run": [605, 2.031046969], "tool": [727, 2.803237357], "mode": [443, 3.058269262], "specify": [664, 3.691778176], "command": [146, 2.704391522], "old": [479, 2.548561581], "place": [516, 2.198282889], "note": [469, 2.477334072], "password": [501, 3.151904867], "remove": [581, 3.121691088], "points": [521, 3.176750865], "external": [251, 3.133667279], "requests": [584, 3.304012645], "function": [278, 3.03071931], "test": [712, 2.579228379], "include": [327, 2.515555285], "tcp": [706, 3.768318253], "host": [315, 3.009213105], "100": [5, 2.669705964], "comes": [145, 2.455694897], "link": [393, 2.932449089], "created": [181, 2.496262082], "location": [402, 3.127661255], "authentication": [76, 3.554307185], "enter": [238, 3.069505335], "connect": [161, 2.829554665], "code": [143, 2.279508328], "card": [118, 3.378120617], "board": [98, 3.208702465], "probably": [536, 2.541872593], "know": [367, 1.901774633], "arduino": [71, 3.955195626], "short": [640, 2.68113466], "version": [766, 2.334858424], "program": [545, 2.856583338], "interesting": [347, 3.058269262], "turn": [738, 2.658406409], "objects": [473, 3.851205913], "smart": [653, 3.474970443], "ones": [480, 2.87037666], "having": [305, 2.370724337], "ve": [765, 1.976558784], "wanted": [773, 3.041648381], "send": [624, 2.803237357], "text": [714, 3.092363473], "message": [435, 3.092363473], "kind": [366, 2.669705964], "got": [294, 2.5723318], "cloud": [141, 3.151904867], "connected": [162, 3.014546451], "talk": [702, 2.967540408], "mean": [429, 2.947337701], "email": [231, 3.075171073], "phone": [511, 3.304012645], "complete": [152, 2.748486842], "web": [778, 2.431524536], "applications": [67, 2.803237357], "problem": [537, 2.428543908], "getting": [285, 2.434514075], "thing": [717, 2.367919286], "media": [431, 3.133667279], "lot": [411, 2.276947508], "left": [382, 2.669705964], "led": [381, 3.347815268], "projects": [548, 3.115756353], "come": [144, 2.259203062], "think": [719, 2.259203062], "30": [35, 2.669705964], "minutes": [441, 3.121691088], "enable": [233, 2.977796909], "video": [768, 2.998630995], "shows": [642, 2.967540408], "ability": [42, 2.93738737], "register": [575, 4.011548563], "easier": [226, 2.794616614], "world": [792, 2.193565899], "systems": [697, 2.712265579], "os": [490, 3.362853145], "order": [487, 2.334858424], "apple": [65, 3.370457744], "drive": [223, 3.241708762], "cases": [122, 2.879679053], "later": [375, 2.410844331], "provided": [553, 3.052698217], "available": [78, 2.04921094], "stored": [684, 3.221774547], "means": [430, 2.177229479], "basic": [85, 2.803237357], "right": [598, 2.027054948], "input": [338, 3.433470712], "look": [408, 1.978454519], "instance": [343, 3.047158036], "type": [740, 2.302855692], "complex": [153, 3.139709594], "result": [593, 2.603747997], "simple": [646, 2.227061853], "making": [420, 2.266769303], "easy": [228, 2.231939912], "steps": [680, 2.962451339], "application": [66, 2.579228379], "step": [679, 2.558679711], "requires": [587, 2.893796934], "output": [491, 3.121691088], "string": [686, 3.681306876], "number": [471, 2.131972888], "percent": [506, 3.449864522], "handle": [302, 3.098160591], "copy": [174, 3.098160591], "section": [618, 2.927535074], "open": [482, 2.095052299], "view": [769, 2.790333952], "shown": [641, 3.036168915], "display": [214, 3.378120617], "click": [138, 2.952350243], "button": [109, 3.545174702], "starting": [675, 2.903320816], "0000": [2, 5.606597738], "group": [297, 2.665925242], "values": [763, 3.121691088], "possible": [525, 2.227061853], "goes": [290, 3.047158036], "case": [121, 2.179546977], "value": [762, 2.464911552], "rest": [592, 2.865757714], "switch": [696, 3.318401382], "area": [72, 3.086599768], "write": [793, 2.555295613], "additional": [54, 2.700477623], "computer": [155, 2.650943688], "ssh": [668, 3.914921727], "learn": [379, 2.708320801], "list": [396, 2.222207475], "share": [638, 2.636183272], "usually": [761, 2.68113466], "create": [180, 2.088676082], "public": [556, 2.673501035], "save": [609, 2.732226321], "image": [322, 2.865757714], "end": [235, 2.053292578], "avoid": [79, 2.917778899], "environment": [241, 2.889068793], "inside": [339, 2.829554665], "commands": [147, 3.378120617], "log": [404, 3.075171073], "backup": [81, 3.83893582], "rsync": [603, 5.943069975], "25": [31, 3.139709594], "local": [401, 2.586172852], "options": [486, 2.647233109], "yes": [798, 2.988159696], "configure": [159, 3.170481252], "browser": [103, 3.311181134], "allow": [57, 2.558679711], "outside": [492, 2.998630995], "bin": [92, 3.968988949], "client": [139, 2.962451339], "single": [648, 2.203022234], "allows": [58, 2.522069966], "connections": [164, 3.235019773], "servers": [630, 2.99338164], "close": [140, 2.947337701], "directory": [212, 3.235019773], "did": [206, 2.365122081], "15": [10, 2.736266731], "true": [734, 2.72419415], "10": [4, 1.980353855], "50": [40, 2.932449089], "speed": [665, 3.151904867], "great": [296, 2.203022234], "connection": [163, 2.861160005], "multiple": [453, 2.399216293], "line": [391, 2.443536692], "instead": [344, 2.172610533], "store": [683, 2.748486842], "job": [357, 2.889068793], "thought": [720, 2.982964879], "rules": [604, 3.378120617], "internal": [349, 3.262048446], "session": [633, 3.691778176], "supported": [693, 3.248442794], "request": [583, 2.861160005], "useful": [755, 2.712265579], "22": [28, 3.333000182], "read": [567, 2.163436157], "certificate": [127, 3.968988949], "contains": [168, 3.075171073], "instructions": [345, 3.362853145], "year": [796, 2.334858424], "ago": [56, 3.036168915], "project": [547, 2.558679711], "script": [615, 3.340380289], "family": [255, 3.262048446], "apply": [68, 3.262048446], "non": [468, 2.720202128], "error": [242, 3.115756353], "lock": [403, 3.928166954], "disk": [213, 3.536124866], "hand": [301, 2.794616614], "task": [704, 3.433470712], "necessary": [456, 2.917778899], "node": [466, 3.536124866], "needed": [458, 2.541872593], "management": [422, 2.879679053], "base": [83, 3.401467981], "individual": [334, 3.098160591], "tasks": [705, 3.474970443], "tools": [728, 2.68113466], "central": [125, 3.670944089], "previous": [533, 2.967540408], "level": [384, 2.399216293], "general": [283, 2.756717341], "structure": [687, 3.296895177], "components": [154, 3.268921325], "follow": [270, 2.700477623], "12": [7, 2.548561581], "versions": [767, 3.221774547], "major": [417, 2.972655509], "nodes": [467, 4.011548563], "remember": [579, 2.893796934], "plan": [517, 2.988159696], "looks": [410, 2.852027521], "reach": [566, 3.228375231], "download": [222, 2.967540408], "package": [493, 3.441634023], "site": [649, 2.852027521], "header": [307, 3.914921727], "writing": [794, 2.816309439], "io": [351, 4.151310505], "specific": [662, 2.50908277], "username": [757, 3.914921727], "creating": [182, 2.927535074], "especially": [243, 2.720202128], "current": [184, 2.51880732], "long": [406, 1.986073604], "course": [178, 2.541872593], "action": [47, 3.19579906], "known": [369, 2.596680829], "git": [286, 4.118520683], "index": [332, 3.757018698], "control": [172, 2.390583145], "global": [289, 3.355305939], "tell": [709, 2.786069553], "includes": [329, 2.865757714], "page": [494, 2.531922262], "latest": [376, 2.967540408], "13": [8, 2.988159696], "likely": [388, 2.658406409], "takes": [700, 2.669705964], "source": [657, 2.410844331], "configured": [160, 3.325674142], "ll": [399, 1.989905026], "credentials": [183, 3.941589974], "significant": [644, 3.268921325], "path": [503, 3.115756353], "adding": [52, 3.03071931], "account": [46, 2.803237357], "trying": [737, 2.769191516], "parameter": [496, 3.82681446], "started": [674, 2.437512578], "identity": [321, 3.82681446], "added": [51, 2.68113466], "option": [485, 2.736266731], "names": [455, 3.208702465], "regular": [576, 3.248442794], "form": [274, 2.728202171], "url": [750, 3.660687589], "specified": [663, 3.691778176], "ssl": [669, 4.056000326], "self": [623, 3.003908053], "trust": [735, 3.630534551], "return": [596, 2.957388037], "gets": [284, 2.794616614], "common": [148, 2.596680829], "addition": [53, 2.967540408], "provide": [552, 2.365122081], "mind": [440, 2.842977686], "automatically": [77, 2.807575759], "existing": [249, 2.977796909], "design": [197, 2.842977686], "ways": [777, 2.614443286], "care": [120, 3.03071931], "language": [371, 3.208702465], "party": [499, 3.401467981], "built": [107, 2.558679711], "particular": [497, 2.856583338], "typically": [742, 3.047158036], "review": [597, 3.275841768], "given": [288, 2.528627366], "sign": [643, 3.282810437], "center": [124, 3.228375231], "wikipedia": [784, 4.719294543], "services": [632, 2.589663257], "defined": [196, 3.433470712], "policy": [522, 3.441634023], "developers": [202, 3.296895177], "related": [577, 2.786069553], "terms": [711, 3.115756353], "details": [199, 2.748486842], "works": [791, 2.329453005], "messages": [436, 3.757018698], "directly": [211, 2.677310564], "database": [189, 3.275841768], "implementation": [324, 3.554307185], "master": [426, 3.311181134], "sent": [626, 3.215217146], "id": [319, 3.235019773], "lower": [414, 3.19579906], "limit": [389, 3.545174702], "second": [617, 2.356777109], "difference": [208, 3.139709594], "supports": [694, 3.183060035], "resource": [589, 3.545174702], "images": [323, 3.275841768], "2013": [20, 3.620682254], "apache": [62, 3.888946241], "container": [166, 3.928166954], "containers": [167, 4.256671021], "volume": [771, 3.745845397], "big": [90, 2.437512578], "custom": [186, 3.311181134], "devices": [205, 2.773384394], "let": [383, 2.065638414], "docker": [216, 4.134781203], "better": [89, 2.082340264], "pc": [505, 3.82681446], "platform": [518, 2.917778899], "early": [225, 2.852027521], "social": [654, 3.098160591], "present": [530, 3.075171073], "features": [260, 2.548561581], "game": [281, 3.241708762], "human": [318, 3.080869094], "0a": [3, 6.166213526], "bytes": [111, 3.928166954], "taking": [701, 2.922645088], "calls": [114, 3.221774547], "games": [282, 3.914921727], "reading": [568, 2.898547537], "processes": [540, 3.554307185], "free": [277, 2.224631718], "entry": [240, 3.56352384], "32": [36, 3.393624804], "block": [95, 3.275841768], "jump": [359, 3.509456619], "21": [27, 3.449864522], "sample": [608, 3.713055574], "limited": [390, 3.019908394], "range": [563, 3.058269262], "edit": [229, 3.255222481], "looking": [409, 2.474213944], "raspberry": [564, 3.982975191], "pi": [514, 3.83893582], "today": [723, 2.538544803], "usb": [752, 3.393624804], "recently": [574, 2.988159696], "2012": [19, 3.509456619], "feature": [259, 2.903320816], "office": [477, 3.466531574], "finally": [268, 2.769191516], "experience": [250, 2.618033954], "device": [204, 2.665925242], "entire": [239, 2.977796909], "model": [444, 2.912936274], "api": [63, 3.378120617], "app": [64, 3.009213105], "didn": [207, 2.708320801], "matter": [427, 2.856583338], "really": [571, 2.116604858], "processing": [541, 3.527156196], "problems": [538, 2.744396857], "clear": [137, 2.917778899], "increase": [331, 3.098160591], "quite": [562, 2.712265579], "consider": [165, 2.732226321], "mobile": [442, 3.441634023], "provides": [555, 2.736266731], "history": [312, 3.041648381], "class": [136, 3.202229951], "thread": [721, 4.011548563], "solution": [656, 2.917778899], "types": [741, 2.962451339], "power": [528, 2.512313791], "programming": [546, 3.474970443], "blocks": [96, 3.851205913], "high": [310, 2.161155655], "operations": [484, 3.401467981], "runs": [607, 3.086599768], "screen": [614, 3.304012645], "events": [246, 3.304012645], "idea": [320, 2.632526961], "written": [795, 2.957388037], "higher": [311, 2.912936274], "low": [413, 2.632526961], "context": [170, 3.500722939], "apps": [70, 3.370457744], "behavior": [87, 3.610926079], "release": [578, 3.103991511], "large": [373, 2.538544803], "scale": [611, 3.28982801], "cpu": [179, 3.56352384], "small": [652, 2.227061853], "faster": [258, 3.333000182], "theory": [716, 3.745845397], "quality": [558, 3.133667279], "question": [559, 2.908116988], "answer": [61, 3.164250703], "frame": [276, 3.997159826], "parts": [498, 3.103991511], "larger": [374, 3.133667279], "away": [80, 2.720202128], "good": [292, 1.886081199], "news": [463, 3.109856631], "interface": [348, 2.972655509], "rate": [565, 3.176750865], "format": [275, 3.355305939], "extra": [252, 2.972655509], "ok": [478, 3.466531574], "months": [450, 2.988159696], "sense": [625, 3.019908394], "windows": [785, 2.760858134], "building": [106, 2.760858134], "functions": [279, 3.474970443], "storage": [682, 3.139709594], "hard": [303, 2.493082429], "buy": [110, 2.952350243], "house": [317, 3.189409262], "settings": [636, 2.998630995], "traditional": [730, 3.378120617], "virtual": [770, 3.378120617], "2016": [23, 3.318401382], "google": [293, 2.834009016], "facebook": [253, 3.650535217], "offer": [475, 2.972655509], "twitter": [739, 3.458163325], "deal": [193, 3.058269262], "focus": [269, 2.94235016], "table": [698, 3.296895177], "business": [108, 2.781823263], "fact": [254, 2.60020817], "content": [169, 2.847492366], "load": [400, 3.075171073], "developer": [201, 3.378120617], "figure": [264, 3.183060035], "property": [550, 3.768318253], "series": [628, 3.086599768], "src": [667, 5.154612614], "style": [689, 3.362853145], "object": [472, 3.458163325], "retrieved": [595, 4.238321882], "body": [99, 3.098160591], "fast": [257, 2.998630995], "11": [6, 2.807575759], "included": [328, 3.052698217], "wordpress": [788, 4.353834769], "total": [729, 3.325674142], "field": [263, 3.215217146], "properties": [549, 3.582215973], "status": [678, 3.086599768], "special": [661, 2.947337701], "taken": [699, 3.03071931], "modern": [445, 3.133667279], "states": [677, 3.296895177], "lead": [378, 3.063871517], "40": [39, 3.241708762], "27": [32, 3.650535217], "28": [33, 3.713055574], "29": [34, 3.640484882], "20": [17, 2.607300398], "23": [29, 3.347815268], "en": [232, 3.997159826], "study": [688, 3.527156196], "real": [570, 2.384868844], "usage": [751, 3.262048446], "define": [195, 3.713055574], "cause": [123, 3.158058732], "white": [782, 3.572826233], "bad": [82, 2.903320816], "approach": [69, 2.972655509], "active": [48, 3.262048446], "past": [502, 2.811933064], "various": [764, 2.807575759], "according": [45, 2.760858134], "size": [651, 2.752593624], "longer": [407, 2.712265579], "links": [394, 3.393624804], "select": [622, 3.058269262], "000": [1, 2.807575759], "response": [591, 2.998630995], "personal": [510, 2.99338164], "questions": [560, 2.967540408], "cost": [176, 2.852027521], "online": [481, 2.967540408], "examples": [248, 3.282810437], "pay": [504, 3.103991511], "transfer": [732, 3.768318253], "pass": [500, 3.333000182], "push": [557, 3.492064876], "event": [245, 3.158058732], "engine": [236, 3.713055574], "attack": [75, 3.791307771], "enabled": [234, 3.202229951], "buffer": [104, 4.256671021], "groups": [298, 3.318401382], "went": [781, 3.121691088], "university": [746, 3.355305939], "offers": [476, 3.183060035], "driver": [224, 3.779746949], "company": [151, 2.636183272], "term": [710, 3.14578864], "2019": [26, 3.458163325], "microsoft": [438, 3.262048446], "nginx": [464, 4.690307006], "php": [512, 4.185212057], "module": [446, 3.572826233], "quickly": [561, 2.811933064], "production": [543, 3.115756353], "kubernetes": [370, 5.20113263], "cluster": [142, 3.997159826], "monitor": [448, 3.425373502], "battery": [86, 4.026147362], "cards": [119, 3.955195626], "serial": [627, 3.941589974], "2017": [24, 3.591694717], "november": [470, 4.185212057], "technology": [708, 2.967540408], "market": [425, 3.03071931], "2015": [22, 3.483481133], "head": [306, 3.036168915], "map": [423, 3.650535217], "took": [726, 2.903320816], "industry": [335, 3.333000182], "sql": [666, 4.395507466], "target": [703, 3.340380289], "maybe": [428, 3.058269262], "force": [273, 3.393624804], "traffic": [731, 3.304012645], "languages": [372, 3.997159826], "spark": [660, 4.690307006], "practice": [529, 3.268921325], "mysql": [454, 4.608068908], "science": [613, 3.325674142], "million": [439, 3.202229951], "ready": [569, 2.947337701], "amazon": [59, 3.362853145], "law": [377, 3.876207215], "week": [780, 2.834009016], "month": [449, 3.063871517], "march": [424, 3.82681446], "provider": [554, 3.888946241], "pages": [495, 3.41734133], "china": [132, 4.2026038], "price": [534, 3.202229951], "india": [333, 4.690307006], "jtag": [358, 6.166213526], "digital": [210, 3.441634023], "pin": [515, 3.803003811], "person": [509, 2.947337701], "18": [14, 3.019908394], "19": [15, 3.409373161], "2018": [25, 3.466531574], "life": [386, 2.531922262], "food": [272, 3.518267249], "period": [508, 3.325674142], "press": [531, 3.311181134], "light": [387, 3.208702465], "24": [30, 3.139709594], "community": [149, 3.052698217], "improve": [326, 3.208702465], "sites": [650, 3.458163325], "80": [41, 3.28982801], "country": [177, 3.492064876], "mr": [451, 4.118520683], "2014": [21, 3.441634023], "token": [724, 4.313829435], "success": [690, 3.325674142], "3d": [38, 5.026779243], "3b": [37, 6.04843049], "rights": [599, 3.928166954], "sso": [670, 5.606597738], "health": [308, 3.325674142], "story": [685, 3.098160591], "stage": [671, 3.691778176], "european": [244, 4.417013671], "came": [115, 3.086599768], "00": [0, 4.040962448], "book": [100, 3.115756353], "south": [658, 4.151310505], "water": [775, 3.56352384], "hours": [316, 3.151904867], "camera": [116, 3.982975191], "car": [117, 3.713055574], "city": [135, 3.370457744], "man": [421, 3.333000182], "school": [612, 3.474970443], "travel": [733, 3.713055574], "black": [94, 3.483481133], "february": [261, 3.968988949], "theme": [715, 4.333632062], "government": [295, 3.745845397], "books": [101, 3.745845397], "united": [745, 3.779746949], "women": [786, 3.757018698], "american": [60, 3.304012645], "film": [267, 4.294411349], "men": [434, 3.803003811], "york": [799, 3.441634023], "kickstarter": [365, 5.412441724], "bike": [91, 4.582093421], "medicine": [432, 4.484454952], "christianity": [134, 6.453895598], "islam": [353, 6.453895598], "nissan": [465, 6.299744919]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_finance.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_finance.json deleted file mode 100644 index bc96f8f..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_finance.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.685337414, "feature_log_probs": [-5.087688055, -5.74010425, -6.128801706, -6.851822952, -6.355776787, -7.254979129, -7.353396988, -6.642334715, -7.219125039, -7.430294884, -7.278569803, -7.366564616, -6.115785586, -7.254093182, -7.173313098, -7.310835469, -7.331957416, -6.966131424, -7.109975506, -7.19896564, -6.908960594, -6.905164502, -7.148134642, -6.613182815, -6.670462101, -7.683791846, -7.76130083, -7.686879308, -7.282275115, -6.589354669, -7.879429259, -6.266117408, -6.938128122, -6.314183511, -6.387639963, -7.034503331, -6.28494174, -6.515322741, -6.358567321, -4.88072497, -5.352236137, -6.458863285, -7.195961461, -6.571235495, -6.718502235, -7.422077579, -6.739083717, -6.190698239, -6.538012254, -6.615802919, -6.817656989, -6.829173045, -7.131715296, -11.136599288, -10.203201883, -6.109820059, -6.921156881, -5.937877752, -7.114549379, -7.319021292, -8.52570658, -6.828232129, -7.002682516, -6.561405146, -6.173449723, -5.786657893, -6.494368402, -6.424648993, -6.681453798, -6.572548461, -5.83642942, -6.678163398, -6.045986303, -4.869927149, -5.822259078, -5.171070411, -5.956179536, -7.026816973, -6.841734644, -6.646843501, -6.444006663, -5.915588427, -6.059350175, -6.013798446, -9.598962394, -6.244555306, -6.873581799, -6.667515855, -7.324152111, -8.811186376, -6.653348086, -6.082309684, -6.539720996, -7.178385704, -5.532062212, -6.591822225, -6.570154299, -7.419339283, -5.392514894, -6.340361541, -6.028843728, -6.634501121, -7.231352892, -5.329742031, -5.967850632, -5.459625837, -6.243922273, -5.521152083, -6.117448925, -6.848292999, -6.490343004, -7.130779955, -5.358209126, -6.878431404, -6.321940438, -6.715722587, -6.305608658, -6.085321296, -6.767871706, -6.909742126, -7.540318831, -7.064434887, -7.104717633, -7.464518605, -6.784459679, -7.388459886, -8.066118854, -6.241846115, -6.506597209, -6.514263373, -7.049635529, -6.482762387, -5.621588048, -5.269943708, -6.589969544, -7.029677414, -6.92437491, -7.160696772, -6.003448388, -6.256765091, -7.198377596, -6.751860619, -6.738867186, -6.544904211, -7.477057032, -7.128258952, -4.922494838, -4.433968463, -6.423359821, -6.628955573, -6.113097925, -6.85250318, -6.339367889, -6.109896905, -6.568847477, -6.647602985, -5.122838898, -6.182149586, -7.469601565, -7.474347389, -7.294199754, -6.435378272, -6.64247535, -6.922251084, -6.240567605, -6.284661976, -6.369536351, -6.418324184, -6.389870368, -5.376547241, -6.266524189, -6.390663122, -6.816235332, -7.186134383, -6.491474761, -6.982473191, -7.151242529, -6.670208932, -5.933274395, -6.320625995, -5.258347515, -6.964916307, -5.924059814, -6.141141837, -6.497015037, -5.562478028, -6.51094053, -6.602602228, -7.290801622, -6.687782242, -6.714276008, -6.319789512, -6.617011098, -7.160735992, -6.375837888, -6.141775842, -6.791823021, -5.838324113, -6.86678764, -7.483774012, -7.866100131, -5.570085635, -4.543994087, -6.696097427, -7.008767784, -7.096240733, -7.354884789, -10.101230212, -6.826661005, -9.270174395, -5.823279306, -6.726487746, -5.293927591, -5.478954487, -5.294418818, -6.215094049, -6.653270084, -7.344914523, -10.104398878, -6.706333481, -7.044424328, -7.256491346, -6.38884148, -6.967303345, -6.161674059, -6.036762816, -6.835252365, -5.841951944, -5.803129515, -7.366682059, -6.746624737, -6.441751421, -6.321968273, -6.788724316, -6.696816798, -7.136407169, -7.207512638, -7.162614715, -6.755871481, -6.34293374, -7.31050897, -6.689336311, -5.670989506, -7.063964254, -6.060130018, -6.253817779, -7.480867574, -6.288039387, -7.033742849, -6.693668649, -7.491446262, -6.157565531, -6.886285617, -7.933197609, -6.743754971, -6.233711022, -6.6606371, -6.487798904, -5.022849927, -6.613322161, -6.653454479, -5.868148308, -6.843670075, -6.902491617, -6.464401198, -8.108195793, -6.152918392, -6.44593945, -5.404804163, -7.365475139, -6.88215999, -5.653007573, -5.461121309, -5.145903319, -5.70174786, -6.076854088, -5.188332168, -6.642437727, -7.105294806, -7.245117044, -6.276896737, -6.642959946, -8.281950745, -6.784847961, -6.824479285, -4.888840426, -6.796505189, -5.920918121, -7.042031673, -8.953059565, -6.701721802, -6.826477008, -6.412111138, -6.816995101, -6.766207768, -7.01230263, -6.762861416, -6.294990541, -6.598535438, -5.862900938, -8.182122863, -6.464810164, -6.928325109, -7.179535739, -6.410770689, -6.31954221, -6.572439862, -6.705563398, -5.561239514, -5.851401147, -5.866383283, -7.055583446, -5.975536108, -7.042050819, -6.326091085, -6.531201716, -6.184798518, -7.030244961, -6.398205273, -6.640302085, -8.655665585, -7.438539806, -7.025571889, -5.254226942, -6.575223078, -6.192618023, -7.650436978, -6.179707774, -7.609760101, -5.589021383, -7.117658568, -7.086740727, -6.79822032, -6.365996712, -6.925358241, -8.960347706, -5.563826362, -7.354524424, -7.522346813, -6.761391343, -8.251230236, -4.223651799, -5.591536102, -6.278520885, -6.070276772, -6.276784882, -6.631938999, -7.301880345, -7.86188848, -7.342171759, -5.513143258, -7.017462766, -6.618940592, -5.945848267, -6.943863726, -5.492423086, -6.8006042, -6.580424014, -6.985266614, -6.365539857, -6.859545497, -7.735333213, -6.23928513, -6.563998086, -7.318952833, -6.687557964, -6.044222673, -6.462737978, -6.875827895, -6.675640379, -6.72956702, -7.531941722, -7.324973595, -6.701179705, -6.161875472, -7.418617722, -6.778422546, -5.293284585, -6.030900601, -6.077487157, -5.981798954, -5.718943191, -7.120267195, -6.492085696, -6.524927484, -5.669817882, -7.12516098, -6.527448907, -5.679696013, -6.179305404, -5.989433474, -6.352554716, -7.552010277, -6.617442899, -6.747325649, -6.665486385, -7.338552796, -6.02518999, -6.593010816, -6.559390802, -6.463826136, -7.131259308, -7.380149839, -6.973134088, -6.475406331, -6.475697163, -6.41717502, -6.491936734, -6.417338716, -6.079974804, -7.837270772, -6.095878092, -6.725417468, -5.429576106, -5.576280036, -6.1577911, -6.435372836, -8.887505747, -6.469958349, -6.743317537, -7.262589933, -6.748180273, -6.52500173, -7.245349188, -7.219132479, -5.999187529, -6.229493209, -7.353733747, -5.461499649, -5.826167531, -6.984890368, -6.240259825, -7.138884475, -7.139735713, -6.003204401, -6.077856515, -6.974218682, -7.006807538, -6.622311313, -6.336885947, -6.846860973, -6.645435007, -6.906307205, -7.183374457, -5.579836688, -7.373863813, -6.099213906, -6.264610433, -6.90878088, -6.388962985, -6.182808378, -5.746819789, -7.856120514, -7.638128938, -7.741029297, -6.897115209, -6.127270608, -6.729668512, -7.405246827, -7.047128443, -5.681757388, -5.721573809, -4.907841271, -6.262380422, -6.662131745, -7.558093518, -6.373645956, -6.95703654, -7.10271094, -6.268381144, -6.482930233, -7.285056057, -6.957681881, -6.463326275, -6.964084625, -7.571094758, -7.058315034, -10.517642252, -6.340105917, -6.117844879, -6.028266484, -9.762744492, -6.431390102, -6.626881074, -7.173553277, -7.039006028, -6.327867549, -6.809950702, -6.923333714, -6.309292744, -6.806530817, -7.516119507, -6.010813618, -6.665972038, -6.244029315, -7.238646279, -7.984019533, -7.231270725, -7.544556534, -7.314831591, -6.958608507, -5.95406196, -5.631080777, -7.057901365, -5.83934646, -6.485787863, -6.944759686, -6.464021541, -6.425466433, -6.845720099, -6.725275497, -6.016208832, -7.132220551, -7.491585379, -6.876558737, -6.70366377, -7.199123799, -6.436077631, -6.359939007, -6.552246657, -6.315907592, -8.07200902, -7.566577347, -6.912649543, -6.67722124, -6.991158393, -4.867491461, -6.101369245, -6.720961665, -6.973064789, -6.912175576, -5.880493613, -6.381782537, -7.722299075, -8.691617325, -8.457516251, -6.504856712, -5.955076837, -5.882406485, -7.344881896, -6.597346494, -6.311627648, -7.074493344, -7.270609856, -7.061885675, -6.724374675, -6.183906477, -6.621974898, -6.582830661, -6.478838975, -7.543505197, -7.061220266, -6.782582767, -6.878187722, -6.963784558, -6.982493772, -7.185615976, -6.96738801, -6.682950392, -6.622042955, -7.447773916, -7.482713883, -7.399481585, -5.707410172, -6.447596632, -7.143783342, -6.687842693, -6.242810996, -6.846810071, -5.773961474, -7.095377237, -5.7305345, -7.151222608, -6.600181666, -7.292530696, -5.642459042, -7.268202989, -8.400292329, -5.726664721, -6.461361403, -6.239907845, -7.241490128, -6.641812963, -6.382919129, -7.130013659, -7.928895072, -6.487934921, -9.089270156, -7.372370719, -5.874304705, -6.571897207, -6.504733337, -6.239022254, -5.81725109, -7.161203038, -7.618853054, -7.102586672, -5.169499361, -5.592417524, -7.153075037]}, {"log_prior": -0.70101842, "feature_log_probs": [-5.868638723, -5.566912269, -6.68465392, -6.247969922, -6.235245026, -6.526705549, -6.616725044, -6.279386521, -6.559869566, -6.677108982, -6.724665416, -6.748043747, -6.20807459, -7.052655391, -7.132534882, -7.255354605, -7.198872654, -6.783531423, -6.75731176, -6.757932633, -6.753101598, -6.64159062, -6.759062138, -6.672235034, -6.63283215, -6.933926564, -6.970801573, -7.029804923, -6.721713717, -6.648684495, -7.064935584, -6.457498388, -6.752370865, -6.671885036, -6.957112948, -6.442610285, -6.2126135, -6.217713176, -6.040100223, -6.596780233, -7.42722643, -6.850421678, -6.358586797, -6.011343463, -6.14344896, -6.386617333, -7.098086101, -6.779571117, -6.560244844, -6.417724739, -6.56279382, -6.579885361, -6.054202785, -6.039441048, -5.913715879, -7.584619489, -6.745069092, -5.858489927, -6.765249996, -7.186556176, -7.372483375, -6.643814417, -6.227682583, -6.511735049, -9.007701281, -8.688349327, -6.213814175, -7.138169163, -6.72700605, -6.251019383, -9.834662279, -6.528444076, -7.218519193, -8.070038929, -9.457123242, -9.044498235, -6.016135389, -6.680811413, -6.500491445, -7.466587187, -6.787794509, -5.469160937, -5.859940537, -6.03353889, -5.318301975, -7.166912699, -6.3051421, -5.992573638, -6.668270707, -5.575052948, -8.911820142, -9.596883606, -5.765290602, -6.046506818, -6.991890227, -6.372777264, -6.473882163, -6.225117786, -6.196887582, -7.452380381, -6.418634852, -6.023449374, -6.352277191, -7.17187439, -8.86037886, -7.31917719, -5.675489357, -6.895531535, -7.014038433, -6.555508792, -6.264807955, -6.701973766, -8.037542516, -6.574442138, -6.132384509, -6.694495259, -6.284785786, -8.60506047, -6.362929345, -6.674173441, -6.040425782, -6.566924878, -6.608352508, -6.452925537, -7.588736825, -6.377204634, -6.009584493, -7.210003264, -5.884795731, -6.291171543, -6.254714965, -6.625665193, -6.727082169, -5.810068852, -6.697283479, -5.925586868, -6.564443732, -6.276906048, -6.404515413, -7.382731481, -6.270388214, -6.015950746, -6.871627985, -5.884296749, -6.469418839, -6.88718376, -7.508873093, -9.761229288, -6.841269251, -6.904562064, -6.753525313, -6.68175752, -5.291018088, -5.371749365, -6.045120158, -6.572071495, -7.946390354, -9.948833419, -5.881649253, -6.429495474, -6.337799542, -5.727192131, -6.036030818, -6.851482025, -5.674533908, -5.982218427, -6.033319335, -6.159987679, -7.932261511, -5.287736891, -6.549382107, -8.057531722, -6.554090382, -6.805072727, -6.076440529, -7.096501515, -5.866132825, -6.387901093, -7.979755145, -6.015918224, -9.012174786, -6.395548064, -6.818679506, -5.866298092, -7.672385331, -8.868084015, -5.915416028, -7.021467124, -6.267084042, -6.293579922, -6.111923323, -6.161998541, -6.140990831, -6.135119253, -7.007416909, -8.432571728, -5.815174411, -8.231658913, -6.871929641, -6.203626999, -6.660226761, -8.193657329, -7.831535337, -6.597046259, -6.484729156, -6.292299907, -5.61563704, -6.611437975, -6.315482999, -6.378679423, -5.979268159, -6.364211225, -8.542146355, -7.947604602, -8.888427464, -6.455601672, -5.387481384, -6.231616665, -6.556763597, -6.738477653, -6.816718535, -6.527611746, -6.223957605, -6.457992478, -7.026085154, -7.075323487, -6.769839026, -5.800868812, -5.500845001, -5.552114258, -6.094737956, -6.266136447, -5.694570428, -6.232895315, -6.679699584, -6.458927498, -6.523164035, -6.184408047, -6.112052241, -6.159423074, -6.211403737, -6.068971339, -5.656308004, -6.607847835, -5.877877387, -6.722001192, -6.091621219, -5.370118887, -6.064330465, -5.815337834, -5.899190438, -6.351647813, -6.692327445, -6.124024275, -7.306815009, -5.993064611, -6.333319894, -6.092499457, -7.412584261, -6.796227088, -7.102602356, -12.058116652, -6.836314878, -7.166184616, -6.47885099, -7.137117882, -5.935093951, -6.218845089, -8.553844118, -6.787686867, -6.614219427, -8.490632131, -8.703050499, -7.567903432, -8.855306248, -9.373316995, -7.664247388, -6.107770613, -6.612042468, -7.071538317, -6.077507364, -6.877422331, -6.772012231, -7.097765278, -6.194398563, -8.653416732, -6.219229475, -5.430992432, -6.26061435, -6.390024297, -6.355627428, -6.395710925, -7.3433654, -6.613520478, -6.157299496, -6.266876255, -6.857489224, -5.99954353, -6.188468535, -5.536905464, -5.864147543, -6.46091088, -6.194995979, -6.718670026, -5.915057535, -5.867108364, -6.044813329, -6.584639886, -5.494244472, -9.800747726, -9.064289588, -6.381353424, -5.763379491, -6.370661567, -5.793620841, -6.184274181, -5.846554648, -5.800655041, -6.361772446, -6.840080753, -6.42636229, -6.498288344, -6.543385566, -5.25038193, -6.089105545, -6.189315295, -6.177821157, -7.107811438, -7.405080872, -6.320585221, -6.577730997, -6.583502002, -6.684128628, -6.192561902, -6.34364606, -6.123443959, -6.345244361, -6.182174533, -6.189502848, -6.205283723, -6.476348918, -6.695470659, -6.794446589, -8.237505792, -6.714615587, -7.955164989, -6.092806433, -6.620553924, -6.556996201, -6.309008798, -5.444188502, -6.630419099, -6.62578306, -7.545155199, -6.416335397, -4.973685872, -6.319970497, -6.573204932, -6.757710556, -6.028269316, -6.602218541, -7.306959412, -6.822885953, -6.845829104, -6.410116705, -6.054215884, -6.233036468, -6.076716644, -6.598056802, -6.461749468, -6.284008363, -6.576891901, -6.52938593, -6.013767682, -7.175919912, -6.656867529, -6.457364172, -6.77956174, -7.757653505, -8.675430284, -8.903327961, -6.350154427, -6.082859687, -7.111816523, -6.020038215, -6.696514618, -6.119790021, -6.093514734, -6.978598723, -7.035811212, -6.964519373, -7.900073867, -6.187130869, -5.976428975, -6.675158723, -6.890745619, -6.351645318, -7.874858928, -6.25420833, -5.924837901, -6.837209127, -6.070558545, -6.649129872, -6.612156097, -6.484607106, -6.91853256, -6.32036673, -6.361748811, -6.033950148, -6.527909039, -6.404352493, -6.334018278, -8.089740949, -6.389166794, -7.30828477, -6.441483953, -6.733454794, -7.129706444, -6.312582106, -7.111656241, -6.28955052, -6.331446871, -6.625119723, -6.497893335, -6.349452404, -7.590284891, -7.313896665, -6.604324289, -7.030345482, -7.676241803, -6.793969117, -5.821546588, -6.590912443, -6.632444353, -5.88066157, -5.690700745, -6.583119733, -6.500060793, -6.606894601, -6.42147214, -7.175775527, -6.040088234, -6.66254505, -6.165651159, -9.120081408, -6.513952587, -7.251133639, -8.09556018, -6.874512221, -8.564802632, -5.631783747, -6.876700738, -6.163091692, -6.438394947, -6.306749716, -7.167030768, -6.788275662, -5.95510288, -6.300627395, -6.583403169, -7.100610111, -8.130157846, -8.333292197, -5.778969871, -6.538146782, -5.991317869, -10.436576676, -6.157927075, -6.925892761, -9.665449053, -6.491525442, -6.351227106, -6.205408311, -7.341543609, -6.383470904, -7.28596008, -6.208324422, -6.168583397, -6.11247289, -6.825597445, -5.886266443, -6.710086888, -6.346152927, -6.458432366, -6.518107621, -6.549332681, -6.146785183, -6.41068537, -6.231254652, -6.029154972, -6.816204983, -6.241622296, -6.172332209, -6.212558523, -5.815505264, -6.488872683, -6.793012004, -6.518678791, -6.083505737, -6.447826079, -6.456456108, -6.621882476, -7.225419413, -6.946383711, -5.9574323, -6.348122566, -6.687454456, -6.286384754, -7.012540516, -6.415735141, -6.483814029, -7.650877546, -6.491693741, -6.361329606, -6.014412338, -6.987407545, -6.393378556, -7.041208087, -7.258326495, -6.279108868, -6.152026121, -6.461349381, -6.413419873, -6.583998592, -6.588425685, -6.568063403, -7.379596725, -8.18500721, -5.95973748, -6.343475495, -6.275956165, -6.755582382, -6.88600314, -6.129313488, -6.139251448, -6.308017986, -5.922745193, -5.582607074, -5.676653641, -6.369365567, -5.962376448, -6.057740795, -5.981261019, -6.34881113, -6.853834054, -6.994301888, -7.267240158, -6.840698098, -6.771725477, -7.98902401, -5.740863981, -6.521303807, -6.000077139, -6.312289423, -6.24567003, -6.08816948, -6.703671424, -7.079750167, -6.661003918, -6.582331935, -6.805977801, -6.54173727, -6.244591207, -5.272637791, -5.577182145, -6.203897326, -6.065859587, -5.630683041, -6.468768559, -6.428302355, -6.636264459, -5.463051414, -6.254106608, -6.154194675, -6.284499913, -5.343992629, -6.345530882, -5.53056723, -5.274293222, -6.468142451, -7.539909369, -6.497735635, -6.31857142, -6.003595467, -6.588302408, -5.812042075, -6.240396354, -5.811937144, -6.368986603, -5.428747451, -6.131911355, -6.368160917, -5.369398024, -7.037525133, -6.279739293, -6.126471567, -6.601492503, -5.553215201, -5.468941292, -6.370530712]}], "model_type": "nb", "positive_class_label": "finance", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"new": [355, 1.472856698], "financial": [202, 2.071213314], "year": [597, 1.726459457], "did": [161, 2.226057235], "ago": [49, 2.749912359], "self": [472, 2.822130567], "today": [541, 2.299045595], "paying": [378, 2.709746318], "taxes": [527, 3.178176382], "getting": [222, 2.250628496], "actually": [43, 2.325502165], "away": [69, 2.409350137], "public": [418, 2.6980045], "fund": [212, 2.520232837], "account": [39, 2.263144304], "16": [8, 2.968965925], "years": [598, 1.762445349], "later": [291, 2.454066976], "read": [431, 2.366547598], "story": [514, 2.839908813], "income": [258, 2.403536168], "investments": [274, 2.733651838], "usually": [568, 2.533347779], "saving": [461, 2.871802177], "making": [325, 2.040504658], "section": [468, 3.229800748], "fact": [190, 2.366547598], "march": [328, 3.662113106], "end": [179, 2.052675193], "look": [314, 1.99903771], "investment": [273, 2.278373025], "money": [341, 1.714746292], "benefits": [80, 2.919204416], "products": [411, 2.686398954], "high": [244, 2.010710994], "days": [154, 2.406438927], "tax": [526, 2.678736081], "cost": [138, 2.386294361], "common": [130, 2.601633687], "class": [121, 3.203655468], "multiple": [347, 2.919204416], "life": [299, 2.092222491], "insurance": [268, 2.948763218], "come": [128, 2.054718095], "sell": [473, 2.867183231], "40": [32, 2.885788419], "10": [1, 1.865264567], "20": [12, 2.240727425], "long": [312, 1.825458317], "term": [531, 2.472529039], "single": [488, 2.523495483], "got": [230, 2.55672113], "need": [350, 1.601989615], "annual": [55, 2.943775677], "thing": [536, 2.265666373], "change": [114, 2.199708406], "think": [538, 1.915578735], "working": [590, 2.386294361], "30": [31, 2.369344803], "age": [48, 2.904746333], "issues": [278, 2.989585213], "things": [537, 1.96855916], "easier": [172, 2.667350759], "comes": [129, 2.206825873], "problem": [407, 2.573757317], "free": [210, 2.096477816], "really": [435, 2.058816462], "having": [239, 2.158035709], "view": [574, 2.885788419], "means": [333, 2.169438341], "understanding": [560, 3.16567622], "future": [215, 2.330878522], "right": [450, 1.90320015], "early": [170, 2.40064181], "second": [467, 2.475639461], "way": [578, 1.52806743], "space": [498, 3.02672476], "creating": [145, 2.933874606], "probably": [406, 2.488178811], "does": [165, 1.970437095], "process": [408, 2.372149854], "thought": [539, 2.745822374], "far": [192, 2.314835397], "better": [82, 1.899691375], "step": [510, 2.813358581], "file": [199, 3.622107771], "cover": [142, 2.867183231], "various": [570, 2.774809911], "real": [434, 2.221214611], "estate": [182, 3.364278662], "loans": [310, 3.032144827], "credit": [146, 2.40064181], "card": [107, 2.745822374], "bank": [73, 2.369344803], "gets": [221, 2.822130567], "work": [589, 1.735335255], "related": [438, 2.690252523], "offer": [362, 2.481889482], "idea": [251, 2.30954438], "place": [387, 2.140057697], "little": [305, 2.064995678], "extra": [187, 2.984390396], "make": [323, 1.435836206], "start": [504, 1.976092153], "finance": [201, 2.754019141], "policy": [395, 3.356731456], "jobs": [281, 3.291253527], "act": [41, 2.862585522], "2012": [17, 3.197224577], "legal": [296, 3.153330384], "funding": [213, 2.924070605], "online": [366, 2.394878105], "access": [37, 2.563500817], "debt": [156, 2.674926552], "equity": [180, 3.015971968], "investors": [276, 2.674926552], "100": [2, 2.301659976], "crowdfunding": [147, 3.00533357], "sites": [490, 3.256647998], "good": [228, 1.75635705], "number": [359, 2.151256022], "ve": [571, 1.861886186], "2014": [19, 3.38726818], "able": [36, 2.083765781], "list": [304, 2.306909332], "close": [125, 2.862585522], "platforms": [391, 3.402893498], "invest": [271, 2.725619667], "ll": [308, 1.962946424], "review": [448, 2.989585213], "went": [584, 2.984390396], "include": [256, 2.424034689], "personal": [385, 2.349926717], "experience": [186, 2.406438927], "investor": [275, 3.065297034], "market": [329, 2.230923425], "share": [482, 2.472529039], "best": [81, 1.799774722], "platform": [390, 2.963876856], "recent": [437, 2.686398954], "big": [83, 2.044545067], "site": [489, 2.667350759], "focus": [203, 2.745822374], "lower": [319, 2.774809911], "point": [393, 2.206825873], "say": [463, 2.137833002], "special": [499, 2.948763218], "deal": [155, 2.762283651], "game": [216, 3.043073898], "management": [327, 2.741749049], "fee": [195, 3.243134279], "quickly": [423, 2.766441661], "industry": [264, 2.762283651], "range": [427, 2.948763218], "quality": [420, 2.904746333], "tools": [545, 3.105417028], "needed": [351, 2.690252523], "funds": [214, 2.460183203], "investing": [272, 2.709746318], "individual": [262, 2.770617033], "capital": [105, 2.598106346], "projects": [414, 3.048583553], "service": [478, 2.560105228], "private": [405, 3.010638622], "network": [354, 3.210127982], "available": [66, 2.29383725], "link": [303, 3.088025285], "makes": [324, 2.190296571], "house": [249, 2.822130567], "assets": [65, 2.924070605], "costs": [139, 2.796042131], "savings": [462, 2.504077397], "asset": [64, 3.305438162], "fees": [197, 3.054123734], "great": [232, 2.030474484], "source": [497, 2.974081026], "typically": [557, 2.958813554], "provide": [416, 2.472529039], "home": [247, 2.278373025], "known": [288, 2.608725915], "returns": [447, 3.07659659], "non": [357, 2.652369205], "bonds": [91, 3.519692766], "build": [95, 2.53997032], "portfolio": [397, 3.327099659], "using": [567, 1.940805298], "goals": [225, 2.813358581], "level": [298, 2.504077397], "average": [67, 2.762283651], "world": [592, 2.016599137], "000": [0, 1.989412997], "risk": [451, 2.53997032], "likely": [301, 2.457120414], "results": [443, 2.904746333], "post": [399, 2.472529039], "didn": [162, 2.591088774], "wanted": [576, 2.989585213], "support": [519, 2.570326782], "company": [133, 2.098612289], "rules": [456, 2.909542505], "wealth": [580, 3.327099659], "net": [353, 2.958813554], "worth": [593, 2.432950053], "million": [336, 2.478759589], "companies": [132, 2.523495483], "raise": [425, 2.839908813], "spend": [501, 2.520232837], "small": [492, 2.118030375], "won": [586, 2.397755805], "old": [365, 2.426997654], "difference": [163, 2.800343213], "want": [575, 1.669219227], "true": [551, 2.762283651], "changes": [115, 2.817734956], "going": [227, 1.944461609], "advice": [47, 2.844403203], "important": [255, 2.113682542], "don": [169, 1.608512795], "learn": [294, 2.674926552], "past": [376, 2.504077397], "terms": [532, 2.630309487], "know": [287, 1.827085656], "total": [546, 2.656093604], "choose": [119, 2.737692248], "quite": [424, 2.725619667], "hard": [238, 2.406438927], "lot": [316, 2.124587775], "easy": [174, 2.325502165], "course": [141, 2.377783671], "price": [404, 2.758142858], "possible": [398, 2.291243215], "sense": [474, 2.659831926], "buy": [100, 2.406438927], "answer": [56, 3.02672476], "pay": [377, 2.155770703], "higher": [245, 2.460183203], "clear": [122, 2.774809911], "internet": [270, 3.088025285], "continue": [136, 2.88110457], "understand": [559, 2.594591404], "strategy": [515, 3.129086772], "example": [183, 2.038490558], "writing": [595, 3.010638622], "bad": [71, 2.694121], "job": [280, 2.678736081], "college": [127, 3.229800748], "school": [464, 2.994807157], "questions": [422, 2.705817039], "increase": [259, 2.690252523], "cash": [112, 2.429969425], "feel": [196, 2.374962795], "shows": [484, 2.943775677], "following": [205, 2.594591404], "period": [383, 2.899973054], "federal": [194, 3.16567622], "loan": [309, 3.159484249], "return": [446, 2.623063078], "check": [116, 2.463255402], "additional": [46, 2.835434533], "plan": [388, 2.406438927], "health": [241, 2.95377576], "create": [143, 2.286075245], "budget": [94, 2.95377576], "simple": [486, 2.403536168], "basic": [77, 3.021333911], "needs": [352, 2.504077397], "expenses": [185, 2.862585522], "car": [106, 2.909542505], "play": [392, 2.963876856], "role": [453, 3.197224577], "doesn": [166, 2.151256022], "spending": [502, 2.733651838], "use": [563, 1.637731341], "app": [57, 3.11718187], "checking": [117, 3.371883261], "accounts": [40, 2.580653896], "information": [266, 2.347183231], "track": [547, 2.844403203], "set": [480, 1.948131338], "cards": [108, 3.190834779], "used": [564, 1.979880036], "payment": [379, 3.07659659], "month": [342, 2.304281209], "payments": [380, 2.984390396], "generally": [220, 2.826545585], "months": [344, 2.444962209], "let": [297, 2.185623666], "building": [96, 2.619459471], "emergency": [178, 3.434896229], "day": [153, 2.002913684], "add": [44, 2.533347779], "balance": [72, 2.853453038], "sure": [520, 2.273270973], "major": [322, 2.713691096], "impact": [254, 3.11718187], "offers": [363, 2.809001276], "consider": [134, 2.533347779], "monthly": [343, 3.105417028], "banking": [74, 3.371883261], "option": [368, 2.848917883], "options": [369, 2.630309487], "rate": [428, 2.520232837], "earn": [171, 3.037594432], "deposit": [157, 3.510882136], "allows": [51, 2.694121], "retirement": [444, 2.963876856], "starting": [506, 2.848917883], "open": [367, 2.438938095], "bit": [86, 2.644961764], "helps": [243, 2.904746333], "longer": [313, 2.630309487], "save": [460, 2.566907976], "power": [401, 2.737692248], "percent": [381, 2.741749049], "table": [522, 3.223200064], "office": [364, 3.312606651], "securities": [469, 3.57425175], "exchange": [184, 3.216642663], "rule": [455, 3.256647998], "takes": [523, 2.644961764], "help": [242, 1.790310929], "paid": [374, 2.641278518], "required": [440, 2.862585522], "based": [76, 2.010710994], "customer": [149, 3.395050321], "standard": [503, 3.02672476], "customers": [150, 2.95377576], "trying": [553, 2.630309487], "short": [483, 2.504077397], "avoid": [68, 2.741749049], "believe": [78, 2.779020443], "profit": [412, 3.364278662], "clients": [124, 3.58364149], "type": [555, 2.637608789], "law": [293, 3.070930852], "goes": [226, 2.690252523], "instead": [267, 2.185623666], "board": [88, 3.305438162], "types": [556, 2.88110457], "national": [349, 3.147214157], "human": [250, 3.07659659], "works": [591, 2.451022834], "test": [533, 3.210127982], "ask": [63, 2.663584276], "states": [509, 2.909542505], "case": [110, 2.333577579], "economic": [175, 3.467957091], "times": [540, 2.230923425], "software": [495, 3.364278662], "large": [290, 2.426997654], "tool": [544, 3.032144827], "started": [505, 2.415198107], "cases": [111, 3.000056512], "including": [257, 2.14452199], "ideas": [252, 3.065297034], "video": [573, 2.895222451], "came": [102, 2.809001276], "created": [144, 2.762283651], "ability": [35, 2.705817039], "friends": [211, 2.858008855], "family": [191, 2.587598369], "social": [494, 2.566907976], "control": [137, 2.725619667], "project": [413, 2.733651838], "group": [233, 2.577199662], "different": [164, 1.922721622], "figure": [198, 2.994807157], "taking": [524, 2.494507946], "care": [109, 2.826545585], "12": [4, 2.415198107], "business": [98, 2.155770703], "live": [306, 2.478759589], "looking": [315, 2.314835397], "main": [321, 2.826545585], "ways": [579, 2.325502165], "approach": [58, 2.848917883], "current": [148, 2.591088774], "11": [3, 2.733651838], "billion": [85, 3.23644529], "report": [439, 3.015971968], "according": [38, 2.438938095], "2017": [22, 3.305438162], "2018": [23, 3.223200064], "told": [542, 2.933874606], "american": [52, 2.928960591], "product": [409, 2.770617033], "added": [45, 2.876442556], "rewards": [449, 3.602689685], "week": [583, 2.587598369], "action": [42, 2.95377576], "state": [507, 2.725619667], "local": [311, 2.822130567], "statement": [508, 3.327099659], "potential": [400, 2.526768808], "businesses": [99, 3.07659659], "low": [318, 2.523495483], "general": [219, 2.78749507], "hours": [248, 2.885788419], "value": [569, 2.383449409], "love": [317, 2.678736081], "given": [223, 2.615868803], "sec": [466, 4.152736022], "pretty": [403, 2.796042131], "kickstarter": [285, 3.291253527], "indiegogo": [261, 3.840361337], "raised": [426, 2.984390396], "blog": [87, 2.924070605], "order": [370, 2.424034689], "hand": [237, 2.770617033], "travel": [550, 3.410798678], "food": [206, 3.010638622], "living": [307, 2.830980182], "government": [231, 2.928960591], "phone": [386, 3.178176382], "15": [7, 2.497687599], "seen": [471, 2.741749049], "called": [101, 2.30954438], "form": [208, 2.612290981], "services": [479, 2.737692248], "certain": [113, 2.598106346], "500": [34, 2.817734956], "property": [415, 3.298320694], "purchase": [419, 2.979222426], "50": [33, 2.488178811], "city": [120, 3.037594432], "2019": [24, 3.298320694], "19": [11, 3.129086772], "note": [358, 2.848917883], "25": [29, 2.605173514], "easily": [173, 2.791759469], "rates": [429, 2.899973054], "individuals": [263, 3.256647998], "21": [25, 3.371883261], "23": [27, 3.341805806], "13": [5, 2.909542505], "follow": [204, 2.659831926], "click": [123, 3.364278662], "website": [582, 2.804662874], "try": [552, 2.481889482], "april": [59, 3.402893498], "18": [10, 2.963876856], "2016": [21, 3.216642663], "banks": [75, 2.914361791], "research": [441, 2.663584276], "york": [599, 3.043073898], "stock": [511, 2.899973054], "daily": [151, 3.043073898], "popular": [396, 2.813358581], "reason": [436, 2.70190314], "road": [452, 3.349240785], "person": [384, 2.530052883], "country": [140, 2.989585213], "head": [240, 2.88110457], "sales": [459, 3.223200064], "reading": [432, 3.015971968], "face": [188, 3.059694779], "run": [457, 2.466337069], "campaign": [103, 3.197224577], "running": [458, 2.89049431], "doing": [167, 2.330878522], "success": [517, 2.871802177], "campaigns": [104, 3.593120234], "launch": [292, 3.216642663], "successful": [518, 3.000056512], "team": [528, 2.919204416], "goal": [224, 2.725619667], "reach": [430, 2.876442556], "media": [334, 2.984390396], "university": [562, 3.153330384], "22": [26, 3.298320694], "designed": [159, 2.984390396], "points": [394, 2.974081026], "page": [373, 2.809001276], "design": [158, 3.048583553], "children": [118, 3.216642663], "result": [442, 2.791759469], "guide": [235, 3.032144827], "isn": [277, 2.424034689], "book": [92, 2.694121], "security": [470, 3.015971968], "performance": [382, 3.048583553], "17": [9, 3.048583553], "28": [30, 3.379546134], "journal": [282, 3.703785802], "light": [300, 3.082294611], "sound": [496, 3.510882136], "specific": [500, 2.608725915], "2011": [16, 3.546600219], "study": [516, 3.223200064], "january": [279, 3.379546134], "left": [295, 2.641278518], "smart": [493, 3.334425699], "september": [475, 3.631960068], "facebook": [189, 3.197224577], "man": [326, 3.305438162], "plans": [389, 3.043073898], "mr": [346, 3.76974377], "2009": [14, 3.519692766], "allow": [50, 2.570326782], "mean": [332, 2.721627645], "numbers": [360, 2.989585213], "room": [454, 3.153330384], "frame": [209, 4.042387965], "maybe": [331, 2.963876856], "line": [302, 2.682560177], "half": [236, 2.928960591], "2015": [20, 3.277267285], "2008": [13, 3.58364149], "traditional": [548, 2.817734956], "talk": [525, 2.958813554], "transactions": [549, 3.546600219], "books": [93, 3.229800748], "email": [177, 3.210127982], "bond": [90, 3.903275163], "aren": [61, 2.725619667], "data": [152, 2.619459471], "stop": [512, 2.853453038], "minutes": [338, 3.048583553], "14": [6, 2.948763218], "took": [543, 2.876442556], "dollars": [168, 2.968965925], "benefit": [79, 2.938812887], "tell": [530, 2.678736081], "mind": [337, 2.709746318], "matter": [330, 2.749912359], "turn": [554, 2.630309487], "press": [402, 3.319826899], "similar": [485, 2.612290981], "backers": [70, 3.781172466], "international": [269, 3.451290039], "words": [588, 2.88110457], "model": [339, 2.904746333], "kind": [286, 2.536653567], "development": [160, 3.015971968], "key": [284, 2.601633687], "write": [594, 2.933874606], "news": [356, 2.876442556], "written": [596, 2.984390396], "features": [193, 2.904746333], "technology": [529, 3.00533357], "particular": [375, 2.862585522], "ready": [433, 2.979222426], "web": [581, 3.190834779], "question": [421, 2.754019141], "especially": [181, 2.549987098], "user": [565, 3.270346842], "edit": [176, 3.662113106], "water": [577, 3.341805806], "built": [97, 2.885788419], "2013": [18, 3.312606651], "production": [410, 3.57425175], "users": [566, 3.082294611], "mortgage": [345, 3.356731456], "simply": [487, 2.457120414], "info": [265, 4.355260286], "search": [465, 2.994807157], "google": [229, 3.223200064], "june": [283, 3.528581713], "org": [371, 3.816263786], "uk": [558, 3.537550383], "size": [491, 3.00533357], "modern": [340, 3.38726818], "version": [572, 2.979222426], "store": [513, 3.184485552], "original": [372, 3.11718187], "24": [28, 3.07659659], "october": [361, 3.602689685], "history": [246, 2.895222451], "united": [561, 3.197224577], "community": [131, 2.89049431], "series": [476, 3.043073898], "index": [260, 3.602689685], "wordpress": [587, 4.509410966], "machine": [320, 3.703785802], "code": [126, 3.356731456], "article": [62, 2.652369205], "content": [135, 2.994807157], "growth": [234, 3.054123734], "body": [89, 3.210127982], "music": [348, 3.792733288], "2010": [15, 3.682732393], "theory": [535, 3.725292008], "men": [335, 3.564949357], "women": [585, 3.44305954], "image": [253, 3.334425699], "archived": [60, 4.55820113], "retrieved": [445, 4.462890951], "psychology": [417, 4.583518938], "film": [200, 3.956621143], "games": [217, 3.736221078], "server": [477, 4.375879574], "language": [289, 3.546600219], "theme": [534, 4.335057579], "systems": [521, 3.418766847], "ford": [207, 4.81309338], "animals": [54, 4.355260286], "sex": [481, 4.509410966], "bike": [84, 4.295836866], "animal": [53, 4.335057579], "gender": [218, 4.636162672]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_food_and_drink.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_food_and_drink.json deleted file mode 100644 index 6194246..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_food_and_drink.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.680462021, "feature_log_probs": [-6.710330806, -6.286934922, -7.101602023, -6.837653032, -6.707287312, -7.051944372, -7.158646106, -6.684031646, -7.131239001, -7.307654265, -7.218801843, -7.240856844, -6.751478087, -7.750705447, -8.368272654, -8.377588058, -8.267328516, -7.731607961, -8.029417532, -7.974233854, -7.699370369, -7.796163995, -7.847582504, -7.510224922, -7.562042645, -7.795700226, -7.244907707, -7.384495127, -7.718076494, -7.491673912, -7.483652906, -7.474553185, -7.661384163, -7.542977425, -7.078981612, -7.858021635, -7.753592231, -7.723094012, -7.763202748, -6.601948211, -7.892160705, -7.865465734, -7.701662395, -7.860760633, -7.397916523, -7.600293884, -7.036558356, -7.482054091, -7.47391669, -7.675661702, -7.71346971, -7.254909213, -7.862196429, -7.343383679, -7.719609004, -6.699179033, -7.777808895, -8.290070359, -7.355039966, -7.620038762, -7.780841376, -7.966143755, -7.766669555, -6.683509605, -8.119440932, -6.146551256, -6.881532975, -7.290885117, -7.446645604, -7.96801498, -7.733762044, -7.547581626, -7.389774105, -6.800095802, -7.15103741, -6.886021618, -7.92881886, -7.148984031, -7.759805933, -7.791052653, -7.83837551, -7.382079507, -7.78647259, -6.85760051, -6.994872985, -6.633696626, -7.201698223, -8.378214631, -7.008096033, -7.46899364, -7.797708523, -7.382789986, -7.781071375, -6.968122034, -8.634736518, -8.330652031, -7.626721301, -7.66393595, -8.140725081, -7.016919144, -7.872106166, -7.243439715, -7.333704521, -7.480999264, -8.241916569, -7.107135435, -7.050777387, -7.63017016, -7.627844427, -6.852973473, -7.425478801, -8.183218828, -7.810680434, -7.292195526, -8.613160445, -6.949151982, -7.596829882, -7.116822427, -6.80361676, -6.506389546, -6.742901471, -6.649775426, -7.214330875, -7.81173972, -7.930236414, -6.277025101, -6.851632484, -7.476598973, -6.582668066, -7.583085238, -6.472841762, -7.408011078, -6.401734104, -6.613629966, -7.185008501, -7.621293022, -7.771632693, -7.384062588, -7.019628887, -6.08428094, -6.306360549, -6.538907572, -7.635623945, -8.50369606, -8.665767111, -7.410932006, -6.67951126, -6.595238588, -7.528661464, -7.179873983, -7.193092672, -7.537047476, -6.75826123, -6.906599117, -7.533632041, -7.567335971, -6.655164983, -7.096584505, -6.326437208, -6.70276666, -7.381366221, -6.866672573, -7.114913707, -6.12127873, -7.289186691, -6.308853742, -6.831899189, -7.417053839, -8.816490123, -7.38779116, -6.49055353, -7.269645782, -7.718206212, -7.499320653, -7.721078388, -6.355098599, -6.651344743, -6.25070938, -6.39428373, -7.239340332, -6.997681269, -6.509246438, -7.484094296, -6.42647107, -6.927283583, -8.618462664, -7.854809738, -7.059112875, -7.536072206, -7.557820944, -7.789366503, -8.042480401, -7.32146444, -8.010452367, -7.614694999, -8.369820008, -7.222620133, -7.747652012, -7.787485468, -8.281349107, -7.478153667, -6.996524639, -7.506377662, -7.013641653, -7.2401705, -7.476370353, -7.020855714, -6.927742853, -7.475900366, -7.392878224, -8.001067003, -7.164397201, -7.016456946, -5.432043524, -6.192546055, -6.777062797, -5.920330775, -7.492442269, -7.176035832, -7.227384576, -6.883743623, -6.563816473, -5.801538249, -7.231008146, -7.326540622, -7.478750341, -6.284270125, -7.607070636, -7.410435497, -6.873968409, -7.272652579, -7.225464428, -7.743953629, -7.196296734, -6.772431094, -8.108267871, -5.953661553, -6.672538881, -7.581724955, -7.049836163, -6.633150976, -6.717978452, -7.389748522, -7.162840053, -7.141495721, -6.962027806, -6.299296929, -7.655914749, -7.642918889, -7.247684499, -7.654766702, -7.754062809, -7.841545583, -7.265228508, -7.505855149, -7.447267567, -6.813373024, -7.146527545, -7.042421213, -7.134142912, -7.045538991, -7.534127848, -7.556179635, -6.101400707, -6.540709175, -6.115112642, -6.889154436, -6.918126915, -6.975607744, -7.395756837, -7.553911396, -7.93806122, -7.265877864, -6.718863787, -7.139895583, -6.776274121, -7.847327827, -7.346659433, -6.005586357, -7.191554885, -7.40208773, -7.654931955, -7.235218143, -8.846591811, -7.002785381, -7.448118565, -6.770548227, -6.024203361, -7.627300494, -7.576021603, -7.674774193, -6.972307132, -6.719107667, -6.947896713, -6.559323815, -6.94074298, -7.778127922, -8.474847152, -8.846591811, -7.300388775, -7.711869631, -5.95584354, -6.751713179, -7.503615318, -7.8850598, -7.475339265, -8.034083646, -7.275077959, -7.958036304, -7.11256668, -7.3574517, -6.395715943, -7.301981051, -7.62519075, -7.640287639, -7.464315023, -7.612897551, -7.365204191, -7.554541398, -7.430763764, -8.067545843, -7.719310136, -7.97838271, -6.721245958, -6.778849844, -6.270127876, -7.578490209, -6.552694891, -7.65195905, -6.815754076, -6.320989785, -8.0433627, -7.860342564, -7.412374829, -7.223841105, -6.602476858, -6.634889602, -8.214240552, -6.756089482, -6.677592118, -7.463525944, -7.530723976, -7.072469463, -5.884300864, -7.367894847, -7.400825186, -8.391419864, -6.998922831, -6.894038462, -6.267070677, -7.197536155, -6.682521025, -7.221971644, -7.682736221, -7.608928694, -6.977836131, -7.707218554, -6.923210557, -7.15008974, -7.209717929, -7.101521783, -6.57891553, -5.600027245, -5.854522411, -8.028268506, -8.373048926, -7.778484153, -7.49786269, -8.002388013, -7.414591113, -7.465649722, -6.352028089, -6.160919607, -7.610788696, -6.75660473, -7.163070122, -8.509352154, -7.196395338, -6.885517576, -7.702504686, -7.269642346, -7.470380304, -8.748284886, -6.953059068, -7.442324983, -8.127083167, -7.471355352, -7.500258831, -7.574991568, -7.715604168, -7.509115658, -7.702950936, -7.268301173, -7.223309876, -7.917384419, -7.458935152, -7.238585905, -6.833546409, -6.975258137, -7.560703645, -7.219922044, -7.530827491, -6.935679144, -7.541488486, -7.448958589, -6.520765479, -7.202772356, -7.095193404, -6.854677827, -6.763784513, -6.670129418, -6.054645477, -6.534161126, -7.986690358, -7.853490229, -7.805990793, -7.854887051, -6.655839216, -7.479596191, -7.375181848, -6.807820865, -7.979733173, -7.753039305, -8.647613118, -8.814462084, -6.979976886, -7.929927863, -7.512082663, -8.103092633, -7.862567218, -7.150066821, -6.329168748, -7.509367216, -7.595062048, -6.166750711, -6.818395316, -6.738868549, -7.639169983, -7.267834037, -7.414422376, -4.552322783, -5.512984506, -7.275555844, -7.322971521, -7.072203879, -6.385943862, -6.599827778, -6.052583188, -6.62042509, -7.207461906, -6.901612922, -6.684738633, -6.43730779, -6.226535667, -6.889605776, -7.594332026, -7.02781391, -8.039436893, -7.3093708, -7.510715141, -8.319148809, -7.108768644, -8.528255838, -7.468924577, -7.458214626, -7.622748395, -7.655496371, -7.113586915, -6.843989038, -7.406769632, -7.580479823, -7.486794611, -6.760426588, -7.357191492, -6.854700594, -7.733557137, -7.120063431, -6.622252053, -5.868913965, -7.354990302, -7.915731778, -6.644870882, -7.384705701, -6.951528703, -7.069089999, -6.357956336, -6.461244242, -6.569037117, -6.96814585, -7.050278165, -7.704009775, -7.152040654, -7.164487418, -6.972179708, -7.719558055, -6.91139792, -8.846591811, -7.934508706, -6.628208843, -6.790407434, -7.278845515, -7.63139086, -7.549563522, -7.191702893, -6.714527646, -7.05978465, -6.97297116, -6.163188361, -6.075365473, -7.440968911, -7.113308716, -6.548596949, -7.274376768, -6.485989657, -7.184645085, -6.948210513, -6.297848499, -7.487049673, -7.546978005, -6.982547384, -7.428509119, -7.475973456, -6.107355532, -6.728980126, -8.048364747, -7.5326912, -7.401398405, -6.165834163, -7.04384682, -6.864157756, -6.609186571, -6.781169835, -7.220985228, -7.387023895, -7.827623471, -6.086130853, -7.067202796, -7.461565401, -7.397134824, -7.912870421, -7.458348181, -7.076408825, -6.852003743, -7.475483366, -7.209612442, -7.728546702, -7.457128036, -6.679359332, -8.120802203, -7.618383689, -7.828974234, -8.368504817, -7.887193263, -7.803148853, -6.873282732, -7.372158043, -5.915262403, -7.050561806, -7.262640962, -6.806778422, -7.496328236, -7.397589562, -7.864244475, -7.829436084, -8.266586377, -7.666645284, -8.5233206, -7.245582726, -6.741744781, -7.61299941, -7.759551854, -6.898437666, -6.983000607, -6.559044708, -7.87578524, -7.327179064, -6.990599018, -7.236328762, -7.697022653, -7.534528855, -6.434677044, -7.696258824, -7.73858733, -7.877042746, -7.467713287, -6.977427815, -6.690479176, -7.308175056, -6.310546798, -7.438700844, -6.181254578, -7.722077274, -6.835649971, -7.005603361, -7.806143857, -7.785456836, -7.443404208, -7.833978029, -6.63198181, -7.6175097, -7.155585501, -6.98021218, -7.559242018, -7.720549758, -7.997862931, -7.765828011, -7.21756493, -7.552516786, -7.779862845, -7.071686066, -6.979468207, -7.787627778, -7.002851134, -7.972247451, -6.800173916, -6.864991414, -7.435906485, -7.22839167, -7.968311522, -6.64828407, -7.087574967, -7.226012312, -7.701778943, -6.925687043, -7.784159034, -7.781830013, -7.049856176, -6.643914944, -6.190358787, -7.023611422, -7.65605618, -7.366066925, -6.069951615, -6.413833368, -7.591606384, -6.896700296, -6.354031221, -7.056995612, -6.706481039, -7.61467012, -7.016075592, -7.353487702, -7.546657053, -7.49400353, -7.45811405, -6.545095865, -7.600782292, -6.352812017, -6.576142726, -7.244912095, -5.982417826, -7.632980541, -7.265510095, -7.22039333, -5.640856626, -6.574210694, -6.515423956, -7.080176196, -8.001971534, -7.607441686, -6.139958292, -7.207301618, -7.097214723, -7.56419616, -7.381026607, -6.8679924, -5.867287815, -6.192807563, -7.286208082, -7.633886587, -7.004631678, -5.597953729, -7.518644074, -7.85841734, -7.750994743, -7.472106936, -7.908078225, -7.768356368, -7.426813572, -6.334851038, -7.437749788, -7.240842408, -7.424876714, -7.747358744, -7.348635636, -5.800790001, -7.093026067, -7.264152154, -7.355544196, -6.166459781, -6.60977551, -8.131718752, -7.94619773, -8.642525338, -7.315086904, -7.386813537, -6.927789075, -7.067986924, -7.035809653, -6.700981394, -7.248515145, -7.613727854, -7.579379175, -7.605530865, -7.685767835, -6.641728645, -7.220447638, -7.774218148, -7.321302178, -8.846591811, -7.336786959, -6.925438884, -6.906123921, -7.616699741, -7.260969845, -7.26992363, -8.073467014, -6.305449108, -7.466151635, -7.40484161, -8.215373614, -7.794971275, -5.689548788, -7.299811381, -7.043115372, -6.571499442, -7.248632828, -7.128869008, -7.215243873, -7.39724782, -8.214939298, -7.867298349, -7.107811377, -6.615057939, -7.940840447, -7.224686067, -7.78722413, -7.492678214, -7.135001602, -7.315077715, -5.99781331, -6.66161157, -6.772448823, -7.039945161, -7.374875343, -6.758616246, -6.909106677, -7.46130653, -7.192901504, -7.009548521, -6.629688933, -8.230891625, -6.634090323, -8.251601697, -7.072324913, -7.141567714, -7.672079236, -7.30588033, -7.727372407, -6.921290075, -7.000104307, -7.733015126, -8.186872242, -8.005955914, -7.767427377, -7.158187614, -7.201148744, -7.61752304, -7.650091567, -7.414278789, -7.018658559, -6.974965472, -6.780883353, -7.248687292, -8.156588772, -6.433410491, -6.729326826, -6.530102825, -8.33430639, -7.874581995, -7.128570196, -7.456148954, -7.559502531, -6.921030916, -8.371985951, -8.275366122, -7.048600717, -7.316923356, -6.064854637, -6.130779554, -7.170984278, -7.124176982, -7.541992683, -7.528655005, -6.483116393, -7.09964139, -7.000123925, -6.75159393, -8.387369387, -7.559767892, -8.484978389, -8.455704513, -8.024518787, -7.361727221, -7.054208884, -7.03274716, -7.86319556, -7.434371367, -7.755210562, -7.825799471, -6.905591279, -7.661869548, -6.930411696, -8.297168542, -8.152714176, -7.141303671, -6.910027346, -7.744145685, -6.760715103, -6.803884582, -6.804662082, -7.688524626, -7.859126411, -6.982840636, -7.459500443, -7.79056928, -8.03892215, -7.390149482, -7.730077889, -7.583247458, -7.542770921, -7.733769647, -6.969915494, -7.453705651, -8.056249482, -7.024569573, -7.171150816, -7.974962281, -6.87854348, -7.223526813, -7.799419424, -7.027524574, -6.800392608, -6.621072593, -7.384554488, -6.641685375, -7.126256367, -6.176833166, -7.968247899, -7.614314753, -7.6925319, -8.217662388, -7.749725813, -8.098666183, -8.296048171, -5.954541663, -7.45462998, -7.835148117, -8.478480972, -7.305312476, -7.439124138, -7.553564317, -6.800651403, -8.798332049, -7.342406235, -7.643121411, -7.165887061, -7.231107847, -7.044232821, -8.238035978, -7.399427212, -7.42331738, -8.044546592, -6.747315562, -7.36267748, -6.816868164, -7.854654208, -7.665708952, -6.775004618, -6.748649823, -7.961382303, -6.340257844, -7.156634452, -7.417981619, -7.127815201, -7.002045083, -5.992056269, -6.429139516, -7.637738677, -6.592042427, -7.248804543, -8.197752159, -7.038115047, -7.243419286, -7.478267385, -7.999993211, -7.728283342, -7.443296431, -7.200153888, -8.735801662, -7.409719972, -7.758623423, -7.879081746, -7.72105159, -8.041976272, -6.968388294, -7.633219931, -8.178809276, -7.879699152, -7.103816153, -5.793669446, -6.213683231, -7.444035265, -7.602528856, -7.672233454, -7.631572795, -7.706942125, -6.412043148, -6.915951458, -7.864250017, -6.487220779, -8.001004393, -7.15898917, -6.991138315, -7.728006454, -7.135418221, -6.871400008, -7.765871856, -7.362943651, -7.142389826, -7.555557623, -7.397785545, -7.685635061, -6.178039749, -7.237041456, -5.969064555, -7.103610146, -6.39159668, -6.758530879, -6.077796383, -6.981207562, -7.591402367, -6.606420553, -7.524642614, -7.53711226, -6.905437536, -7.438452818, -7.846734374, -7.658867564, -7.116815409, -7.949872322, -6.904063337, -7.145697993, -7.523291811, -7.927303429, -6.581938625, -7.476183918, -7.950397703, -7.541104301, -7.073385658, -7.183833504, -7.83501031, -7.189680388, -7.795769144, -7.610979728, -6.714612505, -6.742839454, -8.129280727, -7.247662352, -7.82391491, -6.452433524, -6.688415965, -7.891532094, -7.469078127, -8.106580181, -7.171754152, -7.726681657, -6.374679667, -6.930832917, -7.013528436, -7.177844483, -7.362338612, -7.344684148, -7.848575006, -7.172210359, -6.812813686, -7.075960073, -7.013771327, -7.373074643, -7.360561139, -8.250397052, -7.10369099, -8.089142711, -7.343763907, -7.311102188, -7.094486895, -6.288372343, -7.4523134, -8.000904294, -6.543337075, -6.814533056, -7.254435645, -7.927687985, -7.078023627, -8.546874154, -7.074842373, -8.041833492, -7.241528063, -7.396741333, -7.122817819, -7.636962946, -7.035270583, -6.932433402, -6.951270061, -7.201775646, -7.664472204, -7.770561104, -7.277657944, -7.175136518, -8.384331935, -7.205835533, -8.846591811, -6.971152154, -7.400676569, -7.587590605, -7.641113564, -6.746288375, -6.804119861, -7.539652724, -7.077771066, -8.065469776, -7.038092419, -7.563937877, -7.920965573, -7.109838861, -7.032806804, -7.876257036, -7.026308361, -7.508479138, -6.221536453, -6.829397043, -7.489165414, -7.253198134, -7.775756876, -6.475141077, -7.813972468, -7.413562683, -7.741622233, -7.346479918, -7.038846767, -6.81714685, -6.891074386, -7.605589131, -5.859331999, -6.97036497, -7.433114213, -7.014280557, -7.68619078, -6.555866583, -6.220183372, -8.31593314, -6.6033564, -7.400717876, -7.567407316, -7.145268348, -7.268866721, -7.414202332, -7.67347791, -5.909566309, -8.247449741, -6.370686421, -7.452220891, -7.74729163, -6.986246832, -7.715430214, -7.47361943, -7.692769104, -7.544315583, -7.393035106, -7.985229057, -6.942575152, -7.361245014, -8.07840072, -8.454992752, -8.273927019, -6.463386991, -6.427346676, -6.327889401, -7.371804114, -7.052056394, -7.424516902, -6.643132998, -7.226047166, -7.242720999, -7.767078748, -6.774634528, -6.911405613, -6.938554375, -8.056021483, -7.891295609, -7.218583165, -7.300619354, -6.787440182, -7.929396411, -7.606848315, -6.776287807, -8.109632031, -8.003308108, -7.108800819, -7.407266191, -8.055036484, -7.112727421, -6.957415731, -7.21513372, -6.465795373, -7.025665734, -7.100489022, -7.454803356, -7.753979459, -7.182163903, -7.441979687, -7.513971502, -7.643422131, -7.304105957, -7.450007531, -7.300995865, -7.077739939, -7.016138849, -7.651694774, -6.15017904, -6.470440313, -7.744509475, -7.930999005, -8.123786248, -7.399480549, -6.809594546, -6.994333902, -7.335434036, -7.043269589, -7.520082042, -6.096689361, -6.931884052, -7.056615671, -6.271256096, -7.218063956, -7.313322591, -7.079718876, -7.106218872, -7.093208158, -7.378139663, -7.193958491, -6.151148344, -7.101581828, -7.635144949, -7.774304806, -6.981494163, -7.243599976, -7.100428203, -7.188163811, -5.890028122, -6.048896588, -7.184121327, -7.821601286, -7.647510543, -6.339079381, -7.217385426, -6.957304714, -8.555102631, -6.834625999, -7.290704288, -7.637271232, -6.417237468, -7.715696725, -7.145439552, -6.091346339, -7.386673242, -7.307891059, -7.059263406, -7.183991477, -8.846591811, -7.385178435, -6.481640609, -7.366393152, -7.580887094, -7.12708177, -7.420059696, -6.228846577, -7.033145504, -7.439090612, -7.923197872, -7.901407387, -7.831756849, -7.31817255, -7.472468857, -6.23299601, -6.235648272, -7.021025101, -6.920012311, -6.279260947, -7.213760497]}, {"log_prior": -0.705995323, "feature_log_probs": [-6.098933492, -6.330126582, -6.997039025, -6.910903333, -6.830289913, -7.107017979, -7.108913795, -6.883856314, -7.054498492, -7.155580303, -7.087352644, -7.322407191, -6.681748504, -7.330001189, -7.509012127, -7.648620503, -7.56953434, -7.590983517, -7.369002883, -7.471200551, -7.303131954, -7.279747668, -7.095558388, -7.255415947, -7.165909799, -7.240291408, -7.045295369, -7.276880783, -6.977949323, -7.046750419, -7.303243457, -7.387461006, -7.476717872, -7.059302244, -7.114133355, -7.33278958, -7.467178975, -7.359587718, -7.445255275, -6.924986663, -7.531118466, -7.723627261, -7.723556937, -7.557731213, -7.203484028, -7.648604734, -6.842197071, -7.216118984, -7.348123689, -7.352048087, -7.400680258, -7.569069682, -6.84747491, -6.521268654, -6.566425855, -6.627695176, -6.709182943, -7.348367243, -8.035431142, -7.238200132, -7.039669335, -7.256017465, -7.445353068, -6.669182201, -6.969927853, -6.761961268, -7.202345792, -7.470357302, -7.336385059, -7.285991953, -7.109020793, -7.313499392, -7.056214885, -7.137369653, -7.399318573, -7.197301947, -7.491212705, -8.044124092, -7.045824087, -7.387389504, -6.945259692, -7.455898561, -7.823608439, -6.993597164, -7.297830807, -6.718000152, -7.133470098, -7.251064592, -6.90633399, -6.625276573, -7.065953565, -7.302549263, -6.452246823, -7.147148039, -6.867773398, -7.131531067, -7.119090993, -7.401562466, -7.688830771, -6.807918617, -7.202570807, -6.912928382, -7.071343002, -6.724937469, -7.340093483, -6.905732763, -7.00678034, -7.483877243, -7.673358647, -8.486692022, -7.152276267, -7.186814643, -7.381428543, -7.103987918, -7.534646476, -6.65170417, -7.139476606, -7.218776935, -6.774498336, -8.678836905, -6.914617099, -7.136977168, -7.517055368, -7.22419954, -7.031133754, -7.682882138, -7.95923027, -7.412216967, -6.470905926, -7.132948525, -8.68506757, -7.391020973, -8.560406617, -8.577614184, -7.379293176, -7.334821208, -7.404599329, -7.07347859, -7.267488342, -6.300235386, -6.425471903, -6.464267578, -7.050952307, -6.183393587, -6.987554881, -7.264137695, -6.936954436, -7.065724219, -6.311445481, -7.106183917, -7.848707387, -6.891074496, -6.313187825, -6.34027831, -6.741766889, -7.66818629, -7.941148967, -8.0423291, -8.023828242, -7.329320815, -7.378511926, -7.029984082, -7.581155325, -8.492599661, -7.420000139, -8.134320492, -7.257191088, -7.781604928, -7.987462188, -7.616435987, -8.034190021, -7.34919671, -6.755464574, -6.752366878, -6.971100734, -8.713184295, -6.415033077, -8.568709722, -6.834555617, -7.386809297, -7.520417804, -6.692410682, -7.495451068, -8.157425496, -6.996975584, -6.624976043, -6.912542964, -7.580478979, -7.23425953, -6.241567461, -6.753865686, -7.095210319, -6.947521031, -7.042938228, -7.227821192, -6.726337291, -6.590715264, -7.152470553, -7.283460437, -6.639942475, -7.121989357, -7.134365966, -7.62744589, -7.279822093, -7.036606225, -7.268825059, -7.65945201, -6.439919219, -7.469398123, -6.912456323, -7.196646616, -7.747675815, -6.654940239, -8.529499275, -8.464899368, -8.716793609, -8.397558406, -7.21482148, -7.30690886, -7.426577365, -7.618954028, -8.130203573, -8.021831544, -7.260164495, -6.98813783, -7.390502334, -6.538500911, -7.505964339, -7.148975873, -7.678972593, -7.319721052, -7.117477205, -6.763892027, -7.062736875, -8.682132687, -6.799097585, -7.470442553, -7.551546252, -7.345766685, -7.249767914, -6.594334874, -6.94769969, -7.157509758, -6.976717596, -6.936538202, -6.665472899, -6.266678246, -7.506682181, -7.094257292, -7.250293164, -7.234007378, -7.153335327, -7.113340864, -7.176965296, -7.34626804, -7.673407442, -7.678667123, -8.154723434, -8.045413995, -7.758274544, -6.525190243, -7.062231679, -6.688221862, -8.483140498, -8.620176367, -8.426655775, -7.626407522, -8.546333648, -6.969373112, -7.038136897, -7.298597572, -7.496040377, -7.468410484, -7.041380852, -7.34269679, -6.734533278, -6.879478812, -7.505718782, -8.531905488, -6.454970079, -7.010032039, -7.101283334, -7.125164159, -6.897479494, -8.650542366, -7.55726288, -7.182180067, -7.774445963, -7.111156006, -7.169807662, -7.266867061, -6.898628816, -7.227910795, -7.272848066, -8.587449064, -7.706135686, -5.785041357, -6.581540423, -7.233753706, -7.106033422, -7.522835591, -6.186867421, -6.813711324, -6.872667927, -6.944106586, -7.446875774, -7.546473408, -7.424896513, -7.097577434, -7.365594434, -7.405944933, -8.482623445, -7.973204578, -7.322069128, -7.409670148, -7.517460052, -7.611026284, -6.427951446, -7.065342312, -7.341156313, -6.814179719, -7.234482035, -6.758442035, -6.406120685, -6.72095251, -7.327186223, -7.221664774, -6.370927067, -7.018913132, -8.192073729, -8.057524496, -7.513568167, -7.265790383, -7.437187336, -7.174398226, -8.553198641, -8.42401959, -7.502331532, -6.477310628, -6.507467633, -6.918426651, -6.992729739, -6.539408024, -5.89602696, -7.483038588, -7.659928713, -7.029593926, -7.267056039, -8.609477436, -7.846567187, -8.097328455, -8.402523154, -7.020430212, -7.128635461, -7.560946541, -7.627928079, -7.315239555, -6.83073589, -7.161542059, -7.18247723, -7.893451743, -6.717249847, -7.511958328, -7.756121498, -7.099577381, -7.131467226, -7.230110151, -6.285807068, -7.209504058, -7.093226573, -7.328126046, -7.966453775, -8.162314926, -6.722252291, -6.470358118, -7.166678586, -6.796468599, -7.752029, -7.365768355, -7.366623376, -7.182223911, -7.428445661, -7.066418151, -6.96109798, -7.512411969, -6.802335222, -7.383313108, -7.733293323, -7.396762489, -7.085722265, -7.357888898, -7.202745246, -7.04783447, -6.369910678, -6.741825865, -7.522877979, -7.455200445, -6.641059871, -7.352184913, -7.326306927, -6.997035836, -6.441362678, -6.828852151, -7.645162359, -7.479051466, -6.721706204, -7.650969317, -6.741389074, -7.974667959, -8.513490441, -7.042039202, -7.520455282, -7.386363022, -7.023450138, -6.767522791, -7.491493418, -7.244347478, -6.477364355, -7.150858863, -7.221631431, -8.163791061, -7.130563035, -7.205770608, -7.001470172, -7.115445472, -7.990947398, -7.130771038, -7.306188217, -6.887711289, -7.153279275, -7.394476708, -8.239769123, -7.251253046, -7.504975336, -8.553031072, -8.545908458, -8.633193218, -7.1454937, -6.93705436, -6.770660102, -7.26482271, -7.933946002, -6.843856841, -7.357848529, -7.916514686, -6.368070376, -7.98754414, -7.821797707, -8.451980045, -7.278824833, -6.913827485, -8.745126746, -8.494322478, -8.399039032, -8.228485061, -7.572102495, -7.053523123, -7.043358944, -6.681333789, -5.860632175, -6.553523613, -8.047429979, -6.942849332, -6.840088705, -7.278667318, -7.358837254, -7.751529804, -7.297558319, -6.749178746, -6.843481217, -7.374921575, -7.405775253, -7.868925427, -7.330516629, -8.543310181, -7.191956033, -7.296115683, -6.243450928, -6.198528194, -7.829954398, -6.034149688, -6.65464769, -6.857845064, -8.306771116, -8.257367434, -6.375929447, -7.765360812, -8.345453575, -7.570977416, -6.708115157, -7.102456463, -7.653177436, -7.347354454, -8.160758999, -7.00511842, -7.256886204, -7.353150956, -7.312032537, -6.986896625, -6.844199769, -7.330963734, -7.326603983, -7.336432102, -7.390230133, -6.781693298, -6.717467916, -6.887231541, -6.591037402, -7.468535789, -7.398103605, -6.889628497, -7.848273346, -7.688740158, -6.227093233, -7.25512545, -7.532802964, -6.423363484, -6.984790486, -7.327762703, -6.795553471, -7.404956332, -7.192599673, -6.121544644, -8.511430018, -8.322225222, -7.32409192, -7.570136367, -7.366564214, -7.34229309, -7.319943579, -6.806839214, -6.685167244, -7.146122793, -6.519850413, -6.939036412, -7.984152589, -6.838158103, -7.004279274, -6.740035444, -6.907638567, -7.103487108, -6.499655141, -7.55314166, -7.120266064, -7.015042987, -7.349599147, -7.199483975, -6.67241117, -6.725348873, -7.034672103, -7.431993585, -7.340336563, -7.345153051, -7.219221468, -6.997647951, -6.414277289, -8.43966777, -7.096233629, -7.091018452, -6.79828079, -7.280244678, -7.347927147, -6.629773335, -7.62767457, -7.029138842, -7.302511054, -7.88033647, -7.432867508, -6.71301603, -7.084030687, -7.244572089, -8.183636456, -8.239638101, -7.242424856, -7.179797897, -7.417822104, -7.34844747, -6.672889686, -7.074010052, -7.305495726, -8.249050142, -7.493566861, -7.225004478, -7.288994942, -6.788065297, -7.449900972, -6.757953968, -7.747162588, -8.06958333, -7.347113214, -6.071534276, -6.966022324, -6.871490969, -7.829476211, -7.413145437, -7.299687584, -6.951512096, -7.340709835, -7.040512131, -7.353184134, -7.418176441, -6.823566891, -7.157450496, -6.654770205, -7.37025463, -7.03196919, -6.664618987, -7.500504232, -6.980742082, -7.125600222, -7.934448271, -7.470137201, -6.951606784, -7.058477834, -7.939468446, -6.496862103, -6.666422351, -7.006334195, -7.531795944, -6.088699787, -6.594171042, -6.673552993, -7.134044824, -6.800332262, -7.050125313, -7.294051416, -7.780478264, -6.467898708, -6.504146879, -6.760264358, -7.169489452, -6.950049211, -6.052833059, -7.007515124, -7.18367378, -6.963221397, -6.29097912, -7.051104263, -6.378700515, -7.304511668, -6.707384124, -6.933906771, -7.416357731, -7.376718063, -7.213128107, -6.424808633, -7.269086434, -6.708046981, -6.903856432, -7.011300874, -8.347753332, -7.259728735, -7.032934255, -7.183912206, -5.88724251, -6.642323357, -6.639758972, -6.865451155, -7.053444713, -7.249276622, -6.469446146, -7.341620629, -7.374161021, -7.11995354, -6.84910992, -7.097409177, -8.110296892, -8.295790964, -7.06799546, -7.381825736, -6.673178387, -8.020638179, -6.707441712, -7.045797666, -7.119073713, -7.352249502, -7.317782083, -7.196089208, -6.739539287, -8.277501498, -7.167657982, -8.041771889, -7.769281469, -7.546585114, -7.375125322, -8.443679068, -6.496033909, -6.860945995, -7.474095928, -7.033543405, -7.865600143, -6.959572765, -6.456681528, -6.872900932, -6.968585544, -7.213935177, -6.269137261, -6.892711352, -6.855136128, -7.541975828, -7.345276456, -7.596599621, -7.615648794, -7.709694947, -7.378108772, -6.547122823, -7.378675278, -7.07579603, -7.211764047, -7.245556817, -7.496242833, -7.050582045, -7.087909639, -7.123746882, -7.358241804, -7.314704956, -7.224519203, -5.97044393, -7.058794546, -6.958412418, -7.153440027, -6.684546905, -5.634785251, -6.742309622, -7.682410549, -6.961979428, -6.973367179, -7.436474917, -7.041531576, -7.488464655, -6.871700141, -7.554964505, -6.315499577, -8.215335217, -7.423257019, -6.9608833, -7.581564661, -7.362354502, -7.25097786, -7.08844791, -7.752982559, -6.555113781, -8.559726617, -7.231891828, -6.64625578, -6.454605745, -7.94563551, -7.611542226, -7.161279264, -7.052194465, -6.699726444, -7.355409683, -8.231710988, -7.44424356, -7.068404559, -7.227371242, -7.323180479, -7.299688295, -7.324179115, -7.362453279, -8.15471768, -6.454476911, -6.962552306, -7.325559333, -7.012294755, -7.088326271, -7.446263984, -7.253096223, -7.271388223, -7.30427284, -7.35107377, -6.8115815, -8.683303768, -6.7011346, -7.615919237, -8.549200195, -6.778455038, -7.197290262, -6.790343864, -7.206680779, -6.540770757, -6.775145452, -6.72496738, -7.216474766, -7.300459836, -7.15394378, -7.368241231, -7.250613158, -8.374844432, -6.553242224, -7.37772304, -6.909306712, -7.400480306, -7.34053354, -7.799860452, -8.011132557, -7.682428852, -8.203249089, -6.91545997, -6.708335394, -7.044750145, -6.879763533, -7.201952602, -7.650943578, -7.315439964, -6.465712393, -6.881038438, -7.158245773, -7.022831569, -7.461174402, -7.110534236, -7.295692751, -8.673789573, -7.062716882, -7.07378529, -6.83066718, -6.357588908, -7.118290251, -8.47008145, -8.655788251, -8.639383574, -6.853906781, -8.676902353, -7.946733431, -6.398125916, -7.166361676, -7.015222724, -7.364719846, -7.353127721, -7.10524346, -6.966399638, -7.312597953, -6.83557965, -7.474654176, -7.341430243, -6.843263587, -7.262207948, -7.032956296, -6.821808371, -6.628087722, -6.954510504, -6.5231359, -8.10861919, -7.925450678, -7.620321731, -6.744346615, -7.059309235, -6.962055504, -7.087153034, -7.07846067, -6.59303493, -6.728508836, -7.203367616, -6.548549586, -7.159423925, -7.34324448, -6.93273012, -7.335069447, -7.360038778, -6.575332473, -7.030407912, -7.007837719, -7.154049481, -7.18978607, -6.817758846, -6.839937355, -7.172268548, -7.183474986, -7.04427666, -7.074769786, -7.530825684, -6.910116048, -6.815924649, -8.044206368, -7.231425685, -6.310198186, -6.969736571, -7.112460757, -7.38586916, -6.332125769, -7.076715885, -6.321197526, -7.052857423, -7.312309001, -6.992997833, -7.126155552, -8.287393415, -8.297537574, -7.403443115, -7.711333456, -7.457384316, -7.498262306, -7.861025813, -7.386779356, -6.789128734, -7.271161749, -7.11449221, -7.153513834, -7.32376783, -7.661220679, -6.909353299, -7.43553582, -7.358179228, -7.366206538, -7.292590605, -6.507297004, -6.858482084, -7.363318368, -7.287057979, -7.23401818, -8.181688236, -8.16630351, -6.965444208, -6.618925621, -6.780837545, -7.247342694, -6.855537509, -8.224741753, -7.417235679, -6.81809058, -6.23970832, -6.783168884, -7.000503033, -6.83392246, -7.177722745, -7.516640766, -7.068036352, -7.278518702, -7.012580931, -6.63546207, -6.829241023, -7.394247659, -7.357261209, -8.59512567, -7.174800522, -8.166631484, -7.35383808, -8.405449551, -8.548728738, -8.567767797, -6.996957463, -7.306089129, -6.424049984, -7.103822974, -7.224290024, -7.060533169, -6.611236752, -7.208350212, -7.003535366, -7.741701144, -6.475117589, -7.590282252, -6.777096961, -7.246501929, -6.742912757, -8.064910022, -6.97777933, -7.075153187, -6.652211732, -7.05843863, -7.285444507, -7.310408586, -7.038420865, -7.706624001, -6.629743055, -8.179956734, -8.154675095, -6.510120923, -6.498835843, -6.658396513, -8.252271738, -6.381767659, -7.312017801, -7.497559698, -7.010555341, -6.743759999, -7.044075755, -7.65857733, -8.233061669, -7.963016812, -6.915602173, -7.03756098, -7.018663639, -7.318036536, -6.931079367, -6.792658045, -6.832099284, -6.678289146, -7.558116798, -6.634394952, -7.068077921, -7.053091371, -6.960061233, -7.485157288, -7.587648748, -7.551962879, -6.629420053, -7.342170684, -6.811417716, -8.493988714, -8.431192964, -6.228485977, -6.959806696, -7.902845583, -6.881641826, -7.33844187, -7.146038604, -7.302535229, -7.196776742, -6.938127783, -7.694993895, -7.337055472, -8.606780839, -6.849180593, -7.217708599, -6.916479813, -6.649315568, -7.047426126, -7.458514386, -6.4547567, -7.547067906, -6.915583918, -7.949363843, -7.402447162, -7.142823304, -7.235361808, -6.560716779, -6.949823109, -7.157843987, -6.473306398, -7.179824709, -6.947004376, -7.24672527, -7.466353815, -6.962214502, -6.853259649, -7.203826393, -7.071528042, -7.33510266, -7.123227824, -7.737449146, -6.875521311, -6.585770515, -7.081204495, -7.071942878, -7.052632872, -7.220979391, -7.255323877, -7.288637016, -6.82772191, -7.223665774, -7.464121336, -7.085278091, -7.992663564, -7.587825076, -7.537130738, -7.271856542, -6.736039341, -6.583012798, -8.32802271, -6.860580397, -7.105415167, -7.81408944, -7.218851204, -6.932997181, -6.889239111, -7.042470931, -7.296238983, -8.259448373, -6.916564037, -7.882363158, -6.39597824, -6.695508428, -6.789118744, -7.321585476, -6.98550098, -6.98639503, -6.994207969, -8.303468745, -7.156081718, -8.503089425, -7.205093386, -7.05244912, -7.454932806, -6.788142597, -6.519099545, -6.177059609, -6.33218306, -7.225365139, -6.784900044, -7.26224746, -6.690615207, -7.484098483, -7.093547025, -7.173250012, -6.652657122, -6.652217202, -6.958416751, -6.911389627, -6.937204349, -7.275537104, -7.505545223, -7.2258309, -6.79308047, -7.56894387, -7.415094087, -7.223980143, -6.747111361, -6.430983576, -7.556394416, -7.148777129, -7.466188757, -7.129818937, -6.938680718, -6.632927039, -6.892059907, -7.047518712, -7.508759213, -7.241782267, -6.645665833, -6.611971009, -7.129070696, -7.332506141, -7.312837409, -6.880583463, -7.24636318, -7.196060621, -6.751358926, -7.458525652, -5.8475025, -6.265649525, -7.205866597, -6.644756199, -6.481096587, -7.267340855, -6.191770705, -6.944813462, -6.770814987, -7.63764423, -7.325749644, -6.087291801, -8.482838711, -8.472163032, -8.415383889, -6.791136602, -6.420128521, -7.011152983, -7.14387063, -8.020377806, -7.473941909, -7.280306211, -6.020256412, -7.147939196, -7.253700277, -7.194004152, -7.823194377, -7.229142278, -7.84503838, -7.242176253, -6.727501199, -6.06831712, -6.858672357, -6.779382104, -6.623264462, -6.821417071, -7.361230735, -7.142978513, -7.726183487, -7.05957397, -7.586073472, -7.811343695, -7.125182505, -7.237393155, -7.865988851, -8.325750549, -7.38156644, -6.624124535, -6.751528139, -7.194211293, -6.606092183, -6.883955539, -5.930804383, -7.24990946, -7.213322126, -6.750459153, -6.850077391, -6.138611587, -7.004171789, -7.452647235, -6.857359208, -6.968840735, -7.120542476, -7.148993467, -7.070014166, -6.132470527, -6.050936314, -7.275926048, -8.635073891, -7.030346728, -7.266885351]}], "model_type": "nb", "positive_class_label": "food_and_drink", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"free": [445, 2.199964783], "meal": [666, 2.767257018], "plans": [793, 3.507121823], "grocery": [487, 3.384519501], "list": [627, 2.391267728], "save": [940, 3.134060139], "money": [696, 2.642582157], "months": [698, 2.792468438], "delicious": [311, 3.053556921], "dinner": [330, 3.010306937], "ideas": [537, 3.282240652], "family": [405, 2.480612829], "enjoy": [378, 2.948749044], "favorite": [412, 2.84937657], "come": [240, 2.136161826], "perfect": [777, 2.742665615], "opening": [747, 3.646883766], "phone": [782, 3.423740215], "store": [1039, 2.631653086], "started": [1027, 2.551610378], "post": [816, 2.592571736], "couldn": [270, 3.464562209], "fit": [432, 3.282240652], "came": [184, 2.788222147], "writing": [1190, 3.456263406], "known": [592, 2.443911462], "food": [440, 1.846825494], "use": [1129, 1.746269892], "recipes": [887, 3.208628835], "view": [1146, 2.989363763], "worth": [1187, 2.763116226], "links": [625, 3.439869596], "planning": [792, 3.542523751], "hope": [525, 3.254841678], "little": [628, 1.953104705], "bit": [146, 2.505850761], "week": [1164, 2.420171475], "plan": [791, 2.881415924], "chicken": [216, 2.963786921], "rice": [917, 3.215101349], "pizza": [788, 3.456263406], "slow": [995, 3.289209322], "beef": [132, 3.317580019], "cheese": [213, 2.718664463], "real": [879, 2.349420618], "simple": [985, 2.449935576], "style": [1051, 3.098762357], "pasta": [772, 3.774717137], "chocolate": [222, 3.176880137], "potato": [819, 3.588614858], "potatoes": [820, 3.741194445], "easy": [361, 2.363175994], "salad": [933, 3.146108478], "brown": [170, 3.18314975], "corn": [267, 3.70875917], "cream": [278, 3.026307278], "pot": [818, 3.833213344], "sandwiches": [938, 3.833213344], "lemon": [614, 3.809402695], "sweet": [1059, 2.938847973], "garden": [461, 3.797706656], "fresh": [447, 2.582173029], "italian": [571, 3.667086473], "fast": [410, 2.827103934], "make": [654, 1.436413962], "night": [725, 2.80531658], "10": [1, 1.975410463], "summer": [1054, 3.248107646], "black": [147, 2.872156598], "pepper": [775, 3.551573586], "soft": [1003, 3.346779173], "11": [3, 2.661066971], "meals": [667, 3.092998653], "12": [4, 2.455996201], "roll": [925, 3.579225117], "13": [5, 2.890761786], "sun": [1055, 3.730265375], "dried": [348, 3.646883766], "honey": [523, 3.752244282], "14": [6, 2.938847973], "foods": [441, 2.578730685], "meat": [671, 2.754885727], "egg": [371, 3.481369327], "breakfast": [165, 3.140066163], "15": [7, 2.43792342], "hot": [527, 2.653631993], "dogs": [341, 4.108919225], "16": [8, 2.886077937], "white": [1171, 2.664805293], "17": [9, 3.037118194], "18": [10, 2.99455858], "19": [11, 3.234774115], "healthy": [508, 2.831518953], "vegetables": [1143, 3.104559475], "french": [446, 3.254841678], "fries": [451, 4.077666682], "vegetable": [1142, 3.719454459], "20": [12, 2.368731563], "eggs": [372, 3.317580019], "bacon": [119, 3.882606099], "21": [30, 3.339399066], "22": [31, 3.407866865], "best": [139, 1.804748089], "coconut": [234, 3.870027317], "23": [32, 3.481369327], "home": [522, 2.163009076], "24": [33, 3.048047265], "budget": [171, 3.833213344], "sauce": [939, 3.087267978], "visit": [1147, 3.215101349], "great": [485, 2.067905061], "author": [113, 3.048047265], "june": [583, 3.741194445], "2016": [26, 3.202197945], "comes": [241, 2.357651118], "cooking": [265, 2.924177783], "long": [636, 1.878734162], "beans": [130, 3.542523751], "fried": [448, 3.569922725], "large": [598, 2.509050764], "apple": [93, 3.415772045], "things": [1086, 1.973532528], "cooked": [264, 3.202197945], "point": [805, 2.414323505], "good": [478, 1.68397604], "true": [1113, 2.813974643], "kids": [585, 3.392241547], "pack": [759, 3.524666133], "drive": [352, 3.110390395], "new": [722, 1.506817602], "york": [1198, 2.664805293], "park": [766, 3.607663053], "usually": [1136, 2.699094367], "mountain": [701, 4.077666682], "menu": [679, 3.248107646], "chinese": [220, 3.786145833], "dry": [355, 3.472930459], "original": [754, 3.015611989], "powder": [823, 3.821237153], "snack": [999, 3.407866865], "recipe": [886, 3.064668146], "really": [881, 2.045478025], "hit": [520, 3.241418658], "spot": [1020, 3.369252029], "air": [75, 3.195808147], "cool": [266, 3.234774115], "fact": [402, 2.431971022], "didn": [324, 2.565078596], "day": [301, 1.865174632], "deep": [309, 3.208628835], "nature": [713, 3.303294061], "water": [1159, 2.462093781], "place": [789, 1.986752739], "world": [1186, 2.000150069], "couple": [274, 3.015611989], "raw": [873, 3.317580019], "ice": [535, 3.048047265], "open": [745, 2.471310436], "coming": [242, 3.026307278], "ate": [109, 3.515855503], "north": [727, 3.215101349], "filled": [425, 3.248107646], "bottles": [157, 3.961594511], "old": [741, 2.36594992], "way": [1160, 1.580021006], "box": [159, 3.261621365], "experience": [397, 2.531742175], "dish": [335, 3.407866865], "course": [275, 2.402729172], "decided": [307, 3.26844733], "california": [180, 3.431772386], "road": [923, 3.282240652], "trip": [1112, 3.324800267], "packed": [760, 3.423740215], "set": [971, 2.181316224], "instead": [559, 2.311882699], "traditional": [1105, 2.8404079], "created": [280, 2.904946421], "national": [711, 2.963786921], "stop": [1037, 2.900195818], "stay": [1034, 2.9097197], "click": [232, 3.588614858], "standard": [1024, 3.275320209], "red": [889, 2.948749044], "served": [966, 3.189458919], "ve": [1140, 1.9169997], "got": [481, 2.443911462], "juice": [580, 3.339399066], "driving": [353, 3.667086473], "setting": [972, 3.489880017], "add": [65, 2.39698203], "feeling": [418, 3.339399066], "used": [1130, 2.000150069], "oil": [740, 3.037118194], "using": [1135, 2.082443219], "regular": [893, 3.048047265], "test": [1077, 3.303294061], "piece": [787, 3.215101349], "check": [212, 2.596062141], "minute": [688, 3.423740215], "let": [615, 2.304018963], "cook": [263, 3.015611989], "minutes": [689, 2.69522589], "depending": [315, 3.254841678], "meet": [675, 3.254841678], "bring": [166, 2.872156598], "serve": [965, 3.087267978], "happy": [503, 3.18314975], "right": [920, 1.940319143], "want": [1151, 1.803164558], "bowl": [158, 3.26844733], "2015": [25, 3.456263406], "party": [770, 3.234774115], "asked": [106, 2.858426406], "say": [942, 2.140586612], "word": [1178, 3.195808147], "woman": [1175, 3.646883766], "think": [1087, 2.009830686], "wrong": [1192, 3.048047265], "case": [196, 2.565078596], "near": [714, 3.053556921], "natural": [712, 2.890761786], "organic": [752, 3.448032907], "vegan": [1141, 3.989374075], "words": [1180, 3.053556921], "game": [459, 3.170649587], "try": [1114, 2.235896792], "self": [958, 3.075904219], "described": [316, 3.431772386], "shows": [981, 3.053556921], "doing": [342, 2.509050764], "table": [1061, 2.924177783], "restaurant": [910, 2.771415029], "web": [1162, 3.598093602], "single": [987, 2.554960465], "estate": [385, 3.989374075], "finding": [429, 3.392241547], "problem": [839, 2.631653086], "understand": [1124, 2.872156598], "effect": [369, 3.128089972], "creating": [281, 3.189458919], "grow": [491, 3.384519501], "better": [140, 1.966055857], "know": [590, 1.80158353], "means": [670, 2.382757039], "local": [633, 2.596062141], "shops": [979, 3.719454459], "farmers": [409, 3.809402695], "markets": [662, 3.481369327], "ask": [105, 2.818331948], "eating": [363, 2.531742175], "given": [469, 2.683709448], "income": [548, 3.809402695], "includes": [546, 3.059097101], "increase": [549, 2.953736585], "levels": [617, 3.18314975], "useful": [1131, 3.361704824], "gets": [467, 3.00502988], "fun": [456, 2.938847973], "pay": [773, 2.862982222], "attention": [110, 3.020945335], "produced": [844, 3.415772045], "impact": [540, 3.140066163], "range": [871, 3.031698127], "maybe": [665, 2.895467677], "restaurants": [911, 2.876775544], "doesn": [339, 2.188268743], "mean": [668, 2.85389125], "100": [2, 2.668557643], "years": [1195, 1.863492546], "ago": [73, 2.718664463], "probably": [838, 2.509050764], "diet": [325, 3.202197945], "related": [894, 2.886077937], "health": [507, 2.628036446], "eat": [362, 2.25311739], "making": [656, 2.049518435], "likely": [621, 2.596062141], "added": [66, 2.730593034], "high": [516, 2.049518435], "does": [338, 2.095074966], "fruits": [454, 3.636933435], "green": [486, 2.919335159], "close": [233, 2.738625206], "uses": [1134, 3.164457617], "future": [458, 2.792468438], "book": [153, 2.758992509], "labor": [594, 4.124919567], "animals": [89, 3.821237153], "important": [541, 2.293629259], "living": [631, 2.963786921], "conditions": [252, 3.617324964], "currently": [289, 3.248107646], "bad": [120, 2.687533545], "easily": [359, 2.890761786], "happens": [502, 3.261621365], "growing": [492, 2.948749044], "scale": [944, 3.431772386], "need": [717, 1.806334132], "changes": [209, 2.968850223], "government": [482, 3.317580019], "support": [1057, 2.9097197], "questions": [865, 3.122155237], "rights": [921, 3.786145833], "economy": [366, 3.975387833], "working": [1184, 2.544943687], "country": [273, 2.722624864], "live": [629, 2.585627264], "culture": [286, 2.929043973], "buying": [179, 3.346779173], "current": [288, 3.087267978], "environment": [381, 3.392241547], "change": [207, 2.405615177], "society": [1002, 3.481369327], "pork": [812, 3.797706656], "blog": [148, 3.289209322], "drink": [349, 2.924177783], "energy": [375, 3.354214152], "july": [581, 3.752244282], "2013": [23, 3.400023688], "october": [734, 3.730265375], "2019": [29, 3.533555081], "reading": [877, 3.282240652], "contains": [259, 3.376856629], "read": [875, 2.446918983], "policy": [807, 3.579225117], "jump": [582, 3.423740215], "places": [790, 3.128089972], "bottle": [156, 3.569922725], "don": [343, 1.646756031], "expect": [395, 3.407866865], "spend": [1017, 3.015611989], "did": [323, 2.179009418], "wasn": [1156, 3.164457617], "going": [477, 2.061738546], "written": [1191, 3.324800267], "seeds": [955, 3.667086473], "ways": [1161, 2.649935131], "according": [55, 2.399851472], "herbs": [515, 3.845334705], "contain": [258, 3.489880017], "essential": [384, 3.515855503], "acid": [58, 4.141180088], "30": [39, 2.462093781], "protein": [855, 3.098762357], "including": [547, 2.176707921], "anti": [91, 3.752244282], "house": [531, 2.699094367], "previous": [834, 3.515855503], "article": [103, 2.867558889], "reported": [901, 3.627081139], "variety": [1138, 3.020945335], "benefits": [138, 3.189458919], "function": [457, 3.627081139], "increased": [550, 3.617324964], "helps": [514, 3.158303751], "giving": [471, 3.208628835], "super": [1056, 3.26844733], "texture": [1080, 3.730265375], "works": [1185, 2.763116226], "parts": [769, 3.202197945], "warm": [1155, 3.617324964], "leave": [609, 2.919335159], "hours": [530, 2.687533545], "cup": [287, 3.146108478], "order": [750, 2.371520965], "amazon": [83, 3.774717137], "isn": [568, 2.379936162], "source": [1009, 2.999780524], "stores": [1040, 3.195808147], "carry": [194, 3.636933435], "gives": [470, 3.087267978], "drinks": [351, 3.448032907], "total": [1100, 3.134060139], "calories": [183, 3.542523751], "ingredients": [556, 2.635282854], "fruit": [453, 2.979054393], "second": [952, 2.525206204], "mix": [690, 3.020945335], "notes": [729, 3.472930459], "flavor": [434, 3.064668146], "nutrition": [733, 3.439869596], "serving": [970, 3.081569957], "fat": [411, 2.979054393], "fiber": [420, 3.989374075], "sugar": [1053, 2.919335159], "500": [47, 3.376856629], "tried": [1111, 3.146108478], "share": [975, 2.746722416], "founder": [443, 3.439869596], "research": [905, 2.771415029], "turned": [1117, 3.339399066], "took": [1097, 2.702977867], "hands": [500, 3.303294061], "problems": [840, 3.18314975], "thousands": [1090, 3.26844733], "posts": [817, 4.077666682], "team": [1071, 3.075904219], "books": [154, 3.400023688], "step": [1035, 3.020945335], "wild": [1173, 3.677342973], "typically": [1122, 3.324800267], "number": [732, 2.325127926], "studies": [1048, 3.472930459], "example": [393, 2.382757039], "study": [1049, 3.092998653], "university": [1127, 2.809636241], "science": [946, 3.228173431], "technology": [1072, 3.310411529], "link": [624, 3.361704824], "consumption": [257, 3.524666133], "researchers": [906, 3.656934102], "play": [799, 2.924177783], "role": [924, 3.241418658], "non": [726, 2.796732836], "growth": [494, 3.464562209], "produce": [843, 3.048047265], "short": [980, 2.699094367], "chain": [206, 3.524666133], "scientists": [948, 3.833213344], "believe": [137, 3.00502988], "key": [584, 2.895467677], "2017": [27, 3.415772045], "review": [916, 3.303294061], "published": [860, 3.087267978], "references": [891, 3.774717137], "include": [544, 2.661066971], "association": [108, 3.607663053], "dairy": [294, 3.607663053], "weight": [1166, 3.26844733], "management": [658, 3.507121823], "potential": [821, 3.146108478], "work": [1181, 1.861813285], "needed": [718, 2.958749127], "thought": [1089, 2.638925845], "available": [115, 2.431971022], "result": [912, 2.771415029], "college": [238, 3.627081139], "job": [577, 2.953736585], "level": [616, 2.706876507], "department": [314, 3.588614858], "central": [202, 3.464562209], "paid": [763, 3.533555081], "month": [697, 2.862982222], "online": [744, 2.7755904], "city": [226, 2.613699283], "000": [0, 2.486862849], "50": [46, 2.7755904], "200": [13, 3.376856629], "street": [1044, 2.989363763], "machine": [651, 3.569922725], "bread": [163, 3.010306937], "public": [859, 2.779783278], "calls": [182, 3.431772386], "small": [996, 2.023542948], "25": [34, 2.818331948], "popular": [810, 2.624432838], "daily": [293, 2.914515872], "sports": [1019, 3.947988859], "tea": [1070, 3.361704824], "fish": [431, 3.248107646], "vitamin": [1148, 4.244720767], "paper": [765, 3.369252029], "light": [620, 2.827103934], "hard": [504, 2.352156598], "size": [991, 2.914515872], "milk": [685, 2.963786921], "salt": [935, 2.979054393], "cheap": [211, 3.472930459], "season": [951, 3.472930459], "flour": [436, 3.989374075], "beer": [133, 3.533555081], "stand": [1023, 3.369252029], "33": [42, 3.809402695], "bars": [126, 3.579225117], "plastic": [796, 3.636933435], "hair": [497, 4.06239921], "mid": [683, 3.677342973], "market": [660, 2.46822877], "state": [1029, 2.726601013], "end": [374, 2.149495357], "hand": [499, 2.531742175], "quality": [862, 2.754885727], "days": [302, 2.499481313], "room": [926, 2.886077937], "sea": [949, 3.569922725], "wine": [1174, 3.208628835], "theory": [1084, 3.809402695], "english": [377, 3.551573586], "language": [597, 3.646883766], "80": [49, 3.346779173], "low": [648, 2.582173029], "called": [181, 2.179009418], "blue": [150, 3.515855503], "music": [708, 3.551573586], "run": [929, 2.554960465], "company": [246, 2.37431817], "45": [45, 3.607663053], "40": [44, 3.064668146], "china": [219, 3.809402695], "29": [38, 3.569922725], "star": [1025, 3.646883766], "extra": [398, 3.026307278], "28": [37, 3.498463761], "half": [498, 2.525206204], "photo": [783, 3.448032907], "fall": [404, 3.195808147], "tv": [1118, 3.833213344], "35": [43, 3.646883766], "players": [801, 4.244720767], "class": [228, 3.261621365], "27": [36, 3.598093602], "color": [239, 3.448032907], "young": [1199, 3.164457617], "director": [333, 3.56070607], "international": [561, 3.241418658], "wants": [1153, 3.332073026], "stories": [1041, 3.384519501], "chef": [214, 3.289209322], "august": [112, 3.809402695], "2009": [19, 3.774717137], "issues": [570, 3.228173431], "text": [1079, 3.809402695], "brand": [161, 3.015611989], "plus": [804, 2.948749044], "sit": [988, 3.498463761], "butter": [177, 3.110390395], "method": [680, 3.515855503], "cover": [277, 3.346779173], "heat": [511, 3.332073026], "line": [623, 2.628036446], "base": [127, 3.354214152], "clean": [230, 3.339399066], "turn": [1116, 2.714719685], "cut": [292, 2.822708323], "taste": [1068, 2.62084217], "developed": [321, 3.376856629], "offers": [738, 2.963786921], "look": [638, 2.041453875], "2010": [20, 3.627081139], "art": [102, 3.26844733], "sell": [959, 3.00502988], "children": [218, 3.228173431], "stuff": [1050, 3.026307278], "man": [657, 2.99455858], "help": [513, 1.99822514], "medicine": [674, 3.786145833], "british": [167, 3.786145833], "complete": [248, 3.010306937], "concept": [251, 3.524666133], "love": [647, 2.391267728], "taken": [1063, 3.092998653], "far": [407, 2.493152178], "america": [84, 3.146108478], "choice": [223, 3.042567799], "selling": [960, 3.164457617], "consider": [253, 2.881415924], "bar": [125, 3.152187524], "poor": [809, 3.667086473], "american": [85, 2.676104849], "middle": [684, 3.176880137], "americans": [86, 3.56070607], "designed": [318, 3.208628835], "today": [1095, 2.462093781], "rich": [918, 3.134060139], "blood": [149, 3.439869596], "kitchen": [588, 2.953736585], "history": [519, 2.813974643], "different": [327, 2.049518435], "inside": [557, 2.924177783], "2014": [24, 3.415772045], "life": [619, 2.228606359], "women": [1176, 3.248107646], "wrote": [1193, 3.234774115], "title": [1094, 3.786145833], "plant": [794, 3.282240652], "western": [1170, 3.821237153], "modern": [694, 3.026307278], "human": [533, 3.020945335], "age": [72, 3.152187524], "needs": [719, 2.742665615], "born": [155, 3.636933435], "brain": [160, 3.719454459], "longer": [637, 2.706876507], "considered": [254, 3.116255515], "offered": [736, 3.588614858], "away": [118, 2.314517747], "plants": [795, 4.077666682], "humans": [534, 3.763417582], "late": [600, 2.968850223], "moment": [695, 3.22161603], "power": [824, 2.831518953], "entire": [380, 2.862982222], "european": [387, 3.730265375], "treat": [1109, 3.524666133], "type": [1120, 2.779783278], "century": [203, 3.202197945], "version": [1144, 2.895467677], "dishes": [336, 3.282240652], "archived": [98, 4.725693427], "idea": [536, 2.635282854], "sense": [962, 2.7755904], "plate": [797, 3.448032907], "demand": [313, 3.588614858], "won": [1177, 2.480612829], "kind": [586, 2.440912959], "mind": [687, 2.84937657], "common": [243, 2.742665615], "approach": [96, 3.261621365], "hold": [521, 3.140066163], "compared": [247, 3.339399066], "value": [1137, 2.919335159], "million": [686, 2.876775544], "sex": [974, 4.263069905], "nice": [724, 3.289209322], "uk": [1123, 3.656934102], "recently": [885, 2.718664463], "marketing": [661, 3.354214152], "cuisine": [284, 3.741194445], "japan": [575, 4.093170868], "men": [678, 3.26844733], "based": [128, 2.172120757], "accounts": [57, 3.975387833], "strong": [1046, 3.00502988], "video": [1145, 3.202197945], "project": [850, 3.289209322], "year": [1194, 1.938505906], "beginning": [136, 3.346779173], "projects": [851, 3.719454459], "series": [964, 3.152187524], "begin": [135, 3.431772386], "early": [357, 2.585627264], "looks": [641, 3.081569957], "head": [506, 2.792468438], "thing": [1085, 2.195269939], "mother": [700, 3.579225117], "takes": [1064, 2.668557643], "ready": [878, 2.84488218], "directly": [332, 3.254841678], "despite": [319, 3.104559475], "2011": [21, 3.617324964], "question": [864, 2.914515872], "allowed": [79, 3.515855503], "physical": [785, 3.677342973], "powerful": [825, 3.384519501], "race": [869, 3.934565838], "board": [151, 3.346779173], "having": [505, 2.317159756], "west": [1169, 3.551573586], "percent": [776, 2.948749044], "lives": [630, 3.234774115], "body": [152, 2.801015498], "built": [174, 3.092998653], "factory": [403, 3.882606099], "st": [1022, 3.947988859], "school": [945, 2.99455858], "island": [567, 4.047361332], "design": [317, 3.087267978], "global": [473, 3.423740215], "gender": [462, 4.725693427], "told": [1096, 2.746722416], "famous": [406, 3.346779173], "war": [1154, 3.646883766], "heart": [510, 3.042567799], "story": [1042, 2.919335159], "playing": [802, 3.617324964], "london": [635, 3.542523751], "feel": [417, 2.36040974], "period": [779, 3.324800267], "trade": [1104, 3.646883766], "reach": [874, 3.158303751], "nearly": [715, 3.020945335], "population": [811, 3.607663053], "details": [320, 3.407866865], "industry": [554, 2.858426406], "production": [846, 3.134060139], "organization": [753, 3.833213344], "treatment": [1110, 3.845334705], "workers": [1183, 3.882606099], "past": [771, 2.592571736], "decades": [305, 3.369252029], "report": [900, 3.22161603], "cost": [268, 2.890761786], "thanks": [1081, 3.22161603], "status": [1033, 3.741194445], "brought": [169, 3.296226894], "dark": [295, 3.392241547], "left": [612, 2.683709448], "space": [1013, 2.914515872], "index": [551, 4.300810233], "pre": [827, 3.282240652], "italy": [572, 4.00355871], "necessary": [716, 3.324800267], "impossible": [542, 3.464562209], "makes": [655, 2.110016546], "tell": [1073, 2.767257018], "track": [1103, 3.464562209], "moving": [704, 3.407866865], "pain": [764, 3.719454459], "choose": [224, 2.867558889], "simply": [986, 2.505850761], "create": [279, 2.561694498], "drinking": [350, 3.464562209], "actually": [63, 2.296216582], "master": [663, 3.821237153], "start": [1026, 2.172120757], "form": [442, 2.699094367], "quick": [866, 3.134060139], "lunch": [650, 3.170649587], "plenty": [803, 3.332073026], "feature": [413, 3.489880017], "difference": [326, 3.215101349], "watch": [1158, 3.228173431], "readers": [876, 3.895345125], "went": [1168, 2.813974643], "completely": [249, 3.098762357], "product": [845, 2.746722416], "especially": [383, 2.483732956], "soon": [1007, 3.081569957], "products": [847, 2.628036446], "talk": [1066, 3.170649587], "mexico": [682, 4.209002684], "sure": [1058, 2.172120757], "options": [749, 2.904946421], "chips": [221, 3.515855503], "cold": [237, 3.122155237], "quite": [868, 2.783993811], "running": [930, 3.064668146], "big": [141, 2.181316224], "hotel": [528, 3.797706656], "farm": [408, 3.70875917], "friends": [450, 2.831518953], "build": [172, 3.015611989], "la": [593, 3.70875917], "loss": [643, 3.542523751], "cultural": [285, 3.68770576], "personal": [781, 2.9097197], "business": [176, 2.554960465], "members": [677, 3.598093602], "dining": [329, 3.70875917], "group": [489, 2.687533545], "sold": [1005, 3.158303751], "select": [957, 3.786145833], "worked": [1182, 3.158303751], "times": [1091, 2.309254577], "generation": [465, 3.636933435], "mr": [705, 3.719454459], "write": [1189, 3.439869596], "france": [444, 3.895345125], "child": [217, 3.656934102], "mexican": [681, 4.174516508], "items": [573, 3.075904219], "companies": [245, 2.943786254], "included": [545, 3.261621365], "iran": [566, 5.687104594], "brands": [162, 3.636933435], "students": [1047, 4.06239921], "ll": [632, 1.966055857], "raised": [870, 3.423740215], "rest": [909, 3.010306937], "opened": [746, 3.354214152], "section": [953, 3.384519501], "2007": [17, 4.00355871], "eventually": [390, 3.215101349], "field": [421, 3.481369327], "area": [99, 2.796732836], "march": [659, 3.515855503], "building": [173, 3.053556921], "moved": [702, 3.481369327], "person": [780, 2.606607054], "offering": [737, 3.498463761], "program": [849, 3.524666133], "cards": [191, 4.06239921], "training": [1107, 3.763417582], "customer": [290, 3.895345125], "possible": [815, 2.541626934], "huge": [532, 2.924177783], "professional": [848, 3.464562209], "involved": [565, 3.339399066], "ground": [488, 3.18314975], "looked": [639, 3.431772386], "deal": [303, 3.064668146], "lead": [605, 3.18314975], "happen": [501, 3.254841678], "goods": [479, 3.719454459], "seven": [973, 3.339399066], "fine": [430, 3.081569957], "waste": [1157, 3.821237153], "pressure": [831, 3.646883766], "frozen": [452, 3.507121823], "generally": [464, 3.087267978], "wide": [1172, 3.289209322], "lot": [645, 2.158484182], "data": [296, 2.999780524], "main": [652, 2.84937657], "lost": [644, 3.170649587], "process": [841, 2.521954169], "skin": [993, 3.882606099], "lose": [642, 3.498463761], "similar": [984, 2.578730685], "lots": [646, 3.332073026], "overall": [756, 3.346779173], "able": [53, 2.480612829], "getting": [468, 2.385585895], "buy": [178, 2.52846885], "processed": [842, 3.68770576], "terms": [1076, 3.081569957], "major": [653, 2.9097197], "groups": [490, 3.384519501], "guide": [495, 3.170649587], "safety": [932, 3.947988859], "quickly": [867, 2.890761786], "advice": [71, 3.607663053], "apply": [95, 3.719454459], "types": [1121, 3.053556921], "date": [299, 3.241418658], "weeks": [1165, 3.195808147], "safe": [931, 3.415772045], "sign": [982, 3.110390395], "liquid": [626, 3.786145833], "hear": [509, 3.376856629], "risk": [922, 3.158303751], "consumers": [256, 3.551573586], "evidence": [391, 3.507121823], "term": [1075, 3.048047265], "looking": [640, 2.417243215], "effects": [370, 3.56070607], "final": [426, 3.376856629], "prevent": [833, 3.489880017], "glass": [472, 3.303294061], "consumer": [255, 3.730265375], "spent": [1018, 3.075904219], "billion": [145, 3.719454459], "december": [306, 3.809402695], "2018": [28, 3.498463761], "tend": [1074, 3.354214152], "average": [116, 3.248107646], "named": [710, 3.369252029], "content": [260, 3.070270402], "internet": [562, 3.439869596], "sites": [990, 3.763417582], "outside": [755, 2.881415924], "unique": [1125, 3.18314975], "region": [892, 3.821237153], "began": [134, 3.110390395], "social": [1001, 2.8404079], "sharing": [976, 3.498463761], "remember": [897, 2.999780524], "require": [902, 3.407866865], "wanted": [1152, 3.122155237], "strategy": [1043, 3.569922725], "resources": [907, 3.636933435], "seen": [956, 2.900195818], "instagram": [558, 3.870027317], "answer": [90, 3.346779173], "offer": [735, 2.734601055], "media": [672, 3.122155237], "tips": [1093, 3.346779173], "following": [439, 2.718664463], "federal": [416, 4.047361332], "audience": [111, 4.093170868], "thinking": [1088, 3.140066163], "saw": [941, 3.407866865], "learned": [607, 3.384519501], "interesting": [560, 3.289209322], "customers": [291, 3.234774115], "higher": [517, 2.948749044], "search": [950, 3.176880137], "website": [1163, 3.241418658], "ad": [64, 4.209002684], "page": [761, 3.048047265], "news": [723, 3.042567799], "services": [969, 3.317580019], "goes": [476, 2.8404079], "sales": [934, 3.384519501], "traffic": [1106, 3.882606099], "alternative": [81, 3.339399066], "difficult": [328, 3.026307278], "break": [164, 3.140066163], "olive": [742, 3.882606099], "26": [35, 3.636933435], "leaves": [610, 3.489880017], "steps": [1036, 3.439869596], "specific": [1015, 2.963786921], "reason": [882, 2.742665615], "purchase": [861, 3.361704824], "certain": [204, 2.758992509], "learning": [608, 3.431772386], "follow": [438, 2.872156598], "model": [692, 3.296226894], "users": [1133, 3.332073026], "account": [56, 3.248107646], "campaign": [186, 3.833213344], "allows": [80, 3.146108478], "john": [578, 3.431772386], "career": [193, 3.809402695], "highly": [518, 3.208628835], "features": [414, 3.18314975], "hour": [529, 3.128089972], "snacks": [1000, 3.677342973], "games": [460, 3.90824853], "platform": [798, 3.774717137], "aren": [101, 2.827103934], "limited": [622, 3.202197945], "bag": [121, 3.346779173], "smaller": [997, 3.234774115], "learn": [606, 2.813974643], "event": [388, 3.551573586], "dog": [340, 3.833213344], "owner": [757, 3.524666133], "owners": [758, 3.617324964], "shop": [977, 3.020945335], "articles": [104, 3.69817706], "information": [555, 2.668557643], "scientific": [947, 3.774717137], "user": [1132, 3.607663053], "site": [989, 3.087267978], "pick": [786, 3.00502988], "90": [50, 3.551573586], "return": [915, 3.324800267], "avoid": [117, 2.963786921], "biggest": [142, 3.202197945], "claims": [227, 3.70875917], "disease": [334, 3.617324964], "note": [728, 2.900195818], "legal": [613, 3.833213344], "continue": [261, 3.215101349], "focus": [437, 3.134060139], "areas": [100, 3.384519501], "allow": [78, 3.00502988], "eye": [399, 3.361704824], "united": [1126, 3.122155237], "states": [1031, 2.933933958], "matter": [664, 2.763116226], "education": [368, 3.934565838], "face": [400, 3.026307278], "burger": [175, 3.833213344], "positive": [814, 3.68770576], "easier": [358, 2.99455858], "knew": [589, 3.472930459], "shopping": [978, 3.656934102], "felt": [419, 3.439869596], "yes": [1196, 3.042567799], "wouldn": [1188, 3.289209322], "station": [1032, 4.00355871], "morning": [699, 3.092998653], "care": [192, 3.087267978], "2008": [18, 3.752244282], "january": [574, 3.730265375], "exactly": [392, 2.914515872], "yogurt": [1197, 3.821237153], "expensive": [396, 3.158303751], "alcohol": [77, 3.989374075], "later": [601, 2.525206204], "san": [936, 3.498463761], "grain": [483, 3.870027317], "animal": [88, 3.542523751], "multiple": [707, 3.248107646], "sandwich": [937, 3.646883766], "february": [415, 3.809402695], "2012": [22, 3.542523751], "earlier": [356, 3.289209322], "changed": [208, 3.22161603], "certainly": [205, 3.254841678], "fully": [455, 3.415772045], "knowledge": [591, 3.579225117], "basic": [129, 3.170649587], "grown": [493, 3.533555081], "travel": [1108, 3.296226894], "decision": [308, 3.515855503], "price": [835, 3.026307278], "32": [41, 3.636933435], "bags": [122, 3.895345125], "bike": [143, 4.467864318], "requires": [904, 3.354214152], "exercise": [394, 3.752244282], "community": [244, 3.122155237], "general": [463, 2.858426406], "credit": [282, 3.617324964], "card": [190, 3.895345125], "medical": [673, 3.845334705], "prices": [836, 3.384519501], "costs": [269, 3.423740215], "actual": [62, 3.407866865], "action": [60, 3.228173431], "improve": [543, 3.261621365], "double": [345, 3.533555081], "present": [828, 3.332073026], "response": [908, 3.542523751], "pretty": [832, 2.642582157], "cat": [199, 4.538481885], "flavors": [435, 3.607663053], "clear": [231, 2.862982222], "lack": [595, 3.448032907], "taking": [1065, 2.642582157], "friend": [449, 3.282240652], "recommend": [888, 3.464562209], "ones": [743, 2.973939293], "beautiful": [131, 3.407866865], "trying": [1115, 2.683709448], "coffee": [236, 3.037118194], "provide": [856, 2.881415924], "gluten": [474, 4.108919225], "solution": [1006, 3.646883766], "tip": [1092, 3.947988859], "points": [806, 3.303294061], "addition": [68, 3.110390395], "led": [611, 3.431772386], "development": [322, 3.140066163], "sort": [1008, 3.26844733], "death": [304, 3.607663053], "facebook": [401, 3.354214152], "access": [54, 3.042567799], "land": [596, 3.472930459], "pages": [762, 3.763417582], "flat": [433, 3.68770576], "unless": [1128, 3.354214152], "rules": [928, 3.354214152], "latest": [602, 3.376856629], "larger": [599, 3.310411529], "complex": [250, 3.241418658], "april": [97, 3.677342973], "statement": [1030, 3.845334705], "canada": [187, 3.989374075], "texas": [1078, 4.75554639], "various": [1139, 3.087267978], "cases": [197, 3.261621365], "control": [262, 2.827103934], "cause": [200, 3.248107646], "twitter": [1119, 3.361704824], "recent": [884, 2.718664463], "option": [748, 3.087267978], "town": [1102, 3.282240652], "heavy": [512, 3.515855503], "ability": [52, 3.020945335], "europe": [386, 3.569922725], "reasons": [883, 3.18314975], "countries": [272, 3.456263406], "door": [344, 3.456263406], "ahead": [74, 3.361704824], "ms": [706, 4.191610941], "figure": [422, 3.369252029], "service": [968, 2.881415924], "member": [676, 3.646883766], "ride": [919, 3.857604797], "bikes": [144, 4.993957414], "court": [276, 3.882606099], "introduced": [563, 3.69817706], "host": [526, 3.882606099], "council": [271, 4.340030946], "email": [373, 3.384519501], "network": [721, 3.415772045], "east": [360, 3.588614858], "soy": [1012, 4.174516508], "act": [59, 3.324800267], "chefs": [215, 3.821237153], "law": [603, 3.507121823], "practice": [826, 3.464562209], "president": [829, 3.524666133], "south": [1011, 3.346779173], "finally": [427, 3.110390395], "2006": [16, 4.017947447], "germany": [466, 4.263069905], "walk": [1150, 3.234774115], "slightly": [994, 3.310411529], "edit": [367, 3.774717137], "properties": [852, 3.677342973], "results": [913, 2.984195793], "press": [830, 3.339399066], "retrieved": [914, 4.467864318], "speed": [1016, 3.542523751], "drop": [354, 3.431772386], "remove": [898, 3.741194445], "center": [201, 3.010306937], "financial": [428, 3.607663053], "stress": [1045, 3.821237153], "journal": [579, 3.542523751], "meaning": [669, 3.400023688], "systems": [1060, 3.472930459], "required": [903, 3.303294061], "performance": [778, 3.636933435], "issue": [569, 3.202197945], "lower": [649, 2.979054393], "adding": [67, 3.248107646], "rate": [872, 3.481369327], "japanese": [576, 3.870027317], "significant": [983, 3.369252029], "reduce": [890, 3.332073026], "events": [389, 3.448032907], "associated": [107, 3.507121823], "provides": [857, 3.296226894], "tax": [1069, 4.077666682], "security": [954, 3.774717137], "wait": [1149, 3.415772045], "special": [1014, 3.00502988], "cities": [225, 3.598093602], "private": [837, 3.598093602], "definitely": [310, 3.324800267], "individual": [553, 3.303294061], "location": [634, 3.481369327], "car": [189, 3.296226894], "office": [739, 3.282240652], "talking": [1067, 3.376856629], "property": [853, 3.821237153], "relationship": [895, 3.569922725], "david": [300, 3.730265375], "saying": [943, 3.170649587], "database": [297, 4.244720767], "send": [961, 3.56070607], "starting": [1028, 3.042567799], "economic": [364, 3.857604797], "cars": [195, 4.108919225], "release": [896, 3.579225117], "alternatives": [82, 4.244720767], "delivery": [312, 4.226702261], "app": [92, 3.636933435], "direct": [331, 3.69817706], "tables": [1062, 3.845334705], "king": [587, 3.786145833], "sources": [1010, 3.70875917], "mobile": [691, 4.017947447], "classic": [229, 3.407866865], "investment": [564, 3.821237153], "tour": [1101, 3.989374075], "address": [70, 3.627081139], "laws": [604, 3.961594511], "60": [48, 3.215101349], "reality": [880, 3.617324964], "99": [51, 3.90824853], "protection": [854, 3.961594511], "particular": [767, 3.146108478], "smart": [998, 3.90824853], "dr": [347, 3.845334705], "download": [346, 4.174516508], "tool": [1098, 3.646883766], "movement": [703, 3.730265375], "google": [480, 3.407866865], "success": [1052, 3.303294061], "engine": [376, 4.263069905], "bank": [124, 3.921320612], "cash": [198, 4.06239921], "images": [539, 3.667086473], "code": [235, 3.569922725], "2000": [14, 3.961594511], "skills": [992, 4.141180088], "al": [76, 4.281762038], "ensure": [379, 3.498463761], "distribution": [337, 4.340030946], "2005": [15, 4.209002684], "grams": [484, 4.244720767], "activity": [61, 3.656934102], "software": [1004, 3.895345125], "additional": [69, 3.376856629], "image": [538, 3.384519501], "application": [94, 4.077666682], "library": [618, 4.340030946], "psychology": [858, 4.85085657], "net": [720, 4.108919225], "php": [784, 5.361682194], "storage": [1038, 4.124919567], "capital": [188, 3.719454459], "november": [731, 3.921320612], "september": [963, 3.947988859], "analysis": [87, 3.934565838], "indigenous": [552, 5.033178127], "charge": [210, 3.763417582], "tools": [1099, 3.456263406], "balance": [123, 3.579225117], "replication": [899, 5.854158679], "31": [40, 3.774717137], "political": [808, 3.667086473], "novel": [730, 4.445391462], "particularly": [768, 3.087267978], "goal": [475, 3.303294061], "server": [967, 4.209002684], "theme": [1082, 4.191610941], "camera": [185, 4.641136039], "rule": [927, 3.70875917], "pdf": [774, 4.226702261], "poutine": [822, 5.949468859], "position": [813, 3.677342973], "org": [751, 4.174516508], "models": [693, 4.047361332], "files": [424, 4.380852941], "player": [800, 4.263069905], "equity": [382, 4.69670589], "file": [423, 4.244720767], "hop": [524, 5.307614973], "automatic": [114, 4.818066747], "welfare": [1167, 4.919849442], "economics": [365, 4.490853836], "themes": [1083, 4.641136039], "brotherhood": [168, 6.306143803], "query": [863, 4.919849442], "wordpress": [1179, 4.993957414], "mysql": [709, 5.418840608], "sql": [1021, 5.116559736], "databases": [298, 4.956217086], "hadoop": [496, 6.17261241], "crowdfunding": [283, 5.767147302]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_games.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_games.json deleted file mode 100644 index c921852..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_games.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.690285948, "feature_log_probs": [-6.518303528, -6.381005097, -6.67617191, -6.788808341, -6.674442661, -6.845590401, -6.813711811, -6.735158647, -6.872129514, -6.904519361, -6.945116301, -6.915330323, -6.618761597, -7.045808972, -7.066872254, -7.0487401, -7.019393736, -7.003788943, -6.896518738, -6.91812732, -6.88603633, -6.954202867, -6.970138312, -6.991611985, -6.907526408, -6.944631652, -6.962906673, -6.866311515, -6.867148232, -6.715541956, -6.907850732, -6.779177985, -6.858631274, -6.895826899, -6.738419848, -6.520541144, -6.90399592, -6.828187851, -6.829835817, -6.893647162, -6.57621791, -6.732308454, -6.971394671, -6.807607913, -6.499290074, -6.602839567, -6.773785824, -6.900837193, -6.941332303, -6.907311589, -7.070922045, -6.778096703, -6.642467777, -6.754961801, -6.781974787, -6.462133082, -6.980314895, -7.120364257, -6.798468109, -6.857291769, -6.763089727, -6.977579768, -6.928814522, -7.026610074, -7.038843426, -6.683792391, -6.527523019, -6.829458041, -6.759624411, -7.107261646, -6.785632664, -6.934793718, -6.712997088, -6.424311354, -6.757473375, -6.755806514, -6.868959697, -6.612506212, -6.859901971, -6.875892248, -6.922990574, -6.57916498, -6.909153767, -6.873315352, -6.587841766, -6.699985807, -6.797492419, -6.649037584, -6.378779367, -6.684281143, -6.651962741, -6.901323738, -6.852526553, -6.906009381, -6.845113042, -6.308645759, -6.595714048, -6.449901601, -6.495846685, -7.160933323, -6.53284313, -6.740993834, -6.860296432, -5.757724786, -6.759335507, -6.526483444, -6.831911855, -6.635293279, -6.809610177, -6.97728101, -6.787188441, -6.812711201, -6.53795988, -6.566979288, -6.785315545, -6.739012503, -6.499908409, -6.564830693, -6.721563476, -7.072312718, -6.974931156, -5.833029019, -5.670761092, -6.935085316, -6.595224936, -6.946677523, -6.849999983, -6.964464599, -6.688935075, -6.629694213, -6.792664381, -6.620245117, -6.705467776, -6.841681409, -6.461653845, -6.507846306, -6.617871503, -6.867615682, -6.658758563, -6.77796441, -6.723965244, -6.64520833, -6.773697864, -6.652927492, -6.752772184, -6.817594841, -6.823835185, -6.485394638, -6.720554755, -6.500758753, -6.667218861, -6.814356736, -6.958970826, -6.760782095, -6.681419878, -6.87263414, -6.582661732, -6.713276637, -6.799258265, -6.719952721, -6.505921714, -6.792398919, -6.812765616, -6.942270862, -6.749262486, -6.844996058, -6.735454731, -6.817474347, -6.892000584, -6.932326002, -6.927087548, -6.619450502, -6.487369739, -6.754535454, -6.813537463, -6.807005862, -6.903183276, -6.836398351, -6.891649194, -6.780071157, -6.649125023, -7.081812694, -6.540381801, -6.732926217, -6.74627492, -6.875214682, -6.846273005, -6.24300503, -6.879021426, -6.145243518, -6.647545014, -6.657126123, -6.72105201, -6.890161625, -6.817056288, -6.909223538, -6.612970071, -6.620024193, -6.134343828, -6.539860525, -6.55154466, -6.710294135, -6.836769621, -6.270022532, -6.764796045, -6.714667702, -6.914462855, -6.515715857, -6.485918567, -6.947115679, -6.624585743, -6.12385145, -6.804528093, -6.554657263, -6.86676124, -6.594451632, -6.862185714, -6.872490951, -6.566909551, -7.005523343, -6.974172442, -6.600323347, -6.871632726, -6.94741444, -6.93494437, -6.720874704, -6.929798478, -6.402820947, -6.893112184, -6.916472511, -6.764640266, -6.787263498, -6.815157762, -6.930011035, -6.794788683, -7.109640198, -7.067753786, -6.763306396, -6.778914975, -6.846568092, -6.798353016, -6.351058793, -6.850030734, -6.851761408, -6.417104087, -6.803218916, -7.150058816, -6.801721664, -6.904564706, -6.967185757, -6.814815372, -6.59525049, -6.894274355, -6.708980737, -6.865063485, -6.623434392, -6.566147333, -6.843946012, -6.80532849, -6.804343131, -6.686602079, -6.465582285, -6.864855496, -6.780082563, -6.816732886, -6.938114289, -6.798656493, -6.755164123, -6.970494365, -6.686655543, -6.811075284, -6.982584881, -6.813833356, -6.808906343, -6.758194379, -6.814475289, -6.647119676, -6.899322359, -6.910937463, -6.61376787, -6.457487197, -6.881315573, -6.491854761, -6.872127331, -6.141540893, -6.84013291, -6.740370302, -6.529460997, -4.330763943, -6.652214814, -4.915070836, -6.26043197, -7.130296972, -6.846362141, -6.858751296, -6.660982953, -6.571542004, -6.635207919, -6.803841652, -6.869770007, -6.628024419, -6.86531189, -6.753023415, -6.301391115, -6.709544262, -6.177014667, -6.814498799, -6.551102573, -7.020815886, -6.286987216, -6.520552911, -6.994023602, -6.526876061, -6.857858578, -6.775967736, -6.77422341, -6.411183594, -6.666595554, -6.844461272, -6.865265708, -6.539305093, -6.598880512, -6.595141176, -6.995845445, -6.536698673, -6.494099619, -6.813825766, -6.939924951, -6.815168125, -6.665419979, -6.775722928, -6.79088968, -6.798923461, -6.774765463, -6.649905618, -6.699307687, -6.834494578, -6.646753445, -6.808958676, -6.576414867, -6.736764432, -6.912115524, -7.019060656, -6.761643631, -6.541375309, -6.800659794, -6.801422706, -6.885528443, -6.893459282, -6.755011915, -6.930901795, -7.013699547, -6.885306762, -6.718276209, -6.607834676, -6.750487563, -6.585436742, -6.714709866, -6.724478128, -6.906102097, -6.912827664, -6.565234621, -6.974566419, -6.976926565, -6.792169583, -6.611339138, -6.847225785, -6.847858846, -6.766730619, -6.482602045, -6.574287908, -6.829353534, -6.268511371, -6.811644249, -6.776347609, -6.885649081, -6.791862085, -6.734810208, -6.906116742, -6.67134963, -7.029462161, -6.825242491, -6.525038332, -6.551452574, -6.766959164, -6.511926231, -6.38104597, -6.241083937, -6.661019479, -6.449603086, -6.849495161, -6.72801557, -6.855203309, -6.582476521, -6.834737333, -6.904283741, -6.796096511, -6.556084886, -6.393919666, -6.809768125, -6.96180929, -6.935868918, -6.079602745, -6.901707086, -7.042835879, -6.494797476, -6.762430834, -6.479290532, -6.644455235, -6.746996415, -6.903180539, -6.751185169, -6.935339766, -6.774028803, -6.341151813, -6.571007148, -6.795336906, -6.963726127, -6.764989151, -6.572323661, -6.675044387, -6.349639441, -6.778828829, -6.871629191, -5.962471818, -6.55886192, -6.422220451, -6.603480476, -6.990282774, -6.723515669, -6.963318889, -6.683934537, -6.57171713, -6.729342093, -6.746607244, -6.601169036, -6.804962361, -6.852872617, -6.564216639, -6.622282772, -6.88332149, -6.784249038, -6.892172394, -7.00371925, -6.875192501, -6.827976625, -6.697464214, -6.670306109, -6.650244229, -6.757628346, -6.791937279, -6.977244415, -6.874447646, -7.003550385, -6.770368051, -6.377121054, -6.861120708, -6.776557707, -6.956744447, -6.66700335, -6.698112571, -6.824499026, -6.780245095, -6.924027834, -7.030385965, -6.957739609, -6.892291633, -6.887607043, -6.87389379, -6.951487487, -6.237687706, -6.805213849, -6.776810199, -6.944875161, -5.954538437, -6.945088748, -6.726795998, -6.696763281, -6.782402864, -6.935378064, -6.279089987, -6.56573482, -6.887557702, -6.827440025, -6.792239778, -6.877376433, -6.618754127, -6.769260788, -6.565569429, -6.695287065, -6.419451172, -6.88554925, -6.894249563, -6.761764192, -6.531326664, -6.655680953, -6.833705162, -6.627846713, -7.055774964, -6.514575143, -6.807769151, -6.868969281, -6.820831838, -6.474668846, -6.817379175, -6.746275321, -6.775431267, -6.853795126, -6.776880565, -6.9836885, -6.408868668, -6.862436022, -6.906959931, -6.840730634, -6.658797233, -6.635594248, -6.530916604, -6.468084824, -6.890652206, -6.840304973, -6.838448649, -6.909514622, -5.488766537, -6.260812559, -5.411209919, -5.335280824, -5.993968912, -6.716431613, -6.300268592, -6.142789486, -6.47977429, -6.687976903, -7.093086546, -6.745619338, -6.979705545, -6.509164297, -6.709396272, -6.8875285, -6.595363887, -6.787080232, -6.872179004, -6.926326505, -6.986346918, -6.895759791, -6.606980822, -6.829399647, -6.691568432, -6.979701871, -6.534145503, -6.690782606, -6.803698075, -6.621406907, -6.735067124, -6.882576641, -6.947577127, -6.84637314, -6.82825662, -6.518061363, -6.966571475, -6.833277077, -6.909506986, -6.863838384, -6.320615311, -6.863774644, -6.740812745, -6.755109732, -6.870310583, -6.724042185, -6.687896362, -6.847442698, -6.564173275, -6.737398858, -6.946954718, -6.8158637, -6.559849872, -6.8405725, -6.868128585, -6.426217456, -6.327690031, -6.779664134, -6.924687037, -6.803784059, -6.89640467, -6.682310147, -6.915082709, -6.955112725, -6.749984977, -6.785585042, -6.884537482, -6.872645026, -6.858238972, -6.726681985, -6.693994939, -6.760246757, -6.762445256, -6.755999495, -6.991112763, -6.706687392, -6.740496708, -6.300726056, -6.802090981, -6.719870842, -6.571764695, -6.541725758, -6.482067765, -6.833830447, -6.704352114, -6.197864815, -6.526359654, -6.739345349, -6.891743214, -6.930248967, -6.497233441, -6.892512372, -6.804257959, -6.896000181, -6.491516316, -6.626614121, -6.901076914, -6.598442095, -6.844089363, -6.893660697, -6.980978661, -6.750323205, -6.96750355, -6.779583944, -6.666072805, -6.587630352, -6.75621226, -6.988324205, -7.077107295, -6.29843779, -6.876922083, -6.860996069, -6.775352944, -6.744943937, -6.846706124, -6.924165169, -6.762653863, -6.481758125, -6.686599691, -6.526781964, -6.794090033, -6.849774062, -6.806415781, -6.571400296, -6.588935769, -7.103938713, -6.588531121, -6.993047101, -6.697396838, -6.73679002, -6.742781854, -6.781805415, -6.757372873, -6.825066178, -6.842244299, -6.599372182, -6.717368352, -6.726378112, -6.81283987, -6.740813303, -6.850819696, -6.954658592, -6.897380276, -6.771367333, -6.457916063, -6.693196197, -6.782739688, -6.679190172, -6.935280572, -6.92612839, -6.612731775, -6.816001884, -6.879196889, -6.767535805, -6.328021151, -6.840630035, -6.794850759, -6.27522482, -6.89411669, -6.749728738, -6.626251746, -6.96095234, -6.926128751, -6.730201906, -6.721759675, -6.807356697, -6.864727875, -6.792162688, -6.540791171, -6.73513521, -6.386930542, -6.883734322, -6.671599418, -6.71692592, -6.764466153, -6.842574617, -6.083230567, -6.577892083, -6.842664462, -6.730550303, -6.899603948, -6.906753823, -6.840236054, -6.759376603, -6.668279084, -6.822310973, -6.854244527, -6.805307986, -6.470764334, -6.296527757, -6.287337934, -6.719354613, -6.727462308, -6.611775206, -6.523106239, -6.834640513, -6.744105933, -6.717415402, -6.773178965, -6.932687629, -6.779784068, -6.825183264, -6.792504029, -6.899777976, -6.899468538, -6.909002186, -7.175339274, -6.957836701, -6.657495761, -6.463559818, -6.54018751, -6.321595909, -6.809573163, -6.626561729, -6.834939989, -6.74333505, -6.893542196, -6.702100212, -6.831453597, -6.748794676, -7.013751985, -6.862331825, -6.821688836, -6.818922071, -6.187475242, -6.449890261, -6.846720384, -6.777297377, -6.779081487, -6.824680988, -6.426932323, -6.673110758, -6.541563286, -6.926158275, -7.106846315, -6.786513278, -6.139144933, -6.424752701, -6.20378112, -6.868559105, -6.805690521, -6.147804179, -6.721256471, -6.641171175, -6.736787478, -6.817513432, -6.969176467, -6.131511524, -6.627635689, -6.842361747, -6.874151244, -6.551374122, -6.820218366, -6.780008593, -6.257370908, -6.595847265, -6.687525983, -6.974152853, -6.603828725, -6.583518202, -7.140644048, -6.597601695, -6.325782912, -6.900206355, -6.703858936, -6.664068753, -6.063161886, -6.732181387, -6.780620894, -6.782294034, -6.800209282, -6.814046412, -6.923023366, -6.397708514, -6.454010882, -6.802113741, -6.905537023, -6.818992228]}, {"log_prior": -0.696016623, "feature_log_probs": [-6.296812773, -6.327820266, -6.691260062, -6.707114641, -6.630131987, -6.837157424, -6.782438832, -6.693916605, -6.787077404, -6.831898705, -6.801510343, -6.886514458, -6.689597029, -6.923875853, -6.889680633, -6.882573471, -6.768815246, -6.844041558, -6.780477182, -6.804247853, -6.805434307, -6.861866706, -6.669407375, -6.661721787, -6.717256975, -6.922265336, -6.81619089, -6.835723417, -6.793515051, -6.664978356, -6.896498867, -6.715843943, -6.858399826, -6.824826737, -6.742428329, -6.539149563, -6.541989698, -6.520342943, -6.549917867, -6.727232686, -6.74136706, -6.963844329, -6.805477257, -6.933475829, -6.477960899, -6.475247981, -6.681921528, -6.779728469, -6.867392735, -6.854117264, -6.650165538, -6.836220166, -7.059976182, -6.690702691, -6.655641513, -7.031435155, -6.744827248, -6.812370938, -6.768734648, -6.847604624, -6.60311111, -6.475269446, -6.870532993, -6.576453381, -6.628052172, -6.798932328, -6.512967646, -6.78546886, -6.809039261, -7.010433613, -6.71264083, -6.757456864, -6.813780449, -6.751416294, -6.61025739, -6.709739385, -6.6796828, -6.979469177, -6.868113408, -6.77378811, -6.738730108, -6.545090273, -6.746393498, -6.793525185, -6.59736699, -6.725358557, -6.840840718, -7.033008036, -6.499599094, -6.904087004, -7.018262126, -6.75071783, -6.868239973, -6.86186064, -6.653601699, -6.203409308, -7.049503096, -6.428584091, -6.49765338, -6.13614005, -6.656117945, -6.617708004, -6.269445993, -6.927726268, -6.327199582, -6.386658719, -6.553313235, -6.774460835, -6.71228407, -6.654088897, -6.851225653, -6.785504207, -6.672932781, -6.656670343, -6.620593866, -6.38571924, -6.585498735, -6.504368055, -6.696056331, -6.423862793, -6.281748108, -6.884484944, -7.06736112, -6.641478994, -6.592060481, -6.770117715, -6.732819547, -6.725008504, -6.708612688, -6.890490062, -6.941909599, -6.907838711, -6.519412343, -6.698773034, -6.841866423, -6.899588208, -6.532767822, -6.863146307, -6.648557319, -6.883343859, -6.789291652, -6.402048408, -6.71491268, -6.96278057, -6.724264443, -6.633690647, -6.694326485, -6.570754386, -6.798498173, -6.548445053, -6.597626786, -6.731891236, -6.78643389, -6.74014107, -6.665800339, -6.503357285, -6.260724257, -6.840296593, -6.839909618, -6.866845707, -6.707459197, -6.941793827, -6.788878767, -6.893945068, -6.391413498, -6.769987671, -6.546544573, -6.830146929, -6.576955677, -6.756745219, -6.607003408, -6.59920012, -6.41720645, -6.745870817, -6.836503064, -6.803858237, -6.731975719, -6.746105252, -6.796395409, -6.961997192, -6.071063772, -6.530113156, -6.105705202, -6.43968471, -6.766596156, -6.788762724, -6.79675732, -7.055564554, -6.762746659, -6.637657835, -6.75102534, -7.050876088, -7.080487766, -6.796304833, -6.835999121, -6.826081684, -6.956226088, -6.736084375, -7.14827348, -6.416451769, -6.536044438, -6.965044442, -6.852026242, -6.432185396, -6.750441755, -6.762250425, -6.698937055, -6.432763186, -6.525858231, -6.697994131, -6.621533448, -6.074958189, -6.894953826, -7.031588898, -6.78947405, -6.633376448, -6.799794778, -6.716734147, -6.536796237, -6.763622198, -6.809990646, -6.677581212, -6.723771733, -6.726866699, -6.774744538, -6.909577686, -6.546090964, -6.444123549, -6.730036314, -6.732752704, -6.804375457, -6.793984146, -6.921717866, -6.814177613, -6.684587215, -6.555284765, -6.916015612, -6.839230084, -6.809653815, -6.894799905, -6.79271973, -6.497924254, -6.888262633, -6.90949014, -6.518778549, -6.856937442, -7.051777825, -6.786529079, -6.871129763, -6.727905122, -6.867852472, -6.710133274, -6.363446318, -6.58380988, -6.843025521, -6.531025135, -6.62617787, -6.764207117, -6.744743043, -6.798100219, -6.625403251, -6.501047449, -6.760094795, -6.808602998, -6.898299421, -6.796106729, -6.934752681, -6.820988906, -6.577090585, -6.780103021, -6.749184895, -6.592606119, -6.86318655, -6.755145595, -6.576693664, -6.799008433, -6.612268359, -6.271045711, -6.806969172, -6.737664561, -6.458526384, -6.733731664, -6.65130087, -6.806971081, -6.887006006, -6.744085962, -6.607424201, -7.160869231, -6.822362773, -7.150706872, -6.983381838, -7.088228879, -6.752903953, -6.654391491, -6.900418214, -6.839493548, -6.589363048, -6.707679123, -6.859614007, -6.846490177, -6.732284947, -6.788789217, -6.765882317, -6.379074837, -6.979863939, -6.24274087, -6.218999719, -6.580346443, -6.584016622, -6.430607478, -7.090338729, -6.814632819, -6.485637045, -6.837887659, -6.65520831, -6.678291537, -6.667324998, -6.865949206, -6.779101174, -6.845815603, -6.549586905, -6.616326591, -6.620095215, -6.359808042, -6.283407584, -6.359844083, -6.750068759, -6.783200197, -6.612528207, -6.817811443, -6.810158857, -6.12840973, -6.821456583, -6.795078829, -6.643223276, -6.538747303, -6.832010396, -6.617567244, -6.93728826, -6.634289224, -6.776677946, -6.425297204, -6.569275408, -6.921257827, -6.457054699, -6.840843918, -6.678349175, -6.848530403, -6.780558094, -6.515705251, -6.717833685, -6.825254184, -6.752371423, -6.696041647, -6.428482125, -6.724784991, -6.599497996, -7.068595761, -6.772307026, -6.658835944, -6.870469258, -6.565298366, -6.688583968, -6.772284515, -6.986904685, -6.898871561, -6.548772801, -6.886892611, -6.602767473, -6.766499986, -6.670579606, -7.102289665, -6.197550638, -6.798773719, -6.625818301, -6.719816851, -6.785141273, -6.639811783, -6.809006519, -6.638758532, -6.569890895, -6.827685806, -6.576483562, -6.707855243, -6.77926022, -6.70489647, -6.534523797, -6.670534081, -6.810883546, -6.166354083, -6.601694036, -6.640442058, -6.8057066, -6.696243655, -6.851018232, -6.679413866, -6.767544637, -6.538539064, -6.435789405, -6.579180884, -6.748453502, -6.707413915, -6.120667432, -6.560654588, -6.659256587, -6.296024444, -6.710863382, -6.415038549, -6.586062001, -6.786631449, -7.10244685, -6.862915893, -6.77784061, -6.805583374, -6.476717618, -6.455431953, -6.519490122, -6.696375842, -7.071674652, -6.784588353, -6.979465067, -6.987413834, -6.783973796, -6.749886226, -6.075436903, -6.493904962, -6.532898319, -6.676251414, -6.669743657, -6.953432273, -6.832711329, -6.43426831, -6.922151707, -6.919286554, -6.674734038, -6.798159455, -6.685797961, -6.866620706, -6.589428135, -7.088027429, -6.497670004, -6.804440743, -6.617642391, -6.761434859, -6.799432726, -6.83544646, -6.506640773, -6.696436423, -6.668337875, -6.912508433, -6.570571205, -6.781369792, -6.753451039, -6.914897108, -6.740802494, -6.402277348, -6.627044436, -6.596172145, -6.768779742, -7.106009223, -6.887902153, -6.353136043, -6.729397142, -6.724099561, -6.510153284, -6.662385252, -6.740318696, -6.808968515, -6.749656139, -6.796334515, -6.132591895, -6.750067234, -6.726716191, -6.568052975, -5.861366826, -6.621554348, -6.695988307, -6.749236703, -6.703609356, -6.726881607, -6.542240007, -6.87826136, -6.955806231, -6.971293292, -6.683762093, -6.721552494, -6.49848492, -6.759241607, -6.674011951, -6.504478368, -7.144142734, -6.815681561, -6.706487072, -6.693008426, -6.606110352, -6.799237431, -6.789818537, -6.559404355, -6.658164381, -6.790928723, -6.865909756, -6.839998415, -6.790516048, -6.838858465, -6.8844968, -6.701681333, -6.604965181, -6.434410337, -6.784502099, -6.557048415, -6.569753197, -6.557622682, -6.561316861, -6.746012214, -6.845024877, -6.909791299, -7.007504837, -6.492460699, -6.839463396, -6.64926149, -6.723376766, -6.630184626, -6.88603945, -7.066290982, -7.080834352, -7.066654774, -6.994731767, -6.998626599, -6.52776465, -6.910092592, -7.15876495, -6.6549359, -6.752069596, -6.820825412, -6.801281261, -6.574434228, -6.349472012, -6.75274173, -6.562088806, -6.851621796, -6.770945138, -6.86541706, -6.526206414, -6.659026298, -6.748744692, -6.861147923, -6.592646055, -6.650968003, -6.637061019, -6.574898868, -6.703119254, -6.440905397, -6.590563669, -6.736467157, -6.600377764, -6.721373579, -6.895398292, -6.677156272, -6.565669696, -6.701997982, -6.498571075, -6.71514148, -7.109228446, -6.575240137, -6.676250963, -6.688601986, -6.873529457, -6.777920136, -6.759053231, -6.767395644, -7.019690612, -6.660001746, -6.581888376, -6.795637938, -6.417719301, -6.773546459, -6.732024696, -6.413734507, -6.278088848, -6.670003006, -6.63220131, -6.730415779, -6.834132538, -6.859384412, -6.70879073, -6.800792512, -6.820777881, -6.766702355, -6.923042319, -6.820506178, -6.949439726, -6.326509067, -6.833115817, -6.778411594, -6.671085585, -6.686453786, -6.795667824, -6.739946141, -6.7514101, -6.341746126, -6.735600059, -6.840755662, -6.971505366, -6.676183385, -6.92404228, -6.950337068, -6.893326263, -6.85459624, -6.554547297, -6.585587336, -6.757979674, -6.876403606, -6.411973514, -6.839062493, -6.574371281, -6.45870562, -7.056065969, -6.827905468, -6.634534964, -6.6382274, -6.87621231, -6.847117503, -6.596090085, -6.721494743, -6.704430284, -6.621633548, -6.733635156, -6.660615514, -6.476515264, -6.41909831, -6.538370914, -6.373403692, -6.834705159, -6.849540797, -6.639224187, -6.632194699, -6.831140515, -6.690888476, -6.746589432, -6.676137837, -6.657053849, -6.578953232, -6.506556514, -6.894188122, -6.655249338, -7.039661198, -6.832749905, -6.644443161, -6.450649912, -6.612339168, -6.368973229, -6.646154913, -6.862092384, -6.840386606, -6.833240743, -6.873816788, -6.666578218, -6.588282403, -6.767285697, -6.729560823, -6.658625497, -6.740392147, -6.821561026, -6.642429645, -6.805230246, -6.856951586, -6.432608567, -6.568317646, -6.838473312, -6.506578182, -6.563195234, -6.649856553, -6.607581973, -6.722144736, -6.736465423, -6.720982711, -6.584864113, -6.917631051, -7.005327391, -6.915863981, -6.808464528, -6.755165888, -6.685435019, -6.679993703, -6.464237175, -6.801111476, -6.798945642, -6.731422192, -6.826473632, -6.470371652, -6.488991236, -6.656921904, -6.701747253, -6.800270806, -6.763404778, -6.669226117, -6.746177985, -6.850599033, -6.575858075, -6.955272508, -6.657372377, -6.707642583, -6.797817322, -6.635593966, -6.80010185, -6.629886292, -6.812314878, -6.799313131, -6.863170096, -6.772902726, -6.490668347, -6.274800202, -6.373738597, -6.716004443, -6.670873628, -7.108320713, -6.475704905, -6.814635217, -6.512658714, -6.565861746, -6.665202815, -6.754138505, -6.799121495, -6.768168063, -6.817428795, -6.79248651, -6.792773482, -6.574765451, -6.787427182, -6.40283354, -6.670149185, -6.584777543, -6.704156846, -6.716740277, -6.860408425, -6.918155387, -6.645389095, -6.541060915, -6.692513389, -6.637164088, -6.849643305, -6.767607405, -6.650231162, -6.4928968, -6.908786017, -6.760397865, -6.003139, -6.323946811, -6.814121556, -6.637237377, -6.523666419, -6.762713344, -6.279102061, -6.689079693, -6.545693668, -6.819281903, -6.995588238, -6.824612848, -6.164453335, -6.696214688, -6.43637064, -6.720291336, -6.934453963, -6.156810685, -6.670843269, -6.80320416, -6.745378838, -6.776698516, -6.418644226, -6.111649106, -6.663758278, -6.675756265, -6.693057357, -6.495245194, -6.716119516, -6.535844444, -6.969402774, -7.030109524, -7.093557171, -6.459332589, -6.66383653, -6.874868191, -6.376043386, -6.785275791, -6.068542006, -6.770339139, -6.566485695, -6.635431214, -6.206314304, -6.681916639, -6.762493221, -6.663029402, -6.821528582, -6.812948799, -6.751170367, -6.146687885, -6.145941319, -6.764727341, -6.501669777, -6.712801504]}], "model_type": "nb", "positive_class_label": "games", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"2011": [17, 3.578643265], "2012": [18, 3.454590616], "2013": [19, 3.390052095], "2015": [21, 3.471397735], "free": [280, 2.182959164], "ai": [55, 4.164544915], "best": [95, 1.785312704], "place": [517, 2.003757734], "play": [522, 1.830264092], "classic": [143, 3.218201838], "game": [288, 1.711204732], "review": [598, 3.173178157], "multiple": [462, 2.651095379], "pieces": [516, 3.11811838], "options": [493, 2.91420619], "support": [689, 2.593108121], "makes": [425, 1.994039485], "way": [769, 1.453110616], "easily": [217, 2.696904915], "new": [474, 1.425346479], "line": [393, 2.458257177], "google": [306, 3.265348617], "games": [290, 1.935807072], "using": [752, 1.863656176], "12": [4, 2.551722905], "levels": [388, 3.016335686], "player": [524, 2.250617812], "piece": [515, 2.857587296], "user": [749, 3.154486024], "level": [387, 2.230815185], "designed": [190, 2.636280293], "phone": [512, 3.307608426], "non": [477, 2.685254298], "popular": [531, 2.589593179], "rules": [607, 2.614461246], "version": [759, 2.54835022], "party": [503, 3.154486024], "use": [746, 1.587929839], "internet": [359, 3.173178157], "data": [180, 2.693006274], "media": [440, 2.938777451], "required": [589, 3.005640396], "allow": [58, 2.712653272], "save": [610, 3.027146602], "used": [747, 1.85688796], "world": [788, 1.805931991], "board": [103, 2.544988873], "years": [796, 1.972986076], "ago": [54, 2.848454813], "recent": [580, 2.81273673], "times": [716, 2.11958955], "provide": [559, 2.728653613], "known": [374, 2.464430036], "strong": [681, 2.795344988], "engine": [229, 3.720293782], "running": [609, 2.60372769], "plays": [527, 3.106283922], "common": [153, 2.525054658], "quality": [563, 2.795344988], "gaming": [291, 3.060298809], "gambling": [287, 4.181639349], "near": [467, 3.049125508], "following": [276, 2.392757579], "blog": [102, 3.160677994], "post": [536, 2.398537942], "unless": [744, 2.958878631], "written": [792, 2.834910588], "community": [154, 2.808360356], "company": [156, 2.473761363], "university": [743, 2.984586987], "particular": [500, 2.795344988], "recently": [581, 2.749020916], "certain": [128, 2.404351912], "particularly": [501, 2.995058287], "machines": [420, 3.823241751], "including": [349, 2.230815185], "number": [480, 2.02348224], "studies": [683, 3.438061315], "given": [297, 2.372785446], "tool": [721, 3.218201838], "creating": [174, 2.817132342], "lead": [381, 2.894974829], "players": [525, 2.135059472], "effects": [223, 3.405800452], "run": [608, 2.283657666], "case": [124, 2.301911107], "lose": [411, 2.933814662], "nearly": [468, 3.000335344], "win": [776, 2.632610564], "simply": [640, 2.28107702], "seen": [623, 2.508741082], "skill": [645, 3.142215931], "offer": [484, 2.673737855], "useful": [748, 2.90454428], "chance": [131, 2.662352533], "future": [286, 2.568759092], "success": [687, 2.989808931], "despite": [193, 3.005640396], "sense": [626, 2.48950972], "machine": [419, 3.148332158], "design": [189, 2.476891256], "2009": [15, 3.764745545], "small": [648, 2.045638231], "study": [684, 3.054696553], "brain": [108, 3.541601993], "activity": [42, 3.374547909], "15": [7, 2.639963538], "playing": [526, 2.18062544], "actual": [43, 3.154486024], "wins": [778, 3.344242559], "fact": [253, 2.347679525], "according": [37, 2.614461246], "2010": [16, 3.688205468], "research": [591, 2.724629463], "paper": [499, 3.027146602], "offers": [485, 3.049125508], "possible": [535, 2.093614063], "close": [146, 2.621681494], "online": [488, 2.65858605], "allows": [59, 2.843919658], "approach": [67, 2.862185006], "quite": [568, 2.551722905], "random": [570, 3.185836554], "view": [761, 2.853010629], "box": [107, 3.000335344], "terms": [704, 2.857587296], "form": [279, 2.424971199], "control": [166, 2.48950972], "usually": [753, 2.449068751], "article": [74, 2.60372769], "great": [309, 1.935807072], "generally": [294, 3.077296385], "good": [305, 1.685304003], "designers": [192, 3.626961842], "little": [398, 1.923114246], "thought": [714, 2.528349554], "effect": [222, 2.91907238], "meaning": [437, 3.016335686], "perfect": [508, 2.953815329], "hand": [316, 2.250617812], "problem": [549, 2.407271622], "consider": [162, 2.782496845], "high": [325, 2.027474261], "score": [616, 3.405800452], "experiences": [245, 3.322101433], "really": [578, 1.850165246], "real": [577, 2.100044954], "money": [455, 2.347679525], "issue": [362, 3.100418803], "elements": [225, 3.160677994], "example": [241, 2.013571356], "left": [385, 2.333999421], "series": [627, 2.654833701], "difference": [202, 2.948777535], "race": [569, 3.454590616], "item": [364, 3.607353371], "source": [656, 2.953815329], "end": [227, 1.877331602], "single": [641, 2.248120932], "does": [207, 1.908802731], "ll": [402, 1.812362881], "probably": [548, 2.283657666], "difficult": [204, 2.64737098], "hours": [334, 2.64737098], "order": [494, 2.248120932], "clear": [144, 2.589593179], "experience": [244, 2.213803839], "powerful": [539, 3.010973742], "shot": [636, 3.578643265], "mind": [447, 2.508741082], "strategies": [678, 3.588122009], "cases": [125, 3.205129757], "built": [114, 2.65858605], "teams": [699, 3.397895273], "balance": [86, 3.205129757], "challenge": [129, 2.91907238], "return": [597, 2.958878631], "complete": [157, 2.6436604], "gives": [298, 2.774022218], "getting": [296, 2.19471018], "coming": [151, 2.685254298], "short": [635, 2.495879169], "secret": [620, 3.405800452], "gameplay": [289, 3.488492168], "learn": [382, 2.439963984], "health": [323, 3.244870085], "2014": [20, 3.413768622], "personal": [511, 2.825981957], "wordpress": [782, 4.6044962], "feature": [259, 3.112183644], "extra": [247, 2.933814662], "point": [528, 1.941296565], "begin": [92, 3.049125508], "rate": [572, 3.185836554], "room": [603, 2.795344988], "ve": [758, 1.749842524], "far": [256, 2.291439807], "doesn": [208, 2.066215089], "look": [407, 1.865355411], "don": [211, 1.602206525], "special": [658, 2.724629463], "remember": [587, 2.782496845], "taken": [693, 2.876106344], "work": [784, 1.682467122], "places": [518, 3.198657242], "things": [711, 1.860266342], "leave": [384, 2.761443436], "stuff": [685, 3.049125508], "today": [718, 2.467530814], "battle": [90, 3.293322469], "stay": [671, 3.000335344], "opponent": [490, 3.446291814], "pretty": [544, 2.56190975], "hard": [320, 2.18999319], "trying": [732, 2.325880297], "worth": [789, 2.614461246], "bit": [100, 2.395643584], "simple": [639, 2.22105901], "easy": [218, 2.11958955], "understand": [739, 2.56190975], "head": [322, 2.589593179], "feeling": [262, 3.038075672], "bad": [85, 2.586090548], "kind": [370, 2.361549373], "hands": [317, 2.91420619], "magic": [421, 3.27226906], "let": [386, 2.021492189], "looks": [409, 2.782496845], "aren": [72, 2.6436604], "human": [337, 2.80400305], "went": [774, 2.866803952], "matter": [434, 2.534972095], "right": [599, 1.775937635], "expected": [243, 3.238136053], "wanted": [764, 2.795344988], "able": [35, 2.106517468], "hold": [330, 2.843919658], "start": [666, 1.967320338], "making": [426, 1.95051322], "taking": [695, 2.458257177], "account": [38, 3.160677994], "lot": [414, 1.999859094], "looking": [408, 2.216216385], "attack": [77, 3.413768622], "days": [183, 2.470641236], "maybe": [435, 2.769811686], "live": [399, 2.753144633], "want": [763, 1.651781311], "isn": [361, 2.260668148], "food": [277, 3.192226352], "make": [424, 1.424251788], "feel": [261, 2.164440116], "didn": [200, 2.389879879], "think": [712, 1.812362881], "reason": [579, 2.525054658], "saying": [613, 3.08302706], "pass": [504, 3.179487326], "immediately": [343, 2.923962365], "rest": [593, 2.662352533], "area": [70, 2.817132342], "problems": [550, 2.736750823], "going": [303, 1.914145576], "thanks": [707, 3.032596206], "ask": [75, 2.65858605], "body": [104, 2.953815329], "stop": [673, 2.871444331], "know": [372, 1.691002024], "eyes": [250, 3.286255302], "children": [138, 3.043585328], "talking": [697, 3.077296385], "takes": [694, 2.521770583], "care": [123, 3.054696553], "took": [720, 2.64737098], "moment": [454, 2.871444331], "answer": [65, 2.82154736], "thing": [710, 2.113032149], "result": [594, 2.589593179], "second": [619, 2.27593562], "read": [574, 2.27593562], "need": [470, 1.658673137], "fine": [272, 3.160677994], "doing": [210, 2.29404737], "old": [486, 2.328579354], "man": [427, 2.825981957], "wasn": [766, 2.848454813], "come": [149, 2.055873735], "question": [564, 2.696904915], "finally": [270, 2.724629463], "ready": [576, 2.958878631], "told": [719, 2.839404977], "story": [676, 2.575655671], "learning": [383, 2.909363566], "started": [667, 2.381296136], "digital": [205, 3.258475738], "technology": [700, 3.112183644], "country": [170, 3.231447065], "day": [182, 2.051766953], "school": [614, 2.943764993], "based": [88, 2.043603643], "called": [117, 2.135059472], "fast": [257, 2.923962365], "video": [760, 2.56190975], "past": [505, 2.579121879], "students": [682, 3.636912173], "reading": [575, 2.91420619], "class": [142, 3.130094571], "thinking": [713, 2.700818814], "creative": [175, 3.238136053], "idea": [339, 2.367151628], "came": [118, 2.607292756], "help": [324, 1.935807072], "hit": [329, 2.808360356], "information": [354, 2.395643584], "puzzle": [562, 3.307608426], "news": [475, 3.077296385], "master": [432, 3.224802522], "follow": [275, 2.765618807], "lost": [413, 2.876106344], "web": [771, 3.224802522], "tools": [722, 3.08302706], "ways": [770, 2.317826562], "history": [328, 2.782496845], "quick": [566, 3.016335686], "test": [705, 2.909363566], "key": [368, 2.618064853], "step": [672, 2.778250554], "month": [456, 2.948777535], "long": [405, 1.846820761], "different": [203, 1.779052902], "type": [737, 2.56190975], "standard": [664, 3.054696553], "early": [215, 2.449068751], "development": [197, 2.786761244], "fiction": [264, 4.052427617], "enjoy": [230, 2.958878631], "deal": [184, 2.817132342], "life": [389, 2.144008077], "tend": [702, 3.130094571], "specific": [659, 2.565328557], "setting": [632, 3.071598364], "model": [450, 3.100418803], "shows": [637, 2.834910588], "programming": [556, 3.979402482], "skills": [646, 3.08302706], "knowledge": [373, 2.989808931], "big": [98, 2.139523765], "software": [651, 3.307608426], "nature": [466, 3.136136885], "complex": [159, 2.91420619], "choose": [140, 2.621681494], "unique": [741, 2.799664649], "played": [523, 2.518497257], "middle": [445, 3.077296385], "kids": [369, 3.344242559], "build": [112, 2.43694739], "united": [742, 3.314828674], "social": [650, 2.662352533], "set": [631, 1.861959822], "traditional": [726, 3.065932627], "author": [80, 3.185836554], "computer": [160, 2.880790194], "fun": [284, 2.442989705], "instead": [356, 2.13061502], "virtual": [762, 3.657114881], "lives": [400, 3.179487326], "home": [331, 2.446024608], "wrote": [794, 3.130094571], "did": [199, 2.093614063], "better": [97, 1.908802731], "job": [366, 2.839404977], "individual": [352, 2.984586987], "likely": [391, 2.486340146], "having": [321, 2.153037484], "similar": [638, 2.521770583], "potential": [537, 2.91420619], "content": [164, 3.010973742], "designer": [191, 3.300439937], "felt": [263, 3.071598364], "focus": [274, 2.589593179], "war": [765, 3.238136053], "access": [36, 2.862185006], "american": [61, 3.154486024], "event": [237, 3.142215931], "style": [686, 2.866803952], "group": [312, 2.452122188], "service": [629, 3.112183644], "range": [571, 2.871444331], "age": [53, 3.032596206], "groups": [313, 3.279237729], "fit": [273, 3.043585328], "theme": [708, 3.505883911], "core": [167, 3.11811838], "important": [344, 2.085103374], "environment": [233, 3.224802522], "various": [757, 2.744914134], "characters": [135, 3.166908544], "fall": [254, 3.038075672], "note": [478, 2.666133256], "got": [307, 2.336720511], "eventually": [239, 2.909363566], "light": [390, 2.91420619], "year": [795, 2.019506091], "included": [347, 3.106283922], "books": [106, 3.336807581], "added": [46, 2.753144633], "entirely": [232, 2.995058287], "points": [529, 2.499079171], "self": [625, 2.91907238], "involved": [360, 3.038075672], "figure": [267, 2.91907238], "worked": [785, 3.010973742], "object": [482, 3.438061315], "code": [147, 3.016335686], "text": [706, 3.136136885], "related": [584, 2.948777535], "platform": [521, 3.397895273], "analysis": [62, 3.413768622], "press": [543, 3.218201838], "seven": [633, 3.185836554], "create": [172, 2.18999319], "effort": [224, 3.154486024], "project": [557, 2.81273673], "available": [81, 2.32050394], "plan": [519, 2.933814662], "site": [642, 3.021726534], "huge": [336, 2.808360356], "face": [251, 2.712653272], "challenges": [130, 3.344242559], "risk": [600, 3.032596206], "national": [464, 3.300439937], "strategy": [679, 2.669928327], "open": [489, 2.344928492], "product": [552, 3.016335686], "york": [798, 3.142215931], "city": [141, 2.834910588], "opportunity": [491, 3.08302706], "practice": [540, 3.021726534], "page": [497, 2.885496085], "book": [105, 2.625311262], "away": [84, 2.213803839], "say": [612, 2.033492333], "favorite": [258, 3.065932627], "round": [604, 3.100418803], "tell": [701, 2.56190975], "actually": [44, 2.137289127], "watch": [767, 2.989808931], "means": [438, 2.102197807], "giving": [299, 2.880790194], "loss": [412, 3.397895273], "comes": [150, 2.263196594], "love": [415, 2.392757579], "person": [510, 2.312493216], "turn": [733, 2.233269174], "beginning": [93, 3.060298809], "million": [446, 2.9639677], "winning": [777, 3.021726534], "moves": [459, 3.454590616], "easier": [216, 2.890224226], "pay": [506, 2.769811686], "won": [780, 2.288839025], "longer": [406, 2.600175288], "cards": [122, 2.761443436], "table": [692, 2.700818814], "users": [750, 3.192226352], "links": [396, 3.224802522], "sort": [654, 2.92887638], "situation": [643, 3.112183644], "extremely": [248, 3.130094571], "network": [473, 3.231447065], "attention": [78, 2.933814662], "details": [194, 3.142215931], "security": [622, 3.438061315], "black": [101, 3.049125508], "months": [457, 2.761443436], "center": [126, 3.005640396], "website": [772, 3.265348617], "directly": [206, 2.862185006], "app": [66, 3.300439937], "adding": [47, 3.071598364], "link": [395, 3.211644438], "store": [674, 3.179487326], "amazon": [60, 3.885373533], "systems": [691, 2.953815329], "turned": [734, 3.016335686], "especially": [234, 2.505510062], "economic": [219, 3.81126556], "travel": [729, 3.421800794], "half": [315, 2.654833701], "local": [403, 3.010973742], "server": [628, 3.81126556], "later": [379, 2.378451184], "asked": [76, 2.791043906], "file": [268, 3.731222853], "10": [1, 1.999859094], "search": [618, 2.989808931], "address": [50, 3.359280437], "major": [423, 2.871444331], "previous": [545, 2.91420619], "child": [137, 3.617109546], "choice": [139, 2.871444331], "brand": [109, 3.446291814], "companies": [155, 3.088790765], "business": [115, 2.677561952], "developers": [196, 3.390052095], "family": [255, 2.700818814], "value": [754, 2.495879169], "screen": [617, 3.106283922], "include": [346, 2.579121879], "list": [397, 2.375614302], "goes": [302, 2.610870577], "apps": [68, 3.951622918], "ball": [87, 3.731222853], "parts": [502, 2.969082801], "art": [73, 2.923962365], "science": [615, 3.054696553], "questions": [565, 2.744914134], "prices": [547, 3.636912173], "models": [451, 3.59769146], "smart": [649, 3.532552158], "spend": [661, 2.774022218], "30": [29, 2.625311262], "percent": [507, 3.251649772], "training": [727, 3.523583488], "spent": [662, 3.043585328], "space": [657, 2.544988873], "guide": [314, 3.08302706], "works": [787, 2.387010437], "ones": [487, 2.693006274], "considered": [163, 3.094587882], "positive": [534, 3.244870085], "interactive": [357, 3.742272689], "industry": [353, 3.016335686], "20": [12, 2.381296136], "super": [688, 3.314828674], "email": [226, 3.300439937], "changes": [133, 2.769811686], "title": [717, 3.279237729], "term": [703, 2.894974829], "role": [601, 2.857587296], "goal": [300, 2.744914134], "change": [132, 2.288839025], "character": [134, 2.933814662], "hope": [332, 2.91907238], "pick": [514, 2.848454813], "require": [588, 3.010973742], "decision": [186, 3.060298809], "additional": [49, 3.043585328], "process": [551, 2.387010437], "mean": [436, 2.673737855], "members": [441, 3.148332158], "team": [698, 2.528349554], "natural": [465, 3.112183644], "image": [341, 3.000335344], "reach": [573, 2.91420619], "power": [538, 2.534972095], "release": [586, 3.112183644], "living": [401, 3.160677994], "fully": [283, 3.071598364], "outside": [496, 2.782496845], "types": [738, 2.938777451], "stories": [675, 3.154486024], "relationship": [585, 3.397895273], "continue": [165, 3.000335344], "exactly": [240, 2.769811686], "working": [786, 2.421999429], "friends": [282, 2.614461246], "believe": [94, 2.862185006], "true": [730, 2.525054658], "share": [634, 2.728653613], "strength": [680, 3.607353371], "word": [781, 2.90454428], "bring": [111, 2.848454813], "concept": [161, 3.231447065], "modern": [452, 3.124088547], "deep": [188, 3.049125508], "try": [731, 2.115213175], "late": [378, 3.094587882], "saw": [611, 3.205129757], "large": [377, 2.427951827], "house": [335, 2.769811686], "century": [127, 3.429898004], "present": [541, 3.130094571], "method": [444, 3.382269955], "words": [783, 2.71662942], "add": [45, 2.392757579], "understanding": [740, 3.054696553], "completely": [158, 2.799664649], "track": [725, 3.077296385], "events": [238, 3.124088547], "twitter": [736, 3.279237729], "movement": [458, 3.390052095], "course": [171, 2.260668148], "created": [173, 2.589593179], "map": [429, 3.366885036], "starting": [668, 2.757285426], "average": [82, 3.154486024], "areas": [71, 3.258475738], "car": [120, 3.446291814], "animal": [63, 4.114947974], "uses": [751, 2.786761244], "yes": [797, 2.958878631], "physical": [513, 3.142215931], "function": [285, 3.244870085], "young": [799, 3.094587882], "novel": [479, 3.75344599], "men": [442, 3.429898004], "general": [293, 2.736750823], "act": [39, 3.000335344], "wrong": [793, 2.91907238], "break": [110, 2.948777535], "water": [768, 3.238136053], "theory": [709, 3.382269955], "law": [380, 3.550734477], "facebook": [252, 3.523583488], "check": [136, 2.486340146], "turns": [735, 2.80400305], "quickly": [567, 2.534972095], "tiles": [715, 4.290838641], "gold": [304, 3.657114881], "luck": [418, 3.532552158], "double": [212, 3.286255302], "language": [376, 3.130094571], "speed": [660, 3.088790765], "gets": [295, 2.65858605], "draw": [213, 3.148332158], "card": [121, 2.728653613], "deck": [187, 3.438061315], "lower": [417, 3.043585328], "total": [723, 2.885496085], "needed": [471, 2.677561952], "minutes": [448, 2.866803952], "sure": [690, 2.11958955], "goals": [301, 3.429898004], "sound": [655, 3.258475738], "price": [546, 3.065932627], "25": [28, 2.933814662], "recommend": [582, 3.238136053], "eye": [249, 3.244870085], "cut": [178, 3.100418803], "moving": [460, 2.839404977], "basic": [89, 2.740824149], "straight": [677, 3.471397735], "ability": [34, 2.724629463], "land": [375, 3.359280437], "camera": [119, 3.979402482], "items": [365, 3.329427474], "solution": [652, 3.198657242], "position": [533, 2.995058287], "section": [621, 3.251649772], "2016": [22, 3.438061315], "animals": [64, 4.098947633], "limited": [392, 2.834910588], "public": [560, 2.880790194], "fight": [266, 3.293322469], "features": [260, 2.774022218], "soon": [653, 2.80400305], "current": [177, 2.732694023], "economy": [220, 4.007975855], "needs": [472, 2.632610564], "inside": [355, 2.91907238], "14": [6, 2.969082801], "earlier": [214, 2.923962365], "buy": [116, 2.64737098], "government": [308, 3.626961842], "100": [2, 2.677561952], "000": [0, 2.589593179], "happen": [318, 2.948777535], "advantage": [51, 3.185836554], "happens": [319, 2.97939217], "resources": [592, 3.010973742], "issues": [363, 3.160677994], "low": [416, 2.572201436], "market": [431, 2.871444331], "action": [40, 2.689122774], "update": [745, 3.429898004], "actions": [41, 3.166908544], "building": [113, 2.568759092], "results": [595, 2.786761244], "interesting": [358, 2.765618807], "highly": [327, 3.054696553], "rule": [606, 3.065932627], "adventure": [52, 3.626961842], "40": [30, 3.179487326], "population": [532, 3.911349019], "culture": [176, 3.286255302], "financial": [271, 3.497150231], "energy": [228, 3.405800452], "developed": [195, 3.136136885], "field": [265, 3.192226352], "star": [665, 3.421800794], "sports": [663, 3.75344599], "white": [775, 3.032596206], "avoid": [83, 2.91907238], "property": [558, 3.59769146], "improve": [345, 3.043585328], "estate": [235, 4.310256727], "audience": [79, 3.429898004], "original": [495, 2.704748092], "values": [755, 3.454590616], "air": [56, 3.374547909], "row": [605, 3.677734168], "size": [644, 2.894974829], "president": [542, 3.75344599], "higher": [326, 2.786761244], "hour": [333, 3.179487326], "entire": [231, 2.712653272], "red": [583, 3.010973742], "death": [185, 3.351733231], "dice": [198, 3.667371381], "match": [433, 3.205129757], "roll": [602, 3.505883911], "die": [201, 3.279237729], "final": [269, 2.853010629], "necessary": [469, 3.112183644], "main": [422, 2.71662942], "menu": [443, 4.199031091], "objects": [483, 3.607353371], "damage": [179, 3.677734168], "states": [670, 3.005640396], "state": [669, 2.65858605], "click": [145, 3.198657242], "13": [5, 3.065932627], "music": [463, 3.479908424], "numbers": [481, 3.038075672], "requires": [590, 3.038075672], "friend": [281, 3.142215931], "2018": [24, 3.607353371], "ideas": [340, 3.021726534], "lines": [394, 3.179487326], "week": [773, 2.568759092], "production": [553, 3.374547909], "management": [428, 3.300439937], "60": [33, 3.224802522], "select": [624, 3.454590616], "color": [148, 3.198657242], "expect": [242, 3.060298809], "increase": [350, 3.016335686], "mechanics": [439, 3.405800452], "skin": [647, 4.131208495], "kingdom": [371, 4.271790446], "night": [476, 3.054696553], "option": [492, 3.043585328], "writing": [791, 2.857587296], "talk": [696, 2.740824149], "costs": [169, 3.322101433], "bet": [96, 3.847633205], "force": [278, 3.244870085], "cost": [168, 2.843919658], "18": [10, 3.231447065], "16": [8, 2.958878631], "grid": [310, 4.067695089], "humans": [338, 3.636912173], "addition": [48, 3.038075672], "jump": [367, 3.251649772], "dog": [209, 4.147737797], "24": [27, 3.244870085], "21": [25, 3.462958866], "17": [9, 3.238136053], "published": [561, 3.124088547], "2007": [13, 4.03738974], "ground": [311, 3.374547909], "write": [790, 2.969082801], "11": [3, 2.843919658], "products": [554, 3.185836554], "program": [555, 3.148332158], "lord": [410, 4.745574798], "mode": [449, 3.742272689], "50": [31, 2.740824149], "includes": [348, 2.969082801], "2008": [14, 3.799431103], "women": [779, 3.454590616], "500": [32, 3.488492168], "pain": [498, 3.860055725], "poker": [530, 3.938017266], "22": [26, 3.366885036], "19": [11, 3.336807581], "began": [91, 3.238136053], "performance": [509, 3.218201838], "module": [453, 4.983985821], "mr": [461, 3.96541624], "town": [724, 3.688205468], "index": [351, 4.330059354], "edit": [221, 3.787735063], "2017": [23, 3.471397735], "march": [430, 3.588122009], "retrieved": [596, 4.528510293], "archived": [69, 5.023206534], "planning": [520, 3.397895273], "database": [181, 4.131208495], "images": [342, 3.559951132], "command": [152, 3.776174241], "london": [404, 3.764745545], "et": [236, 4.6044962], "al": [57, 4.631164447], "services": [630, 3.374547909], "exports": [246, 6.044857782], "gender": [292, 4.457892725], "bike": [99, 4.553202905], "var": [756, 5.757175709], "transgender": [728, 5.757175709]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_health.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_health.json deleted file mode 100644 index 9eca19f..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_health.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.688156083, "feature_log_probs": [-6.387406692, -5.667677268, -6.921182784, -6.480194674, -6.466815139, -6.826139528, -6.75603859, -6.785382671, -6.898446325, -7.026161424, -6.803788272, -7.261123157, -6.521281292, -7.528476914, -7.5183013, -6.982177375, -6.839415296, -6.952496586, -7.272212291, -7.021007845, -7.070103482, -7.08250951, -7.07391766, -6.918443736, -7.273363176, -7.147066871, -7.589470348, -7.008130552, -7.243488888, -7.258849353, -6.904136724, -7.006063057, -7.460535059, -7.535871701, -7.404384163, -7.484826633, -6.623100597, -6.931338095, -6.870257204, -6.476695358, -6.441348247, -6.850043039, -6.313784623, -7.72615781, -6.834989422, -6.617760447, -6.403424898, -6.25988585, -5.760748086, -6.655008438, -7.127676014, -6.824429649, -6.299771998, -6.962209754, -6.602564542, -7.207478216, -5.742476546, -7.600621514, -6.407898286, -6.764739799, -7.170259835, -7.911670115, -6.146178325, -5.798606166, -6.579430137, -7.623438744, -6.718402238, -6.326719567, -6.997180818, -6.763388943, -6.160203764, -6.670621634, -7.039181774, -6.5665595, -6.554517852, -6.979126842, -6.69956831, -6.275447853, -5.74410264, -6.571357276, -6.718397199, -5.761531416, -6.107392676, -5.918955728, -6.925609549, -10.783492392, -15.35643735, -7.361418512, -7.014356647, -7.741311734, -5.186161803, -4.610105317, -6.644884266, -5.156578286, -7.411470975, -7.75202793, -8.402394902, -7.69946563, -7.37602482, -6.324304775, -6.998863821, -7.364487241, -5.333260346, -8.310255337, -5.142794485, -6.438125021, -6.391604801, -5.867020643, -6.425857273, -6.348588403, -6.354447182, -5.737276829, -6.346999211, -7.709980363, -7.1051474, -6.570980795, -6.58508576, -6.534070792, -6.640734658, -6.971532142, -6.000780998, -6.337329777, -6.244852948, -6.843130434, -7.213426264, -5.857995431, -7.72649422, -6.460866947, -5.769632547, -5.980302688, -6.624519024, -5.603975437, -6.41315625, -6.377129893, -5.829017829, -6.631795992, -6.787556187, -6.27640421, -6.847268821, -7.181396324, -7.267059396, -6.679504632, -6.768417112, -7.20413542, -6.357745391, -6.003589244, -6.723643803, -6.857118696, -7.251453216, -6.176880103, -6.811830897, -6.360878195, -7.079905195, -6.686134306, -7.015162913, -6.880468069, -6.152257856, -6.229755392, -5.621238777, -6.184428135, -6.345827684, -7.815768937, -5.94708872, -7.424062469, -7.130809016, -5.269417774, -6.060719584, -7.037613189, -6.258406801, -6.937778187, -5.60224761, -7.01408864, -6.300498573, -5.158222908, -5.928854514, -5.505516635, -5.248226716, -6.116063286, -6.629604225, -6.393713744, -6.617054187, -5.955672815, -5.44854089, -6.603717038, -6.697602715, -5.629450432, -5.686182455, -6.767054096, -7.126656146, -7.157643945, -6.06675047, -6.088792064, -6.172131013, -6.882008873, -5.849342536, -5.867538994, -5.362488117, -6.7222665, -5.595094608, -6.449637333, -5.534589847, -6.649307118, -5.404722716, -6.398757818, -6.087068607, -6.228344727, -6.680478164, -7.234985871, -7.693716277, -6.47991676, -6.472413204, -6.815498385, -6.434932038, -5.378977684, -6.166105912, -8.098515768, -5.966718383, -6.478064595, -6.915614348, -6.889198647, -7.011613918, -6.662355543, -5.724185531, -5.539082303, -6.448155041, -6.266091698, -7.650657094, -6.112401586, -7.104005924, -8.5010636, -8.917486765, -6.419197865, -6.574570406, -6.468960062, -7.04464561, -6.53877152, -5.818489954, -7.228274543, -7.195761403, -7.16624673, -6.562669417, -6.451725684, -7.106807176, -6.762116383, -7.334770462, -6.822993266, -6.75984314, -6.7008394, -6.526133457, -7.04277339, -5.681100308, -4.41310264, -6.157584009, -5.657087075, -5.6795784, -5.325164621, -6.009011885, -6.283752603, -6.026381923, -5.83445991, -6.652079807, -6.647657915, -6.505042573, -5.698993771, -5.21346968, -5.953059479, -6.531613169, -7.89921062, -6.228908833, -6.830372241, -7.833925427, -5.866807175, -6.087053639, -6.233120476, -6.230454423, -7.262631352, -7.090542711, -6.077775448, -6.130973389, -6.503150684, -6.945670788, -7.195516117, -5.993197636, -5.940103124, -6.862703511, -6.727388296, -6.896642203, -6.489294343, -7.219716736, -6.045043551, -7.646289631, -6.947584757, -6.160996531, -6.794464606, -6.033407896, -6.019526947, -6.692063442, -6.730787232, -6.723937868, -7.347197294, -6.403904833, -6.677586231, -7.039074443, -7.107897921, -6.829418182, -6.69836108, -5.509777981, -5.685860287, -7.081930404, -6.333983699, -7.171565366, -7.363340983, -7.430066423, -6.754871882, -6.46155682, -7.013713093, -5.378426958, -6.702349008, -6.516656036, -7.56798155, -6.063884925, -6.741872262, -6.58994058, -7.068032293, -6.367329494, -6.452382481, -6.946948045, -6.113736609, -6.241237663, -6.930467518, -6.963328595, -5.851173693, -6.731653209, -6.456552277, -7.141844273, -6.979616727, -8.275105919, -7.286219759, -6.950240901, -6.441010878, -7.451757732, -4.746500399, -4.562470416, -6.959202802, -6.205727203, -6.501535247, -6.163029269, -6.680349188, -7.07465896, -6.222551544, -6.666740747, -7.09170787, -7.651252424, -6.806188131, -7.17195466, -6.910243949, -6.465536131, -6.960764472, -6.326320791, -6.432468938, -5.709472577, -6.686706774, -6.145530085, -5.832618275, -6.657022456, -6.867964125, -7.876876607, -5.706950424, -7.042862946, -6.721221982, -6.70063381, -6.4963627, -7.161217316, -6.616282139, -7.162042317, -5.043858096, -5.789159771, -6.480051874, -6.783236851, -7.127497134, -6.568924311, -7.094471569, -7.611606378, -5.248871269, -7.113026742, -6.929094792, -5.097119113, -4.687225197, -7.449107899, -6.191564892, -7.385473124, -6.337047629, -6.96433444, -7.825198823, -6.129455343, -6.176892993, -5.853438676, -6.752298048, -5.992954475, -7.340714782, -6.295304454, -6.555353854, -6.911263702, -7.20090824, -6.491154919, -6.640348295, -6.823257128, -6.671749229, -6.929870932, -6.571908215, -5.840714684, -6.505882834, -6.292983022, -7.38804554, -6.119826184, -7.493281402, -6.414082674, -8.346808636, -6.6473501, -6.947804753, -6.296731159, -5.911027605, -6.237336082, -6.877701579, -6.729686068, -5.984157775, -6.815802374, -6.583949016, -7.673718686, -6.611482505, -6.632677111, -6.346678216, -6.120210898, -6.360682406, -6.862958283, -6.792770372, -7.153038391, -6.948794248, -6.765922018, -6.795973769, -7.147953907, -6.653336568, -6.288368936, -6.728750446, -6.597090097, -7.076657813, -6.725716539, -6.071660742, -6.765219798, -6.248487957, -6.101830034, -6.451147985, -6.531176912, -5.287269618, -5.80508898, -6.545898258, -6.970714037, -6.544012446, -6.059903618, -6.668367643, -7.543787841, -6.356378328, -6.355509631, -5.789991707, -6.544777484, -6.888084778, -7.570283555, -6.671867113, -6.407531177, -6.478245998, -5.750957377, -5.993772004, -7.534114111, -7.069600332, -6.962165353, -6.283186668, -6.807328041, -7.415595697, -7.461404812, -6.990255189, -7.16913611, -7.030206328, -6.92206589, -6.413585417, -7.085599417, -6.81451461, -6.583250149, -6.649319264, -6.731558139, -6.872137081, -7.201905247, -7.22819125, -7.722983836, -5.750262623, -5.6685881, -6.39627603, -6.775412204, -9.01211007, -6.676415864, -6.599775931, -7.64082272, -8.098594398, -7.061807689, -6.462232218, -7.114903858, -6.283170862, -6.541363986, -7.068255253, -6.86169391, -7.245107093, -5.342800962, -6.901392364, -5.426324571, -5.158763232, -6.104269101, -6.216717258, -6.702708041, -6.232282182, -5.370902205, -6.46229668, -6.620439486, -7.124749333, -6.20103888, -6.970749162, -6.170741022, -6.688838317, -6.882543559, -7.146493305, -6.452497297, -7.30198242, -6.369257202, -7.347493149, -6.715752459, -6.526099629, -5.809910939, -6.722345774, -6.248432738, -6.231260791, -6.741136449, -6.251921391, -6.833567511, -6.515108052, -7.041921785, -7.141721036, -6.117120097, -5.461779966, -6.348583837, -6.448619585, -8.180597507, -6.087846445, -5.221821219, -5.888465574, -6.750365595, -6.371751905, -6.90372565, -6.419888467, -6.966744319, -7.167910831, -7.763414711, -6.427965084, -6.709396356, -6.849764855, -6.980153887, -5.972802576, -5.466414127, -5.595070941, -7.922891722, -7.336013698, -6.905591903, -6.186832859, -6.644699829, -7.292361994, -6.878162978, -6.227155488, -7.724087527, -7.365148036, -7.393887452, -6.040929253, -6.363365489, -8.090534799, -5.397039962, -5.933243537, -6.497714321, -7.174063268, -6.449035987, -6.626688056, -6.028616034, -7.111703895, -5.863766373, -7.303036092, -15.35643735, -5.779761921, -6.642701848, -6.53243024, -6.250640457, -7.419988704, -5.900667238, -5.806961281, -7.035557906, -6.889629793]}, {"log_prior": -0.698163314, "feature_log_probs": [-5.586511452, -5.668103899, -6.188242539, -6.335824482, -6.161194857, -6.617246918, -6.627915545, -6.194505497, -6.573719624, -6.820974491, -6.839542434, -6.870358754, -6.16799991, -7.569389803, -7.122122502, -7.122165325, -7.277509461, -7.124186944, -7.095904561, -6.92988139, -6.594195582, -6.665251387, -6.516279256, -6.252058458, -6.7377495, -6.396221459, -6.45043814, -7.174118276, -7.138338824, -7.14753882, -6.764955747, -6.46978041, -7.25771418, -7.24646151, -7.469981877, -7.35955939, -6.457351537, -6.937343511, -6.391140366, -6.647952584, -6.084269935, -6.202433962, -6.013094638, -6.080429347, -6.374565041, -7.088620309, -7.253443971, -6.074658986, -15.296411181, -6.095590524, -6.65940848, -7.008634959, -6.80832211, -6.113034837, -7.862729312, -6.818840353, -7.664466006, -6.442539971, -6.070789162, -7.028616422, -6.671940599, -6.071887, -7.773760685, -7.976716253, -6.733314828, -7.793270252, -6.458689417, -6.492796027, -6.374076468, -6.43262812, -7.696540113, -7.264091599, -6.787843664, -6.332054982, -6.624439016, -5.969217011, -6.569520616, -6.855898401, -5.860060802, -6.803411371, -7.016670912, -7.059659355, -5.551157059, -5.876897473, -5.690034454, -5.622921095, -6.295499172, -6.066511266, -6.220634826, -5.860713727, -7.386626381, -6.427379148, -5.593146762, -6.798156598, -6.240451093, -6.191894131, -6.221859557, -5.606199536, -6.084029208, -6.107938015, -6.439105299, -6.695919125, -8.122581507, -5.541473264, -6.961807494, -6.079849798, -7.02548194, -7.124885167, -7.766976164, -15.296411181, -7.519887295, -7.655541715, -6.664568312, -6.888138902, -6.686719298, -6.659123938, -6.034594646, -6.590021493, -5.972654306, -6.638641888, -6.418250143, -7.496117094, -15.296411181, -15.296411181, -6.398939525, -9.640523776, -5.710941419, -7.215104977, -10.506878574, -9.904878857, -6.633151963, -9.329592798, -7.029829058, -7.260146723, -10.617391533, -6.002093952, -6.218356772, -6.624432518, -6.258426706, -6.013595072, -5.329854745, -7.257200808, -9.370276869, -6.602606187, -7.946575027, -7.61835246, -6.531487792, -7.120681913, -6.02834511, -6.251208458, -7.690238881, -8.113806315, -6.202183785, -6.096873088, -5.785261727, -6.552033432, -6.619046913, -5.16274874, -5.400500853, -6.140536205, -6.720005357, -6.820402789, -8.842444712, -6.032901096, -6.62219675, -9.265423471, -15.296411181, -6.541359848, -5.849796885, -5.875453854, -7.470244069, -6.717436865, -5.724598489, -7.885507524, -8.919247628, -8.592969993, -8.682759657, -6.035796092, -6.039802346, -7.753521798, -6.127496464, -5.178174015, -7.213976517, -15.296411181, -7.694746312, -8.066003307, -8.852978064, -6.275434241, -6.520798851, -5.964541774, -6.709426923, -7.025414226, -6.310655352, -7.096444198, -7.135944134, -7.511004942, -7.997351416, -5.850249792, -6.892547066, -6.547435857, -7.602331878, -8.07629462, -6.931517848, -5.927198951, -7.281548495, -5.988380467, -6.659307936, -6.215233242, -5.774564485, -6.26137201, -5.892921326, -6.156962834, -6.551299579, -9.849132157, -7.325241083, -6.205870763, -5.940505011, -6.825413453, -6.580521766, -6.273469795, -6.473627367, -6.35460583, -6.104357428, -7.482742833, -6.447862459, -5.663708299, -6.011810023, -6.551223721, -6.385814503, -5.47594828, -5.89841101, -6.767205605, -6.044036873, -6.551978388, -6.66573241, -5.55147182, -5.53222042, -5.346007737, -5.918458819, -6.315368199, -5.711943651, -6.123247527, -6.694836478, -6.494650398, -6.432470466, -6.378844063, -6.320678177, -6.062666559, -6.140270978, -6.13595712, -9.323270619, -6.929298917, -8.583707201, -7.163322194, -7.117377136, -5.748182318, -7.084172356, -11.684291491, -9.586996348, -5.827837528, -6.600561907, -6.335936293, -5.265783111, -15.296411181, -15.296411181, -8.131348796, -6.329155185, -5.765392298, -6.17772467, -6.203025526, -5.936130599, -8.858012765, -6.116010873, -7.177072374, -6.558796375, -6.577209207, -6.950792529, -6.109062088, -6.968220396, -7.521287207, -6.883384874, -6.563620088, -8.849124628, -5.904031819, -6.135669715, -6.069971807, -6.687348139, -6.768865497, -6.03983192, -7.603717076, -7.005613929, -6.364908336, -10.609062314, -6.277799518, -5.439301421, -6.371699726, -7.324382877, -6.234436304, -6.141749754, -6.449139312, -6.89846206, -6.273556378, -6.448565054, -6.307731451, -5.800988504, -6.26702898, -7.327453764, -5.694166288, -6.100758064, -6.243812543, -6.071905474, -6.497279178, -6.424922981, -5.875329378, -5.776778949, -6.136845549, -9.227791421, -6.574420117, -5.253206054, -6.408371034, -5.691978602, -6.390719336, -5.643872966, -5.933373333, -7.154830553, -5.737824919, -5.745256547, -6.378320102, -6.983126963, -6.635567243, -6.492959183, -5.146422327, -5.980993645, -6.010080851, -6.114582367, -6.53859534, -6.812906257, -5.856588245, -6.455507895, -6.155525934, -6.013056915, -7.841782138, -8.377183655, -15.296411181, -7.030939339, -6.509164045, -7.992804027, -7.01634458, -6.203441023, -6.431259101, -6.536876723, -6.105066297, -6.577046596, -6.706625736, -5.522536328, -6.056880731, -6.392237527, -6.624557603, -7.437073509, -6.519537163, -7.004711181, -6.96176243, -15.296411181, -5.371105116, -6.770426288, -6.51143297, -6.174912775, -4.891608534, -6.35431204, -6.321511394, -6.557952132, -7.342853855, -6.704834066, -5.824416614, -6.388315136, -7.246190083, -8.703746521, -5.926582428, -6.005404618, -6.014780128, -6.272088803, -6.480922576, -5.903304391, -7.848570963, -6.732606361, -6.290146115, -8.726492794, -8.14124984, -6.109792365, -6.100894903, -6.27520435, -6.197858123, -6.316228701, -6.055848491, -7.04715821, -9.820258056, -10.174063192, -5.869086723, -15.296411181, -6.199442775, -10.074756781, -5.881207051, -6.554885382, -6.365948035, -7.356756954, -6.237661564, -5.708476403, -6.839204553, -6.088807708, -6.876100536, -6.774617017, -7.86634013, -8.9197809, -6.363478234, -7.127014812, -6.329702022, -7.259380957, -5.998279376, -7.660810701, -6.439846191, -6.404155583, -7.000022667, -6.182828019, -6.2297558, -6.777304591, -6.17589897, -6.870670794, -6.454556661, -6.201363258, -6.975102839, -6.526518186, -6.043197725, -6.835166523, -6.750852048, -6.330587461, -6.251085724, -6.501409197, -6.368482759, -6.288470996, -5.622234501, -6.470082313, -5.582508191, -5.514439235, -6.774414456, -6.620588346, -6.670844118, -7.219213577, -7.215192106, -6.93724191, -6.697355939, -9.877047069, -7.006536944, -7.52142835, -6.169862789, -6.764477859, -7.276945274, -6.683811142, -6.664583161, -6.590079995, -6.331480185, -6.491730166, -6.522761735, -5.637538149, -6.829663977, -6.502832692, -6.400586593, -5.937133374, -7.328211514, -5.802418179, -6.253632363, -6.216206612, -7.134548384, -6.066858416, -6.211857799, -6.476922317, -6.427697013, -6.501873411, -5.934874681, -5.748395059, -6.063400895, -5.615639563, -6.15240899, -6.439501094, -7.371730597, -6.556888523, -6.709777498, -6.957394786, -6.566191804, -6.1063841, -6.173247812, -6.047924776, -5.804501557, -6.252218625, -6.943404989, -7.332655295, -5.940718688, -5.724978857, -5.980799128, -6.487418171, -6.739719049, -6.395441758, -6.352900603, -6.540104458, -5.833735817, -6.229293858, -6.313689783, -6.69835613, -6.20009747, -6.428009214, -5.826693891, -7.653048703, -6.778064533, -7.343945114, -6.791909867, -7.474444301, -6.247028694, -5.962824708, -8.885273785, -9.128236234, -6.675852073, -6.86547441, -6.433634654, -6.622346146, -6.500237796, -7.886100148, -5.811336673, -6.355685539, -6.506332792, -6.422294919, -6.611694598, -6.39765922, -6.44547331, -11.881515369, -13.197158219, -8.585331695, -5.911982021, -5.539806778, -5.580864892, -6.377974383, -6.073564925, -6.071282994, -6.080008775, -6.332389377, -6.733663624, -9.235780122, -10.626612906, -6.740221633, -6.559536352, -5.777221326, -8.049720368, -8.232417384, -9.39387923, -7.497796658, -8.627434902, -6.430883434, -6.121796201, -6.421539513, -6.244886969, -5.863683917, -6.192473528, -6.618206144, -6.390163079, -6.749798026, -6.466698502, -5.20959212, -5.764766819, -6.13500082, -5.864373426, -6.67533202, -5.520361503, -6.520998424, -6.173261769, -6.862725698, -5.297167685, -6.307371619, -5.993978137, -6.380941745, -8.736540102, -5.223764793, -6.411649708, -6.272255282, -5.281004728, -6.363821927, -6.278938861, -6.183435191, -6.83738318, -6.964493435, -5.969203045, -6.021649337, -6.104089092, -5.588656632, -5.33388767, -6.27845787, -6.395081347, -5.410070781, -6.309053267, -5.364505288, -5.523749665, -6.489884381, -6.333000522]}], "model_type": "nb", "positive_class_label": "health", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"patients": [387, 2.344330162], "multiple": [357, 2.771956842], "chronic": [125, 2.755289789], "diseases": [174, 2.819277498], "care": [104, 2.211141294], "treatment": [550, 2.283222176], "result": [457, 2.482176133], "pressure": [414, 2.806148207], "health": [251, 1.796921653], "hand": [246, 2.660731207], "benefits": [81, 2.466575192], "person": [391, 2.418227408], "working": [592, 2.451213907], "makes": [332, 2.150657746], "20": [12, 2.306691311], "day": [158, 1.857348196], "team": [525, 2.771956842], "10": [1, 1.879476759], "new": [367, 1.504890888], "technology": [526, 3.073743521], "medical": [341, 2.12833539], "year": [596, 1.900347081], "old": [377, 2.30933332], "model": [351, 3.096733039], "making": [333, 2.072526918], "doctor": [175, 2.73889598], "surgery": [517, 3.353878387], "patient": [386, 2.675883012], "heart": [254, 2.517379768], "problems": [421, 2.372109726], "depression": [162, 3.114328801], "cancer": [102, 2.642108695], "treat": [549, 2.683545885], "better": [83, 1.848965917], "single": [490, 2.460402333], "general": [231, 2.430096984], "physician": [395, 3.040220829], "past": [385, 2.537117251], "30": [36, 2.427116356], "years": [597, 1.765717873], "primary": [418, 3.090935921], "long": [320, 1.808077147], "quality": [433, 2.5847453], "face": [207, 2.887641241], "different": [172, 1.893341799], "condition": [144, 2.887641241], "clinical": [131, 2.645805557], "controlled": [150, 3.162823151], "research": [453, 2.021651248], "trials": [553, 3.361425593], "focus": [219, 2.706893249], "disease": [173, 2.311982328], "avoid": [74, 2.691267931], "know": [294, 1.816122243], "treatments": [551, 2.935959818], "results": [458, 2.245290954], "drug": [185, 2.793189062], "2010": [17, 3.181632483], "report": [451, 2.878251501], "million": [348, 2.926107522], "account": [43, 3.073743521], "percent": [389, 2.814881887], "recently": [445, 2.70296397], "group": [241, 2.466575192], "researchers": [454, 2.695151431], "healthcare": [252, 3.490637324], "published": [432, 2.537117251], "23": [29, 3.18798171], "united": [562, 3.079441542], "states": [506, 2.695151431], "age": [52, 2.638425449], "living": [317, 2.921217536], "changes": [117, 2.547134029], "total": [543, 2.986732144], "control": [149, 2.347073648], "death": [160, 3.068077783], "individual": [280, 2.841550134], "services": [479, 2.961023787], "models": [352, 3.562096288], "money": [354, 2.675883012], "improve": [273, 2.564054907], "100": [2, 2.588235705], "june": [290, 3.456735773], "related": [449, 2.383441292], "human": [268, 2.460402333], "university": [563, 2.448169765], "reduce": [447, 2.533800498], "cost": [152, 2.897119985], "dr": [182, 2.691267931], "project": [428, 3.150477315], "physicians": [396, 3.150477315], "hospital": [265, 3.102563959], "risk": [463, 2.409416779], "conditions": [145, 2.550495377], "make": [331, 1.570929548], "instead": [284, 2.262813304], "half": [245, 2.683545885], "help": [255, 1.617509766], "life": [307, 1.912725666], "days": [159, 2.400683099], "having": [248, 2.23051236], "lower": [328, 2.533800498], "effective": [195, 2.412345038], "seen": [474, 2.649516136], "lead": [300, 2.533800498], "systems": [519, 2.801809805], "article": [67, 2.472786392], "short": [482, 2.588235705], "term": [528, 2.570904248], "detox": [165, 3.679879324], "practices": [411, 3.162823151], "questions": [435, 2.730798769], "information": [283, 2.245290954], "16": [8, 2.784642001], "content": [148, 3.029291758], "management": [335, 2.950922691], "work": [591, 1.707535918], "high": [259, 1.900347081], "positive": [404, 2.855155786], "11": [3, 2.543783942], "learn": [301, 2.581267035], "detoxification": [166, 3.744417845], "process": [422, 2.280648172], "toxic": [544, 3.260620894], "body": [91, 1.881199412], "toxins": [545, 3.288400458], "feeling": [217, 2.931021537], "likely": [309, 2.23051236], "foods": [223, 2.976369357], "note": [372, 2.771956842], "does": [177, 1.909173264], "hard": [247, 2.409416779], "professional": [426, 3.073743521], "great": [240, 2.074616783], "way": [581, 1.620162288], "fast": [212, 2.921217536], "getting": [232, 2.311982328], "increase": [278, 2.507655218], "energy": [198, 2.605872846], "levels": [306, 2.472786392], "weight": [586, 2.819277498], "eating": [191, 2.955960485], "kind": [293, 2.574346593], "best": [82, 1.832409248], "choose": [124, 2.828127113], "don": [181, 1.697442105], "feel": [216, 2.178119425], "diet": [170, 2.730798769], "eat": [190, 2.971227957], "effects": [196, 2.328025453], "try": [555, 2.338865668], "prevent": [416, 2.771956842], "blood": [90, 2.30142814], "source": [498, 2.70296397], "vitamin": [577, 3.525728644], "water": [580, 2.454267345], "tea": [524, 3.353878387], "start": [503, 2.143908564], "loss": [324, 2.931021537], "cleanse": [128, 3.766890701], "certain": [115, 2.454267345], "sure": [516, 2.328025453], "include": [274, 2.272965676], "change": [116, 2.30142814], "simply": [489, 2.400683099], "needs": [365, 2.627456418], "healthy": [253, 2.501224328], "use": [564, 1.534923175], "following": [221, 2.412345038], "guide": [244, 2.971227957], "kidney": [292, 3.690350624], "black": [88, 3.051270665], "white": [587, 2.935959818], "good": [236, 1.713349888], "conventional": [151, 3.440206471], "natural": [360, 2.349824681], "far": [211, 2.374930602], "growth": [243, 3.073743521], "animals": [61, 3.849778361], "check": [118, 2.514127733], "food": [222, 2.358123484], "12": [4, 2.400683099], "essential": [200, 2.892369382], "helps": [256, 2.616606402], "main": [329, 2.645805557], "13": [5, 2.7889064], "add": [49, 2.598780618], "fat": [214, 3.260620894], "14": [6, 2.767763964], "lot": [325, 2.203972804], "daily": [156, 2.523915739], "types": [560, 2.828127113], "including": [277, 1.909173264], "women": [588, 2.7889064], "night": [369, 2.931021537], "added": [50, 2.810505512], "sugar": [514, 3.120263536], "regular": [448, 2.859732453], "cause": [107, 2.347073648], "run": [466, 2.74705929], "15": [7, 2.406497068], "read": [439, 2.33072451], "car": [103, 3.456735773], "17": [9, 2.916351347], "consider": [146, 2.533800498], "home": [262, 2.338865668], "fasting": [213, 4.101092789], "mind": [349, 2.406497068], "sense": [476, 2.613015734], "usually": [570, 2.485325742], "think": [537, 2.023637346], "journal": [289, 2.714798428], "program": [427, 2.873589487], "exercise": [204, 2.897119985], "trying": [556, 2.616606402], "set": [480, 2.255266099], "stress": [510, 2.638425449], "come": [135, 2.225634301], "community": [138, 2.859732453], "question": [434, 2.837055744], "yes": [598, 2.940922608], "28": [34, 3.376693065], "normal": [371, 2.850599969], "especially": [199, 2.311982328], "doing": [180, 2.360905127], "19": [11, 3.05684171], "point": [401, 2.166585272], "stop": [508, 2.645805557], "week": [584, 2.463484], "doesn": [178, 2.293584963], "want": [578, 1.859033117], "small": [495, 2.104342963], "29": [35, 3.376693065], "muscle": [358, 3.162823151], "balance": [77, 2.921217536], "month": [355, 2.784642001], "able": [40, 2.304056263], "18": [10, 2.801809805], "value": [571, 2.819277498], "early": [187, 2.498024325], "method": [347, 3.073743521], "ask": [68, 2.841550134], "bad": [76, 2.679707108], "support": [515, 2.285802823], "light": [308, 2.887641241], "training": [547, 3.040220829], "book": [92, 2.734839179], "skin": [493, 2.767763964], "place": [397, 2.18510432], "uses": [568, 2.672073483], "bit": [87, 2.776167374], "turn": [557, 2.649516136], "rest": [456, 2.714798428], "important": [272, 2.00395167], "sleep": [494, 2.961023787], "hours": [266, 2.602320445], "sports": [501, 3.609498527], "head": [249, 2.687399454], "possible": [405, 2.272965676], "follow": [220, 2.642108695], "online": [378, 2.714798428], "activity": [46, 2.986732144], "believe": [79, 2.595253277], "liver": [316, 3.007785553], "provide": [430, 2.42118162], "large": [297, 2.418227408], "difference": [171, 2.771956842], "news": [368, 2.864330162], "cleansing": [129, 3.744417845], "features": [215, 3.120263536], "page": [382, 2.911508722], "self": [475, 2.62382665], "real": [441, 2.272965676], "did": [168, 2.164294321], "physical": [394, 2.687399454], "performance": [390, 3.126233703], "speed": [500, 3.516839697], "design": [163, 3.175323313], "analysis": [59, 3.068077783], "studies": [512, 2.33072451], "using": [569, 1.829130556], "data": [157, 2.498024325], "21": [27, 3.102563959], "mean": [338, 2.683545885], "27": [33, 3.309753582], "rate": [438, 2.873589487], "associated": [70, 2.714798428], "increased": [279, 2.797490144], "range": [437, 2.763588592], "significant": [486, 2.767763964], "men": [345, 3.102563959], "based": [78, 1.902106097], "reported": [452, 2.945910149], "function": [227, 2.609437912], "history": [261, 2.581267035], "shown": [483, 2.718774576], "study": [513, 2.203972804], "association": [71, 3.090935921], "used": [565, 1.698877855], "included": [275, 2.911508722], "2009": [16, 3.288400458], "review": [461, 2.668278412], "22": [28, 3.132239727], "24": [30, 2.897119985], "available": [73, 2.336144577], "26": [32, 3.32424659], "national": [359, 2.656978857], "25": [31, 2.726774619], "current": [155, 2.675883012], "form": [224, 2.298806907], "problem": [420, 2.451213907], "groups": [242, 3.120263536], "product": [423, 2.892369382], "higher": [260, 2.638425449], "similar": [487, 2.418227408], "simple": [488, 2.47590652], "response": [455, 2.797490144], "ability": [39, 2.523915739], "various": [572, 2.645805557], "terms": [529, 2.832581464], "area": [66, 2.74705929], "specific": [499, 2.523915739], "version": [574, 2.916351347], "standard": [502, 2.850599969], "effect": [194, 2.377759459], "complementary": [142, 3.571398681], "times": [539, 2.137204628], "american": [58, 2.613015734], "40": [37, 2.801809805], "given": [233, 2.383441292], "low": [327, 2.311982328], "approach": [64, 2.706893249], "non": [370, 2.609437912], "longer": [321, 2.47590652], "number": [373, 2.141668921], "create": [154, 2.498024325], "allow": [55, 2.810505512], "addition": [51, 2.771956842], "compared": [141, 2.873589487], "includes": [276, 2.832581464], "offer": [374, 2.742969305], "practice": [410, 2.46967597], "considered": [147, 2.780395711], "known": [295, 2.15518264], "potential": [407, 2.560647748], "power": [408, 2.66449769], "needed": [364, 2.613015734], "issues": [287, 2.660731207], "alternative": [56, 2.718774576], "theory": [531, 3.281382885], "need": [363, 1.713349888], "test": [530, 2.763588592], "size": [492, 2.976369357], "points": [402, 3.085172216], "benefit": [80, 2.801809805], "second": [473, 2.460402333], "true": [554, 2.62382665], "course": [153, 2.33072451], "access": [41, 2.878251501], "takes": [521, 2.722766598], "role": [464, 2.699050071], "doctors": [176, 2.776167374], "really": [442, 2.074616783], "going": [235, 2.051865026], "share": [481, 2.722766598], "learning": [302, 3.150477315], "ve": [573, 2.039669753], "evidence": [202, 2.47590652], "recent": [444, 2.553868061], "york": [599, 2.966112856], "view": [576, 2.935959818], "fact": [209, 2.23541433], "actually": [47, 2.187443502], "type": [559, 2.460402333], "experience": [205, 2.250266088], "later": [298, 2.504434603], "months": [356, 2.63475572], "business": [97, 2.814881887], "big": [84, 2.369296785], "central": [113, 3.281382885], "cases": [106, 2.722766598], "line": [310, 2.66449769], "room": [465, 2.897119985], "case": [105, 2.314638372], "state": [505, 2.553868061], "taking": [522, 2.31730149], "means": [339, 2.240340448], "took": [542, 2.784642001], "ll": [318, 2.100041881], "things": [536, 1.960093355], "products": [425, 2.498024325], "colon": [134, 3.837508268], "look": [322, 2.055963393], "job": [288, 2.931021537], "didn": [169, 2.656978857], "told": [541, 2.726774619], "asked": [69, 2.887641241], "thought": [538, 2.543783942], "started": [504, 2.62382665], "tell": [527, 2.755289789], "story": [509, 2.832581464], "family": [210, 2.540445041], "world": [594, 1.954511945], "live": [315, 2.672073483], "understand": [561, 2.602320445], "friends": [226, 3.132239727], "won": [589, 2.605872846], "ways": [582, 2.336144577], "homeopathic": [263, 4.054572774], "law": [299, 3.43204316], "public": [431, 2.533800498], "medicine": [342, 2.143908564], "works": [593, 2.377759459], "play": [399, 2.841550134], "homeopathy": [264, 3.766890701], "ago": [53, 2.7889064], "scientific": [471, 2.74705929], "causes": [108, 2.906689436], "symptoms": [518, 2.537117251], "lack": [296, 2.855155786], "complete": [143, 2.819277498], "industry": [281, 3.002480501], "drugs": [186, 2.846064814], "looking": [323, 2.355349557], "production": [424, 3.120263536], "cell": [110, 3.260620894], "placebo": [398, 3.534697314], "science": [470, 2.460402333], "open": [379, 2.550495377], "cells": [111, 2.986732144], "right": [462, 1.958229421], "thing": [535, 2.304056263], "issue": [286, 2.88293535], "government": [239, 3.220346995], "man": [334, 2.986732144], "shows": [484, 2.763588592], "reason": [443, 2.560647748], "strong": [511, 2.74705929], "worth": [595, 2.797490144], "attention": [72, 2.841550134], "action": [44, 2.859732453], "recommend": [446, 2.976369357], "herbs": [258, 3.392197252], "let": [304, 2.293584963], "little": [314, 2.070441412], "therapy": [534, 2.901893264], "build": [94, 2.897119985], "free": [225, 2.203972804], "according": [42, 2.255266099], "000": [0, 2.454267345], "comes": [136, 2.374930602], "america": [57, 3.274414216], "immune": [271, 2.976369357], "pain": [383, 2.605872846], "healing": [250, 2.906689436], "properties": [429, 3.295467625], "inflammation": [282, 3.490637324], "active": [45, 2.837055744], "clear": [130, 2.53049471], "nature": [361, 2.911508722], "powerful": [409, 2.7889064], "anti": [62, 2.950922691], "building": [95, 2.892369382], "example": [203, 2.100041881], "called": [99, 2.070441412], "remedies": [450, 3.407945609], "2012": [19, 3.24028121], "easy": [189, 2.47590652], "minutes": [350, 2.784642001], "common": [137, 2.255266099], "end": [197, 2.199222202], "traditional": [546, 2.806148207], "chinese": [121, 3.508029067], "say": [468, 2.10219011], "popular": [403, 2.710838027], "herbal": [257, 3.54374715], "level": [305, 2.433086523], "order": [380, 2.463484], "brain": [93, 2.564054907], "development": [167, 2.892369382], "2008": [15, 3.33157263], "series": [477, 2.955960485], "particular": [384, 2.771956842], "safe": [467, 2.921217536], "personal": [392, 2.706893249], "isn": [285, 2.369296785], "quite": [436, 2.780395711], "network": [366, 3.309753582], "designed": [164, 2.819277498], "city": [126, 3.162823151], "today": [540, 2.424144585], "step": [507, 2.878251501], "social": [496, 2.74705929], "school": [469, 2.730798769], "major": [330, 2.679707108], "idea": [269, 2.439092547], "center": [112, 2.683545885], "post": [406, 2.501224328], "education": [193, 3.31697383], "came": [100, 2.823692516], "children": [120, 2.88293535], "eye": [206, 3.226947679], "march": [336, 3.629106999], "2019": [26, 3.353878387], "trial": [552, 3.376693065], "travel": [548, 3.649107665], "companies": [139, 2.981537327], "talk": [523, 2.823692516], "probably": [419, 2.598780618], "future": [228, 2.714798428], "service": [478, 2.931021537], "website": [583, 2.950922691], "twitter": [558, 3.369030192], "chiropractic": [122, 4.778491613], "2006": [13, 3.580788421], "therapeutic": [532, 3.465104022], "chiropractors": [123, 4.912023005], "practitioners": [412, 3.338952737], "reading": [440, 2.971227957], "2016": [23, 3.073743521], "2018": [25, 3.247015242], "canada": [101, 3.679879324], "claims": [127, 3.102563959], "original": [381, 3.013118899], "century": [114, 3.1690537], "mental": [346, 2.981537327], "modern": [353, 2.801809805], "et": [201, 3.755591146], "al": [54, 3.744417845], "key": [291, 2.714798428], "therapies": [533, 3.43204316], "anxiety": [63, 3.162823151], "list": [313, 2.448169765], "pretty": [415, 2.911508722], "links": [312, 3.175323313], "site": [491, 2.976369357], "facebook": [208, 3.465104022], "google": [237, 3.376693065], "acupuncture": [48, 3.862200881], "built": [96, 3.120263536], "video": [575, 3.018480842], "sign": [485, 3.200802399], "user": [566, 3.400040429], "2013": [20, 3.220346995], "50": [38, 2.679707108], "link": [311, 3.144361088], "archived": [65, 4.415586119], "image": [270, 3.415913778], "taken": [520, 2.722766598], "child": [119, 3.288400458], "away": [75, 2.448169765], "cold": [133, 3.1690537], "easily": [188, 2.759430582], "got": [238, 2.672073483], "goes": [234, 2.679707108], "field": [218, 3.062443965], "coffee": [132, 3.590267165], "december": [161, 3.619254702], "2007": [14, 3.415913778], "2015": [22, 3.079441542], "2011": [18, 3.400040429], "naturopathic": [362, 4.4830274], "blog": [89, 3.338952737], "house": [267, 3.068077783], "pay": [388, 2.921217536], "love": [326, 2.776167374], "memory": [344, 3.207274913], "oil": [375, 3.051270665], "oils": [376, 3.837508268], "weeks": [585, 3.002480501], "press": [413, 3.31697383], "london": [319, 3.669516537], "users": [567, 3.281382885], "company": [140, 2.675883012], "left": [303, 2.710838027], "war": [579, 3.801576259], "buy": [98, 2.921217536], "market": [337, 2.926107522], "retrieved": [459, 4.101092789], "drops": [184, 3.789880219], "2014": [21, 3.102563959], "return": [460, 3.181632483], "2017": [24, 3.253794929], "animal": [60, 3.400040429], "cbd": [109, 5.536177315], "games": [230, 3.837508268], "search": [472, 2.850599969], "edit": [192, 3.63905733], "pmid": [400, 4.352407217], "media": [340, 2.961023787], "game": [229, 3.392197252], "bike": [85, 4.530655449], "price": [417, 3.309753582], "draxe": [183, 5.536177315], "phone": [393, 3.508029067], "medline": [343, 5.411014172], "doi": [179, 3.926739402], "software": [497, 3.744417845], "bikes": [86, 4.912023005], "wordpress": [590, 4.778491613]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_hobbies_and_leisure.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_hobbies_and_leisure.json deleted file mode 100644 index 006fd9f..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_hobbies_and_leisure.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.691761179, "feature_log_probs": [-6.928514711, -6.751745381, -6.90505303, -7.040620766, -7.031697548, -7.145818338, -7.094512454, -7.087777323, -7.023924601, -7.210652901, -7.142229889, -7.290241373, -6.977909659, -7.149222131, -7.379924472, -7.388606366, -7.273724681, -7.32722635, -7.344684249, -7.343697564, -7.326162933, -7.207784383, -7.21991788, -7.262415876, -7.248816405, -7.260286466, -7.177760967, -7.196032418, -7.061455923, -7.294821956, -7.213534152, -7.26462208, -7.040029976, -7.092776624, -7.2084333, -7.244498225, -7.235009352, -7.2965405, -6.987647584, -7.276077028, -7.297828711, -7.320138252, -7.223729309, -6.929953177, -7.298530432, -7.132741197, -7.215405594, -6.981543672, -6.961443961, -7.099179579, -7.067578672, -7.268682598, -7.208065147, -7.224169727, -7.292920927, -7.245897635, -7.41140983, -7.088482378, -7.129505598, -6.926308833, -7.180519648, -7.033698468, -7.318404248, -7.24851808, -7.33486805, -7.063107701, -7.354368, -7.250058329, -7.251036252, -7.253580033, -7.007243159, -7.092203706, -7.109587305, -7.256567321, -7.180026118, -7.254050974, -7.161544713, -7.020909297, -6.75317445, -7.207625053, -7.21500471, -7.29867703, -6.85652701, -7.150922915, -7.114812471, -7.081468571, -7.218542459, -7.259914877, -7.202025077, -7.270462173, -7.108983374, -7.202833136, -6.944690935, -7.306992858, -7.125124094, -7.383456133, -7.395196033, -7.322704192, -7.02882582, -6.944318416, -6.899624301, -7.367560493, -7.227844791, -6.670213867, -6.937772271, -7.260656848, -7.214377577, -7.236153472, -7.205751607, -7.237684078, -7.119870389, -7.344209647, -7.087470778, -7.175977565, -7.099191448, -7.241775786, -6.999170823, -7.233369838, -7.253419179, -7.201914874, -7.338226621, -7.244789546, -7.140834313, -7.333087464, -7.12001025, -7.121809806, -6.749275794, -7.285281075, -6.893282449, -7.211403907, -7.189056195, -6.989188676, -7.114885517, -7.138514757, -7.16969156, -7.177829775, -7.366348823, -7.254079834, -7.254829241, -6.989448134, -7.182444094, -6.871979116, -7.066271484, -7.202572083, -7.303678732, -7.181823903, -7.396195484, -7.183341579, -7.247827594, -7.265202361, -7.454753862, -6.527559074, -6.7250264, -7.088153877, -6.916221635, -7.169562335, -6.02123396, -6.664368689, -6.886859223, -6.960733744, -7.334872197, -7.249770739, -7.381788825, -7.142599665, -6.725648477, -6.998713988, -7.012621052, -7.203560307, -7.28184632, -7.178183221, -7.284866641, -7.073288499, -7.16651646, -7.200033388, -6.961202403, -6.984658775, -7.163292623, -7.182707689, -7.183742839, -7.161648699, -7.18111259, -7.302933665, -6.939363175, -7.282839298, -6.969305648, -6.826485124, -7.249855855, -7.298360435, -7.07054637, -7.099363333, -5.558909825, -6.119625204, -6.351144617, -7.197196058, -7.432212284, -6.765715286, -7.209578453, -7.152629085, -7.131179258, -7.259472971, -7.165347459, -7.310213125, -7.057294344, -7.277330373, -7.366789266, -6.383441891, -7.16319045, -7.326991609, -6.453789191, -7.283881569, -7.11998341, -7.210739572, -7.333181589, -7.127270191, -7.182914215, -7.220789946, -7.224279998, -7.257821019, -7.054774746, -7.270916689, -7.144675653, -7.253200615, -7.209509951, -6.82487849, -7.279662915, -7.127823091, -7.064233201, -7.431933254, -7.027533778, -7.211422933, -6.908276483, -7.218912902, -7.04391786, -6.989469001, -7.347585681, -7.061050686, -7.113493864, -7.204966399, -7.238211861, -7.451078149, -7.160323294, -7.310417533, -6.728863789, -7.147505674, -7.293109906, -6.931483022, -6.93718686, -7.139109631, -7.181577688, -7.197235201, -7.260275612, -7.147960021, -7.182936062, -6.99561918, -7.27991217, -6.989153869, -7.152185195, -7.266517864, -7.154348929, -7.197593855, -7.355652165, -7.258410659, -7.356884869, -7.181928391, -6.980317871, -7.078519838, -7.284144992, -7.217285943, -7.249169067, -7.083650847, -6.873537576, -7.104552218, -7.239627728, -7.342700061, -7.317053865, -7.167823183, -7.298406917, -7.241749715, -7.344996937, -7.214968437, -7.162709509, -6.891588959, -7.231212126, -6.970258223, -7.17147189, -7.160856705, -7.065951665, -7.379488086, -7.1314147, -7.15649699, -7.283212546, -7.167826879, -7.213516628, -7.277827024, -7.347185328, -7.324766755, -7.192126524, -6.746844987, -7.256194411, -7.202372454, -7.156270126, -7.391122715, -7.32695536, -6.658088819, -6.92948059, -7.231908718, -7.152891751, -7.204401851, -7.359210108, -7.270874765, -7.24379271, -7.263871978, -7.221785158, -7.244147079, -7.18588258, -7.304215954, -7.255314043, -7.042514024, -7.283114039, -7.030790357, -7.121660515, -7.141186769, -7.126460666, -7.185313425, -7.26689371, -7.29626339, -7.310114267, -7.331951938, -6.887795954, -6.955226136, -7.158822347, -7.233947378, -6.801155605, -7.16736479, -6.903532597, -7.281897063, -7.250954367, -7.169805908, -6.93858557, -6.91293867, -6.945004072, -5.910224256, -6.037785112, -7.399126843, -6.940415737, -6.560165537, -7.247620334, -7.136418918, -7.061178615, -7.272705606, -6.740450372, -7.045586441, -7.108501964, -7.262506024, -7.131318598, -7.130410757, -7.129606162, -6.804401689, -7.199769628, -7.434632061, -7.228747809, -6.901666531, -6.646026433, -7.151096723, -7.394105076, -7.125458672, -7.292021269, -7.146111346, -7.205572192, -6.969115854, -7.188185545, -7.215903921, -7.278095074, -6.905583921, -7.152307302, -7.401660817, -7.314491419, -7.186923991, -7.242791818, -7.212639585, -7.221663353, -7.29973135, -6.970049523, -7.165109363, -7.122786612, -7.011637687, -7.432239549, -7.368934214, -7.145609071, -7.176881018, -7.270485221, -7.282309899, -7.12578695, -7.046984131, -7.040550265, -7.146950415, -7.246928661, -7.109633946, -6.985710594, -6.79183137, -7.150305303, -7.144349006, -7.196850229, -6.969175598, -7.143827221, -7.114181417, -7.211801199, -7.072301082, -7.268215708, -7.267790872, -7.112430518, -7.040987059, -6.824390364, -7.037747515, -7.108386757, -7.002000435, -6.683544943, -7.365252115, -6.870909716, -7.141044391, -7.170719773, -7.060234859, -7.192252567, -7.163913589, -7.442348254, -6.970694483, -7.263129018, -7.019282213, -6.912507273, -6.928978849, -6.961710439, -7.115333753, -7.031521494, -7.196827198, -7.399698683, -7.250229436, -7.181478574, -7.023026823, -7.01245773, -7.14512732, -7.165693626, -6.863828207, -7.148146001, -6.87384761, -6.668403001, -7.246378001, -7.075237632, -7.162488351, -7.15839245, -6.830097007, -7.094464074, -7.177755801, -6.920563251, -7.410869552, -7.224388404, -6.541781414, -7.120182471, -7.09182498, -6.905572696, -7.193427204, -7.204282494, -7.210385537, -7.052606853, -6.529795402, -7.178022722, -7.086628873, -7.20892524, -7.322027153, -7.16685623, -7.199095765, -7.415530308, -7.274985529, -6.928925691, -7.411060562, -7.237629923, -7.247480228, -7.201898404, -6.936446209, -7.133770884, -7.188887522, -7.267578675, -7.192282884, -7.197427433, -7.147462812, -6.816723914, -7.36678707, -6.572832941, -7.296467872, -6.920688563, -7.362082808, -6.660317804, -7.284129182, -7.249812065, -7.15619258, -7.065543332, -7.242492196, -7.329666839, -7.384297128, -7.20389017, -7.244963326, -6.892140047, -7.030457541, -7.241214694, -7.136512477, -7.258943095, -7.160848354, -6.856087006, -7.000793102, -7.008115748, -6.931826687, -7.139303759, -7.180677125, -7.159285194, -6.84796409, -7.151034025, -7.24380864, -6.799130785, -7.12003262, -7.255972057, -7.257772776, -7.141695141, -7.18021507, -7.099870368, -7.034378776, -7.191120111, -7.351302102, -7.326995977, -7.289681187, -7.143404491, -6.989081993, -7.191126579, -7.130594154, -6.991885363, -7.022701193, -7.201018366, -7.131265582, -7.22760351, -7.326812865, -7.393179925, -6.767135358, -6.853955247, -6.183815725, -6.350938962, -7.290356747, -6.977288364, -7.101225256, -7.163500785, -7.106398918, -7.229441928, -7.193229551, -6.986806192, -7.412931277, -7.203906324, -7.303982417, -7.412196931, -7.263550716, -7.266236117, -7.454753862, -7.182417825, -7.186218499, -7.097434988, -7.266267064, -7.046179943, -7.125999139, -7.183585402, -7.294712095, -7.338419296, -7.357418208, -7.293501685, -7.379542388, -6.96119949, -6.811778755, -7.152751368, -7.221446875, -7.322604949, -7.339374898, -7.184137589, -7.330587485, -7.313522439, -7.212730396, -7.278214072, -7.277135168, -7.231328113, -7.087211321, -7.012919567, -7.075442086, -7.115711168, -7.174250539, -6.739416531, -7.361218831, -7.043087062, -7.251779149, -7.369635818, -6.932194505, -7.315548635, -7.023669193, -7.010894046, -7.233698815, -7.08188657, -7.148774868, -7.40649793, -7.207111757, -6.964377584, -7.205674257, -7.149246075, -7.135167782, -7.006365605, -7.089373149, -6.947304716, -6.968146181, -5.862511743, -6.171353258, -6.937498356, -6.929597802, -7.154997249, -7.146246101, -6.912630238, -6.382851171, -6.932885854, -5.878643397, -7.053736853, -7.252282632, -6.949715845, -7.30511897, -7.189140536, -7.288568977, -7.40210144, -7.131983721, -6.821024591, -7.006338439, -7.233620451, -7.191047322, -6.606140474, -7.167769557, -7.243278187, -7.213546764, -7.217925946, -6.663126495, -7.03612498, -6.695799054, -7.199104167, -6.897395041, -7.061438956, -7.305819387, -7.257839941, -7.226441068, -6.808227584, -7.235578956, -6.810369435, -6.93423409, -7.182133961, -7.28779263, -7.150977591, -7.163395286, -6.632235702, -6.892687467, -7.01083716, -7.197733003, -7.171852918, -7.370674593, -7.001531205, -7.231960648, -6.258643184, -7.264913918, -7.020259405, -7.054331379, -7.375741516, -7.259235159, -7.092712853, -7.182156303, -7.110157362, -7.139900193, -7.276077475, -7.029057942, -7.156108814, -7.317413439, -7.350040153, -7.063186521, -7.205133904, -7.352144269, -7.246385088, -7.062274632, -7.136026498, -7.454753862, -7.278270229, -7.162297739, -7.283804829, -6.871001444, -6.779029783, -7.119728682, -7.01514623, -7.123232233, -6.802485942, -6.491151691, -7.231434654, -6.75360711, -7.035796565, -7.024070205, -7.205672785, -7.158057216, -7.192589849, -7.13314866, -7.127784094, -7.209237286, -7.213609604, -7.070062496, -6.866729197, -6.949559721, -7.298189912, -7.158553309, -7.126091059, -7.142022106, -7.185097365, -7.262549526, -7.246465393, -7.198234462, -7.154163369, -7.227076378, -7.16507386, -7.213020212, -7.307915023, -7.190884223, -7.192520078, -7.297644994, -6.611600499, -7.162112453, -7.120694508, -7.326780861, -7.35724242, -6.38594668, -7.148613793, -7.005749736, -7.118639065, -6.473115625, -7.219569796, -7.196918693, -7.305918346, -7.208521874, -7.286224664, -7.303179528, -7.377518172, -7.002170107, -7.281635973, -7.265307077, -7.304557632, -7.095359924, -7.203634336, -7.086678598, -7.344126408, -6.946993854, -7.118128332, -7.073258606, -7.142177628, -7.211202836, -7.094857641, -7.071763976, -7.019307699, -6.9905728, -7.139084435, -7.336929776, -7.096886578, -7.205477456, -7.200091021, -7.087469952, -7.191081565, -6.908424011, -6.882707858, -7.174095176, -7.202485752, -7.371860264, -7.23226167, -6.979044477, -7.3189366, -7.158588559, -7.258219884, -7.219407219, -7.187092124, -7.239664673, -7.263391331, -7.085237063, -7.251011266, -7.42226252, -7.154035662, -7.046161805, -6.891601489, -7.268134698, -7.14256169, -7.229135504, -7.319906673, -6.764242446, -7.047085921, -7.213352922, -6.464557689, -6.64505641, -6.572110065, -6.307668422, -6.338559675, -6.604399128, -7.165258519, -7.119561104, -7.123459537, -7.082784527, -7.243411944, -6.971658753, -7.266608635, -7.126500242, -7.303531547, -7.15141595, -7.420787612, -7.434432913, -7.356904788, -7.159642683, -7.126672246, -6.788131939, -7.213359404, -7.366482775, -7.135056467, -6.997872807, -7.226730683, -7.275992445, -7.033842772, -7.044264144, -7.339460635, -7.229684976, -6.905051681, -7.210137605, -7.413214628, -7.205141613, -7.175136761, -7.311397433, -7.135578064, -6.969563055, -7.332914854, -7.124747084, -6.988003739, -7.148148251, -6.895012378, -7.318524116, -7.100942599, -6.731110505, -7.016263652, -7.172382629, -7.215919173, -7.100919686, -7.144638786, -7.17462761, -7.276083912, -7.237621363, -7.351160031, -7.227309952, -7.048817017, -7.103870715, -7.233158192, -7.308282266, -7.405818271, -6.949341566, -7.383480393, -7.167040716, -7.203541296, -7.380171568, -7.222687425, -7.123304019, -7.256712057, -7.296254889, -7.213744767, -6.588004403, -7.454753862, -7.230092494, -7.309638955, -7.081452666, -7.05924042, -7.0070142, -6.206655353, -7.087557699, -7.073864288, -6.72171723, -7.229943575, -6.799027398, -7.223719556, -7.037605301, -7.305378244, -7.18110595, -7.051780472, -7.371545863, -6.596271471, -7.055473107, -7.188104075, -7.216005679, -7.162106736, -7.247489895, -7.217950827, -7.029743982, -7.157018365, -7.281449812, -7.385649013, -7.217607494, -7.218105113, -7.31470935, -7.204637086, -7.175477584, -7.196419151, -7.156856816, -7.187450169, -7.326788912, -7.236232214, -7.277387177, -7.263694849, -7.104845196, -7.112436009, -6.913951825, -7.295384136, -7.060253672, -7.122091089, -7.024652714, -7.215045449, -7.306027028, -6.94287893, -7.278162917, -6.932096849, -6.989205771, -7.024072348, -6.818701009, -7.380495698, -7.173766208, -7.224636705, -6.905101874, -7.310592875, -7.319519974, -7.189539581, -7.292400628, -6.490859059, -6.968568337, -6.636123627, -6.515943813, -6.941947247, -7.426894662, -7.265590419, -7.301113029, -7.058721028, -7.286849967, -6.948169873, -7.219947877, -7.327024157, -7.102618259, -7.241965165, -7.079094773, -6.984380111, -7.231680004, -7.203184452, -7.011742679, -7.017810456, -7.293737751, -7.384810487, -7.078263797, -7.168579548, -7.199112193, -7.18943094, -7.330453501, -7.155648286, -6.499133446, -7.08752947, -7.29006155, -6.966646965, -7.450850866, -7.230862568, -7.391976345, -6.848431449, -7.154514385, -6.90965106, -7.182615216, -7.228930084, -7.087386059, -7.2469283, -7.291675073, -7.008629681, -7.139248859, -7.26745265, -6.635862631, -6.558291022, -7.167648514, -7.039348963, -6.774963023, -6.947280038, -7.332163003, -7.155270052, -6.678458256, -7.19440009, -7.247022223, -7.072820451, -7.130139133, -7.065749945, -7.058217047, -7.29170699, -7.402713959, -7.291802908, -7.151043407, -6.803390951, -7.327782246, -7.212001228, -6.954499177, -7.129202889, -7.027667012, -6.81040459, -7.035359163, -7.240309189, -7.188169115, -7.352707239, -7.238225926, -6.914460699, -7.257266671, -7.205113529, -7.232741392, -6.301915265, -7.182001559, -7.192021761, -7.248859195, -7.291290815, -7.215174199, -7.117296178, -6.895238685, -7.14369449, -7.289809052, -6.671721208, -7.169076581, -7.241225862, -7.14216071, -7.095426568, -7.185541903, -7.310755053, -7.035454086, -7.069271444, -7.239489045, -7.056423416, -6.916003731, -7.029525194, -7.166895871, -7.143737652, -7.24770961, -7.124090669, -7.049541746, -7.241872026, -7.058407296, -7.28714372, -7.114448136, -7.146465597, -7.269648155, -7.14914219, -7.41084481, -6.856326898, -7.21028211, -7.192846914, -7.183707617, -7.370465765, -7.273426658, -7.019947565, -7.2411704, -7.000895499, -6.912951193, -7.283757754, -7.241690436, -7.073956163, -7.05716159, -6.924245643, -7.152665525, -7.114625702, -7.169501352, -7.327943942, -7.144605446, -7.147790342, -7.068132225, -7.210918365, -7.439947323, -6.871178593, -7.239922503, -7.141657323, -7.117989867, -7.244355151, -7.324403336, -7.181268117, -7.053581773, -7.265197671, -7.320726728, -7.108715346, -7.413235182, -7.410719118, -6.92571506, -6.893590187, -6.763838396, -7.214848522, -7.133465267, -7.199860891, -6.950968911, -7.248040066, -6.966725215, -7.209808991, -7.058175786, -7.094487059, -7.047267858, -6.962414383, -7.000248162, -7.303211725, -6.688763746, -7.195801566, -7.244255933, -7.012924589, -7.174274271, -6.51683778, -6.994688263, -7.217933662, -7.20803762, -6.746485199, -7.171853787, -7.220080567, -7.320856139, -6.970742071, -7.103445879, -7.274882115, -7.126051859, -7.258184254, -7.260445879, -7.113146896, -7.204735463, -7.244755047, -7.178769662, -7.19825616, -7.304050946, -7.221871165, -7.270069159, -7.158468336, -7.27689309, -7.206029815, -7.267773626, -6.419678925, -6.788434468, -7.167312319, -7.197531948, -7.090907192, -7.138996221, -6.685172393, -7.085213591, -7.247754404, -7.358117189, -7.268619242, -7.232418985, -6.595254445, -7.06870977, -6.322424429, -6.948768527, -6.9365955, -6.955386942, -7.339046704, -7.297013256, -7.138793504, -7.298463817, -6.529211604, -7.072079272, -7.322070854, -7.124287695, -7.138926485, -6.992068781, -6.610481876, -7.069963017, -7.026999158, -7.319218234, -7.148748593, -6.877440088, -7.07097574, -6.985218235, -7.146044706, -7.145150516, -7.173375062, -6.960495435, -6.840468413, -7.193842971, -7.061834946, -7.137352337, -7.027653817, -6.866924803, -7.311281798, -7.450475903, -7.303590224, -6.663172873, -7.244856706, -6.960637646, -7.088177608, -6.626128813, -7.103767918, -7.240953744, -7.288255949, -7.263449993, -7.274589384, -7.322149675, -7.208088648, -7.284045077, -6.725509831, -6.697660663, -7.12314796, -7.091507424, -7.229812592, -6.787458132]}, {"log_prior": -0.694535106, "feature_log_probs": [-6.704717664, -6.623459477, -7.025069485, -7.002879925, -6.964908086, -7.089869894, -7.04334537, -6.960157949, -7.037042192, -7.09549732, -7.116819249, -7.130765952, -6.876604107, -7.207379605, -7.291299983, -7.318032192, -7.290073788, -7.178611394, -7.193496493, -7.191868934, -7.132314682, -7.127232441, -7.132078061, -7.043014921, -7.080894363, -7.098661239, -7.087332234, -7.140305804, -7.119782443, -7.148512546, -7.142495454, -7.202436293, -7.109777038, -7.04480569, -7.199231126, -7.197708974, -7.231439489, -7.20145943, -6.967080302, -7.27255574, -7.248896737, -7.292550888, -7.227738195, -7.461235098, -7.287317359, -7.083360218, -7.33402232, -7.463952662, -7.112027389, -7.155195678, -7.465366544, -7.361674506, -7.220313431, -7.287940175, -7.229300747, -7.314440054, -7.287128264, -7.471150423, -7.099764046, -6.904332881, -7.016202154, -6.889661525, -6.966015883, -7.230217304, -7.02433853, -7.113317761, -7.188819903, -7.178158326, -7.236079658, -7.201176925, -6.874805568, -6.953766191, -7.124048688, -7.1760263, -7.219610957, -7.227212125, -7.403798304, -7.449140768, -7.45152271, -7.289747803, -7.228642005, -7.15498411, -7.470709567, -7.262655606, -7.077476528, -7.004753569, -7.221924782, -7.009249369, -7.10837261, -7.231027909, -7.140908135, -7.220542657, -6.945601918, -7.108032402, -6.837353725, -7.082869439, -7.134029866, -7.159524848, -7.324525041, -7.003688185, -6.908443811, -7.179627371, -7.063627891, -7.469001064, -6.708399783, -7.18996312, -7.141583812, -7.075839371, -7.106784516, -7.21141131, -7.46707481, -7.255343118, -7.096532732, -7.098621354, -7.090004686, -7.026398773, -7.026316881, -7.208038339, -6.951006352, -6.974614186, -7.210407567, -7.146441301, -7.136561706, -7.194175904, -6.991917386, -7.270037858, -7.471150423, -7.234267517, -6.961106398, -7.059740494, -7.11912611, -6.952376622, -7.332666973, -6.981307331, -7.101577983, -7.140323786, -7.031777589, -7.150328064, -7.166992071, -6.790676617, -7.183645043, -7.227031288, -7.187078405, -7.144491861, -7.194057424, -7.200280623, -7.261296102, -7.032593323, -7.242103894, -7.129700268, -7.361862495, -6.649568944, -6.830263496, -7.28152706, -6.823337103, -7.237012458, -6.815145614, -7.091412565, -7.029568113, -6.929241899, -6.746103956, -7.124544777, -6.967329599, -7.309240727, -6.880231614, -7.471150423, -6.603331263, -6.777854618, -7.273245846, -7.085348756, -7.121292021, -7.09503364, -7.25660359, -7.18403568, -7.405081994, -7.471150423, -7.351066556, -7.059038352, -7.204769651, -7.229230211, -6.952988747, -6.909270417, -7.085623259, -6.563610976, -7.208740892, -6.931267809, -7.108235571, -7.073374388, -6.839019903, -7.013952255, -7.281926611, -7.348932178, -7.449252879, -7.3092943, -7.026032393, -7.361064352, -6.718884264, -7.103574485, -6.972952372, -7.076173257, -7.242017258, -6.821382414, -6.906336069, -7.109436014, -6.974705023, -7.104819966, -7.398521772, -7.240764909, -7.208520132, -7.130446995, -7.432552135, -7.119857849, -7.131333683, -7.075425526, -7.190113483, -7.181154117, -7.164122889, -7.17752928, -6.853748721, -7.200659463, -7.091602472, -7.258991262, -7.255310482, -6.944329896, -7.045996042, -7.220934294, -7.139558654, -7.297845224, -6.865630475, -7.104147412, -7.211991681, -7.116420899, -7.084644694, -7.063554941, -7.165303422, -7.09514097, -7.162571542, -7.280761897, -6.923147883, -7.287393696, -7.215582951, -7.090005528, -7.215015028, -7.357359148, -7.244857578, -6.875113481, -6.947090732, -7.267873288, -7.059561252, -7.209690376, -7.237209716, -7.065469288, -7.000586854, -7.386618006, -6.984634649, -6.639701174, -7.274418254, -7.221212256, -7.202302114, -7.137006427, -7.170364519, -7.1512893, -7.177283203, -7.233886967, -7.452621842, -7.074836036, -7.147924496, -6.899191234, -7.128703504, -7.343075052, -6.995503904, -7.321486836, -7.133975785, -7.128754505, -7.242980543, -6.955384687, -7.03679316, -7.187656311, -7.150052459, -6.939825976, -7.214393698, -6.898044501, -7.156468569, -6.751301131, -7.069785183, -7.112728349, -7.163127362, -7.025001337, -7.378016581, -7.248951939, -6.967843326, -7.096248265, -7.162263133, -7.135009846, -7.154104445, -7.04116718, -7.112628258, -7.293152076, -7.072716671, -7.154175528, -6.523176335, -6.998636928, -7.170479979, -6.602019205, -6.876359818, -7.097590057, -7.072449186, -7.016463278, -7.136248506, -7.258684168, -7.129298523, -7.12007859, -7.170777797, -7.215121898, -7.234226905, -7.149793688, -7.246568132, -7.354710811, -7.195214523, -6.83300092, -7.118560458, -7.217143108, -7.094749549, -7.214801701, -7.211676037, -7.017956642, -7.009963175, -7.051433478, -6.736837498, -6.916014772, -7.182800007, -7.29589017, -6.720265731, -7.110652624, -7.175658304, -7.193999909, -7.15206237, -7.219625383, -7.293341638, -6.840297977, -6.875820298, -7.20966447, -7.226228754, -7.180237502, -6.953357839, -6.43392655, -7.218876184, -7.084701098, -7.050326032, -7.232918703, -7.458613167, -7.471150423, -7.328849885, -7.166800283, -6.984794212, -7.136409818, -7.115222917, -6.911782434, -6.917086246, -7.02031872, -7.323059715, -6.823186607, -7.37056811, -7.193155727, -7.072042318, -7.087831031, -7.149740242, -7.075271904, -7.169497275, -7.141868383, -7.310734254, -7.270037009, -6.987057035, -6.752486534, -6.951400648, -7.094317728, -7.113671102, -7.146956325, -7.28164698, -7.137827041, -7.134211546, -7.159682165, -7.471150423, -7.274045296, -7.374461641, -7.035097196, -6.768676511, -7.200143882, -7.143664264, -7.169674106, -7.179677594, -7.064446915, -7.141521819, -6.761924122, -7.299930927, -7.129657746, -7.139301105, -7.175025804, -6.863561634, -7.403543153, -7.292917759, -7.153800631, -7.277393103, -7.265974225, -7.203301035, -7.042331628, -6.77931685, -6.955657852, -7.319191663, -7.158420961, -6.923029384, -6.960139422, -7.134285591, -7.264608881, -7.14591868, -7.126314832, -7.056039548, -7.15112383, -6.774385964, -7.160823545, -7.265568571, -7.23319198, -7.137087976, -7.206641335, -7.183624233, -7.167152465, -7.092684736, -7.144319474, -7.239012249, -7.165297495, -7.358085258, -7.372608633, -7.185473951, -7.117332991, -6.996222228, -7.181166346, -7.228103564, -7.27858746, -7.231322967, -7.158277711, -7.322740207, -7.331795917, -7.260652862, -7.468386877, -7.107780072, -7.193026344, -7.356897209, -7.049522676, -6.966541364, -6.805173701, -7.208808434, -7.017327206, -7.357666199, -7.169692574, -7.161080674, -7.217808599, -7.398479279, -7.248926317, -6.73272319, -7.091633576, -7.275715248, -6.861654187, -7.471150423, -7.471150423, -7.231641121, -7.12961148, -7.06979612, -7.277423154, -6.945007428, -6.599554738, -6.927589975, -7.17949061, -7.261173126, -6.993441366, -7.060386115, -7.206159938, -7.134305582, -6.89997713, -7.041671398, -7.129514966, -7.191004654, -7.274983396, -7.116979146, -7.088572245, -6.658465402, -7.158912568, -6.605317352, -6.603980266, -6.888363676, -6.904659584, -6.730435222, -7.22981386, -7.121192453, -7.16939268, -6.872876014, -7.167198983, -7.090619512, -7.002529862, -7.128265323, -7.083433688, -7.070565693, -7.027879291, -7.214631058, -7.209902664, -7.135828114, -7.161119542, -6.989692729, -6.913205877, -7.459134061, -7.044258669, -6.798965396, -7.166843716, -7.212275455, -6.636765289, -7.289362694, -7.136525226, -6.767815366, -7.050192464, -7.163135245, -7.258651747, -6.916338371, -7.165949415, -7.119736922, -6.555897804, -7.138850458, -7.366594004, -7.439933033, -7.063552921, -7.098256228, -6.932832644, -6.705645106, -7.141092733, -7.022683659, -7.11159707, -7.307793651, -6.864256123, -7.315258594, -7.090396435, -7.14108182, -7.336824516, -7.378708963, -7.174728639, -7.255837963, -7.182912962, -6.873116916, -7.133892869, -7.356664191, -7.027690325, -7.194538055, -7.129088599, -6.879694457, -7.148031807, -7.141849376, -7.172121892, -7.191733192, -7.16049377, -7.022546549, -7.262734233, -6.788025656, -7.073300227, -7.191324089, -7.180338115, -6.915265253, -7.15343321, -7.268209686, -7.147738071, -6.962530578, -7.085431483, -7.202918576, -7.125393767, -6.958657349, -7.459085496, -7.153204198, -7.11449241, -7.146837454, -7.150228557, -6.906210083, -7.069123203, -7.115822575, -7.206776896, -7.149986862, -7.155714279, -7.225783211, -7.027570723, -6.987423804, -7.275959095, -7.352573531, -7.184401286, -6.539629999, -7.105452686, -6.984860563, -7.233592817, -7.074562076, -7.395613368, -7.061051846, -7.060994544, -7.263134833, -7.103499275, -6.936498179, -7.201905576, -6.939294302, -7.14864823, -6.976183093, -7.12468716, -7.090280834, -7.133278706, -6.99435819, -7.349144574, -7.471150423, -7.31163961, -7.430322127, -7.432030952, -6.820851303, -6.929494629, -7.137430249, -7.197394632, -6.508760558, -7.028398757, -7.384031334, -7.471150423, -6.95019252, -7.187033517, -6.992925562, -7.203203831, -7.071179607, -7.152007903, -7.178547221, -6.879432892, -6.775475833, -6.981556635, -7.118347561, -7.019644202, -6.508771525, -6.96090012, -7.15346243, -7.277276581, -7.181057236, -6.755535031, -7.12502634, -6.775441194, -7.194895761, -6.940570971, -7.105704781, -7.170527707, -7.169952736, -7.113246335, -6.728113244, -7.249309652, -6.787485834, -7.024184182, -7.120329777, -7.096103101, -7.116662457, -7.122705445, -6.369146926, -6.925978737, -6.888689955, -7.249198417, -6.999254548, -7.133648469, -7.320379564, -7.357603697, -7.423859061, -7.103941276, -7.250993726, -6.824642158, -7.125891696, -7.149555817, -7.141653806, -7.337418734, -7.032931886, -7.106337411, -7.178359806, -6.921389664, -6.809575857, -6.998710178, -6.935617861, -7.292364676, -7.180732573, -7.049624013, -7.097161559, -6.908592085, -7.201632965, -7.258855351, -7.233007508, -7.269423939, -7.187677777, -7.391660614, -7.142838201, -6.813105076, -7.014164513, -7.204220254, -7.060130982, -7.471150423, -6.946208099, -7.315892361, -6.97725993, -7.148318585, -7.089699311, -7.107334318, -6.55669605, -6.93877827, -6.90545462, -7.144860322, -7.316568165, -7.258213943, -7.290430912, -7.279718886, -7.24066453, -7.22301019, -7.240821927, -6.936937524, -7.095247046, -7.073958395, -7.201713584, -7.25239024, -7.044494886, -7.20947191, -7.040889055, -7.131241479, -7.465181954, -7.207887977, -7.145608032, -7.197242657, -6.541854649, -7.087716141, -7.066927163, -7.072163077, -7.020821577, -6.277437287, -6.956797815, -7.174313617, -6.978232876, -7.462960001, -7.010527804, -7.262811955, -7.240602254, -7.098723369, -7.153445977, -6.992028746, -7.249909434, -6.863384659, -7.134850136, -7.266082052, -7.224992046, -7.001305578, -7.224103455, -7.067136809, -6.966892206, -6.866830155, -7.281947795, -7.471150423, -7.064051938, -6.9488821, -6.895943477, -7.45011116, -7.193145824, -7.094809941, -6.907264989, -7.181695415, -7.032373742, -7.282160213, -7.083150634, -7.270047587, -7.211074249, -7.285982138, -7.326808484, -7.208949385, -6.823329223, -7.056560171, -7.103916903, -7.459231069, -7.071128585, -7.165114098, -7.140414071, -7.168965994, -7.128343045, -7.143981024, -7.183944609, -7.032451372, -6.911408023, -7.244953616, -6.808586055, -7.063212365, -7.065197843, -7.21144711, -6.768063329, -6.976451805, -6.996625501, -7.257262861, -7.384217512, -6.991055047, -7.149442759, -7.347492063, -7.430491928, -7.397871753, -7.235711125, -7.446862651, -7.133483988, -7.183635769, -7.221601404, -7.314243063, -7.13632195, -6.837816943, -7.151540308, -6.962513122, -7.004416635, -6.954597704, -7.0165678, -7.019796316, -7.040679435, -7.263465505, -7.148826767, -6.899224699, -7.054330884, -7.120261542, -7.023311183, -7.406471884, -7.236044705, -7.066719066, -6.987107656, -6.807613289, -7.04472166, -7.090356926, -6.856075052, -7.150601926, -7.26873235, -7.104561926, -7.341891498, -7.188237074, -7.470703477, -7.468081825, -6.986922862, -7.078996449, -7.010100625, -7.251715448, -7.006619644, -7.016793527, -7.393788409, -7.287774981, -6.96075725, -6.964395292, -7.104572436, -6.878538154, -7.33023621, -7.163217661, -7.260952454, -6.981414599, -7.04349155, -6.893791329, -7.220815042, -7.010070452, -6.937857214, -7.135357963, -6.893248285, -7.447004844, -6.982490841, -7.031536276, -7.224080073, -7.162180598, -6.867649615, -7.05320824, -7.213861056, -7.220637307, -7.229517793, -7.142173189, -7.16203218, -7.002049036, -6.95172146, -7.212204222, -7.116805649, -7.124410961, -7.200564333, -7.360323373, -7.35424287, -7.106828642, -7.086971603, -7.371247955, -7.14455377, -6.669000295, -6.981740553, -7.150879202, -6.613285549, -7.089806554, -6.7184964, -7.21242983, -7.072056373, -7.195067185, -7.128012045, -7.03428701, -7.219938328, -7.186675457, -7.108329935, -7.248031518, -7.224487968, -7.249559243, -7.049217122, -7.06755875, -7.276458182, -7.208545911, -7.252112798, -7.068135274, -7.196137116, -7.025231084, -7.184261285, -7.148953697, -7.207094518, -6.805881671, -7.076638724, -7.385539287, -7.19207974, -7.153177363, -7.060852424, -7.031878961, -6.941012689, -7.084305746, -7.0670874, -7.198915847, -7.106744412, -7.33675036, -7.309634421, -6.752221001, -7.055069649, -7.318880603, -7.065088786, -7.044921801, -7.226662587, -7.152780624, -6.948048766, -7.095723183, -6.903239233, -7.420496855, -7.420728867, -6.96707552, -7.224147277, -7.389295173, -7.166370438, -7.172586807, -7.080591447, -7.119805988, -6.804893502, -7.090953141, -7.10862381, -7.240818936, -7.009259944, -6.878147556, -7.248876975, -7.019942829, -7.258974927, -6.964666853, -7.253777754, -7.159642203, -6.975235434, -7.028810824, -7.112980332, -7.355484154, -6.86178931, -7.107145, -7.04797795, -7.337363122, -7.366831482, -7.232764572, -7.011157317, -6.855805735, -6.891499942, -7.021144141, -6.73091783, -7.202298517, -7.250333501, -7.229245994, -7.213178837, -6.93363943, -7.178709245, -7.11892286, -7.371451149, -7.46909604, -7.291277121, -7.372973358, -7.351220007, -7.130671043, -7.046453495, -7.225765496, -7.379553179, -7.180800793, -7.098150186, -7.422218061, -7.115203987, -7.139664315, -7.016415355, -6.923040774, -6.998306099, -7.007707107, -6.737696222, -7.047262791, -7.155170601, -7.304003905, -7.152791341, -6.991000559, -7.080710368, -7.345393774, -7.315522744, -7.263834384, -6.859965931, -7.265874868, -7.012006065, -6.630132547, -7.128065388, -7.271878527, -7.012768387, -7.197326517, -7.242345484, -7.169062282, -7.461189745, -7.147822575, -7.159060749, -7.052242458, -7.15323989, -6.92193135, -7.139293322, -7.231428262, -7.038519177, -7.227813247, -7.08483502, -7.124777963, -7.119437036, -7.202952842, -7.130983139, -7.26946478, -7.267092491, -7.456720337, -7.200854967, -7.190101545, -7.163263916, -6.812717625, -6.936471624, -7.052712493, -6.845583386, -6.952200673, -7.084889787, -6.987490192, -7.222786886, -7.110462907, -7.410492959, -7.13664523, -7.088607507, -7.127300089, -6.827601033, -7.096427485, -7.124281178, -7.219285042, -7.216906748, -7.117830673, -7.19130627, -7.044398214, -6.936600397, -7.110200973, -7.113201169, -7.214548089, -7.077275883, -7.20642096, -7.261329264, -6.90823949, -6.895564829, -7.28540096, -7.312589252, -7.056996586, -6.973788269, -7.193093662, -7.06788606, -7.007071342, -7.035130585, -7.0158997, -6.677796883, -7.258102975, -7.003445904, -7.007629804, -7.144474124, -6.964311465, -7.189017636, -6.974562893, -7.175892494, -7.112890829, -7.164583725, -6.922704207, -7.14252288, -6.867786939, -6.599450473, -6.665281918, -7.105170796, -6.96597294, -7.199362529, -6.907780024, -7.190537354, -7.144222673, -7.324770265, -6.785693007, -6.887830778, -7.024901899, -7.088710048, -7.099091984, -7.095924448, -7.323053152, -7.141408218, -7.123412861, -7.356561303, -7.210259331, -7.058330561, -6.792081926, -7.203554708, -7.129549001, -7.445128752, -7.00037986, -7.200279991, -7.155326409, -6.905849038, -7.03720134, -7.311169312, -6.98048105, -7.160026446, -6.950812252, -6.850847199, -7.092380633, -7.178765497, -7.17354268, -6.989020215, -7.150386474, -7.174262588, -6.991766743, -6.947744104, -7.216312129, -7.178840211, -7.235962791, -6.449035769, -6.657036345, -7.172249606, -6.892278663, -6.85781565, -7.087842733, -6.667802583, -7.102495303, -6.831850356, -7.126442492, -7.20467023, -7.164254207, -6.535639014, -6.960493296, -6.95024508, -7.275462946, -6.973564552, -7.471150423, -7.227202089, -7.216117726, -7.22389366, -7.111285471, -6.557832546, -7.050348441, -7.127637315, -7.087441617, -7.171750652, -6.748676237, -6.49301445, -7.013868198, -7.241089718, -6.947510488, -6.880544598, -6.853672973, -7.194158036, -7.056478694, -6.92959607, -7.170345464, -7.258366637, -6.894623929, -7.223013041, -7.348384284, -7.211079385, -7.170547011, -6.838586049, -6.994907367, -7.028260297, -6.680351623, -6.964092309, -6.461899044, -7.134653362, -6.922978844, -6.979288223, -6.552774218, -7.087032406, -7.139866397, -6.984137511, -7.113632912, -6.952081581, -7.096285473, -7.080096146, -7.03251152, -6.537074953, -6.557296385, -7.062908356, -6.883673302, -7.121189828, -7.434346435]}], "model_type": "nb", "positive_class_label": "hobbies_and_leisure", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"weeks": [1166, 3.121187964], "13": [5, 2.927372028], "year": [1194, 2.030312658], "old": [749, 2.331680184], "women": [1176, 3.257199722], "world": [1185, 1.953711265], "record": [891, 3.186883224], "easy": [357, 2.136752505], "running": [933, 2.657708461], "dogs": [342, 3.520889368], "sure": [1062, 2.206053971], "know": [588, 1.762734229], "point": [813, 2.032256293], "marathon": [662, 3.867760312], "knew": [587, 3.332837136], "set": [966, 2.020650747], "possible": [820, 2.298128649], "maybe": [670, 2.941760766], "fact": [407, 2.336943354], "tiny": [1092, 3.555980687], "course": [281, 2.293065348], "got": [488, 2.32644457], "lost": [645, 3.043370942], "earlier": [353, 3.186883224], "run": [930, 2.422277079], "minutes": [692, 2.840757555], "15": [7, 2.478421808], "22": [30, 3.168534085], "19": [11, 3.318652501], "33": [41, 3.659359042], "new": [729, 1.454463194], "life": [616, 2.143253069], "runner": [931, 3.917770732], "editor": [363, 3.555980687], "race": [872, 3.092696008], "distance": [338, 3.109693585], "bad": [133, 2.717651497], "today": [1095, 2.39115717], "landscape": [593, 3.503794934], "female": [423, 3.880030404], "good": [486, 1.643796173], "reason": [886, 2.733216014], "bit": [158, 2.313474219], "day": [303, 1.918371898], "sun": [1059, 3.785843189], "clear": [232, 2.737145292], "career": [199, 3.63008866], "didn": [329, 2.541138282], "really": [884, 1.920109518], "enjoy": [377, 3.126985082], "thing": [1085, 2.136752505], "natural": [718, 3.087093753], "fit": [439, 3.048732885], "train": [1105, 3.52954743], "able": [59, 2.102778961], "going": [484, 1.91490569], "morning": [703, 3.54709174], "cross": [289, 3.414667154], "country": [279, 3.032732544], "track": [1102, 3.11542426], "training": [1106, 3.043370942], "days": [304, 2.39115717], "week": [1165, 2.643267777], "local": [633, 2.927372028], "club": [237, 3.880030404], "age": [84, 3.064993406], "sport": [1025, 3.710131367], "idea": [535, 2.550894457], "turned": [1118, 3.318652501], "body": [164, 2.419407637], "did": [328, 2.084164153], "entry": [380, 3.555980687], "try": [1114, 2.339585363], "went": [1168, 2.880852012], "break": [173, 3.032732544], "30": [38, 2.451433663], "mile": [687, 3.731184777], "pace": [766, 3.710131367], "faster": [413, 2.889984496], "seconds": [950, 3.347225874], "25": [33, 2.6872309], "miles": [688, 3.186883224], "based": [139, 2.171920964], "slow": [1001, 2.99127583], "needed": [725, 2.650462053], "speed": [1022, 2.58074742], "flat": [442, 3.52954743], "finish": [437, 3.361824673], "line": [622, 2.496827236], "control": [270, 2.457368399], "heart": [511, 3.361824673], "rate": [876, 3.199305744], "right": [921, 1.906292372], "away": [131, 2.310900215], "compared": [256, 2.976162192], "older": [750, 3.144580844], "male": [657, 3.892452924], "beginning": [144, 3.347225874], "despite": [321, 2.99127583], "young": [1198, 3.290872937], "called": [188, 2.280518131], "best": [151, 1.714864321], "performance": [784, 2.6872309], "wasn": [1157, 3.022206131], "years": [1195, 1.82085456], "later": [598, 2.425154779], "named": [714, 3.555980687], "field": [425, 2.85394456], "support": [1061, 2.657708461], "long": [637, 1.830348302], "20": [12, 2.258322399], "gave": [471, 3.354498633], "happy": [505, 3.048732885], "stop": [1041, 2.810647754], "felt": [422, 3.180729358], "plus": [812, 2.956359565], "money": [700, 2.654078693], "end": [373, 1.990345398], "hour": [528, 3.270533253], "little": [628, 1.953711265], "care": [198, 2.840757555], "wanted": [1155, 2.827742187], "instead": [562, 2.255886344], "normal": [735, 3.205575357], "behavior": [145, 3.620519209], "friend": [459, 3.218233753], "picture": [800, 3.263844265], "attention": [122, 3.01178937], "drive": [348, 2.94660339], "states": [1037, 3.132816002], "continue": [268, 2.986212528], "18": [10, 2.885407829], "true": [1111, 2.632572488], "road": [925, 3.081522708], "hours": [529, 2.725403474], "future": [468, 2.745050471], "following": [448, 2.629032661], "family": [410, 2.769148023], "car": [196, 3.257199722], "north": [736, 3.649506745], "media": [674, 2.908503544], "coming": [248, 2.867307787], "place": [803, 2.174160607], "articles": [117, 3.361824673], "potential": [823, 2.936941479], "26": [34, 3.231054442], "cause": [209, 3.199305744], "effort": [368, 3.132816002], "purpose": [863, 3.340005626], "far": [411, 2.336943354], "ask": [118, 2.885407829], "hard": [506, 2.27802747], "favorite": [414, 3.054123734], "help": [513, 1.957314872], "think": [1087, 1.928843198], "probably": [840, 2.405182646], "isn": [570, 2.283015012], "way": [1160, 1.522209183], "understanding": [1125, 3.478689013], "took": [1097, 2.657708461], "strong": [1051, 2.823441105], "important": [544, 2.126011263], "shots": [982, 3.340005626], "come": [245, 2.12387679], "close": [235, 2.534686647], "previous": [835, 3.075982528], "high": [516, 1.948330086], "school": [944, 3.132816002], "combination": [244, 3.462295203], "dead": [305, 3.52954743], "friends": [461, 2.922621425], "reasons": [887, 3.048732885], "post": [821, 2.466337069], "children": [224, 3.438197652], "share": [971, 2.608052871], "history": [520, 2.827742187], "came": [189, 2.717651497], "home": [523, 2.366396621], "asked": [119, 2.986212528], "told": [1096, 2.832061848], "special": [1018, 2.913187393], "ll": [632, 1.874222113], "works": [1184, 2.410848383], "dog": [341, 3.270533253], "added": [72, 2.793840635], "strength": [1049, 3.53828111], "practice": [827, 3.193075194], "keeping": [582, 3.211884526], "recent": [888, 2.810647754], "book": [166, 2.917893284], "story": [1046, 2.899201151], "2010": [19, 3.564949357], "company": [255, 2.509288456], "half": [500, 2.654078693], "tell": [1075, 2.639689956], "bag": [134, 3.659359042], "check": [223, 2.433837901], "modern": [698, 3.016984187], "racing": [874, 3.710131367], "shape": [970, 3.438197652], "taking": [1069, 2.484519388], "pet": [789, 3.741880066], "health": [510, 3.168534085], "issue": [572, 2.85394456], "want": [1154, 1.610070538], "comes": [246, 2.151986749], "looking": [641, 2.109061705], "won": [1177, 2.316054866], "gets": [476, 2.899201151], "talk": [1070, 3.070472872], "different": [332, 1.83993304], "ideas": [537, 3.555980687], "similar": [988, 2.405182646], "owners": [765, 3.406945108], "prefer": [828, 3.36920478], "dr": [347, 3.639750571], "writer": [1189, 3.831828302], "decision": [311, 3.224623552], "need": [724, 1.678699045], "members": [679, 3.503794934], "pets": [790, 3.984020118], "make": [654, 1.51290679], "love": [648, 2.355585705], "work": [1181, 1.720546155], "search": [947, 3.022206131], "online": [753, 2.889984496], "aren": [114, 2.570697084], "quite": [871, 2.472361183], "makes": [655, 2.051903291], "look": [639, 1.83993304], "matter": [668, 2.694749733], "times": [1091, 2.185434683], "moment": [699, 3.075982528], "step": [1039, 2.793840635], "feel": [418, 2.199133528], "ve": [1144, 1.797507196], "thought": [1089, 2.608052871], "making": [656, 2.119621465], "space": [1017, 2.793840635], "free": [458, 2.253456209], "professional": [850, 2.941760766], "fun": [465, 3.01178937], "working": [1183, 2.331680184], "cat": [205, 3.720602667], "wrong": [1192, 2.956359565], "perfect": [783, 2.725403474], "hands": [503, 3.231054442], "usually": [1139, 2.58074742], "animal": [99, 3.446165821], "rights": [922, 4.069786939], "event": [388, 3.332837136], "doing": [344, 2.313474219], "test": [1079, 2.913187393], "doesn": [340, 2.092394652], "necessary": [723, 3.186883224], "owner": [764, 3.620519209], "needs": [726, 2.621990379], "mind": [690, 2.490654376], "results": [913, 2.639689956], "provide": [857, 2.683492578], "lots": [647, 3.340005626], "seen": [953, 2.525086573], "quickly": [870, 2.614997343], "order": [758, 2.454396628], "sign": [986, 3.193075194], "great": [490, 1.875884624], "remember": [901, 2.832061848], "questions": [868, 3.103995564], "hand": [501, 2.487582177], "don": [345, 1.599918167], "given": [478, 2.550894457], "team": [1072, 2.785541833], "trust": [1113, 3.478689013], "worth": [1186, 2.713797928], "internet": [566, 3.384130431], "commercial": [250, 3.917770732], "interesting": [563, 3.016984187], "example": [393, 2.176405277], "video": [1146, 2.393946572], "cats": [208, 3.984020118], "sky": [999, 3.820132263], "customer": [294, 4.025984317], "approach": [107, 3.022206131], "created": [284, 2.765091222], "believe": [147, 2.880852012], "word": [1178, 3.199305744], "ago": [85, 2.668677492], "english": [376, 3.68951208], "cut": [296, 3.193075194], "city": [228, 2.956359565], "leave": [604, 2.769148023], "mr": [711, 4.069786939], "lives": [630, 3.174613131], "active": [67, 3.438197652], "daily": [298, 3.193075194], "45": [46, 3.391677636], "minute": [691, 3.332837136], "outside": [762, 2.858379157], "york": [1197, 3.022206131], "walk": [1152, 3.361824673], "super": [1060, 3.087093753], "services": [965, 3.478689013], "beautiful": [142, 3.211884526], "places": [804, 3.231054442], "state": [1036, 2.941760766], "park": [773, 3.573999193], "south": [1016, 3.785843189], "mountain": [707, 3.503794934], "requires": [906, 3.16249177], "longer": [638, 2.487582177], "feet": [421, 3.347225874], "require": [904, 3.132816002], "areas": [113, 3.075982528], "extra": [401, 2.849529541], "october": [744, 3.731184777], "legs": [607, 3.741880066], "black": [159, 2.941760766], "lead": [601, 2.99127583], "27": [35, 3.325719668], "seat": [948, 4.040373054], "bodies": [163, 3.54709174], "pick": [799, 3.016984187], "various": [1143, 3.01178937], "recently": [889, 2.769148023], "goes": [483, 2.74902662], "program": [851, 3.132816002], "annual": [101, 3.984020118], "meet": [678, 3.244041637], "bar": [137, 3.710131367], "taken": [1067, 2.858379157], "night": [732, 3.064993406], "friendly": [460, 3.462295203], "100": [2, 2.46934459], "nature": [719, 3.186883224], "collection": [240, 3.720602667], "lot": [646, 1.971860583], "sort": [1014, 3.168534085], "groups": [495, 3.391677636], "trail": [1104, 4.147345174], "case": [202, 2.355585705], "regular": [895, 3.297745816], "head": [509, 2.665007764], "easily": [356, 2.621990379], "14": [6, 2.793840635], "medical": [675, 3.68951208], "water": [1159, 2.981174734], "worked": [1182, 3.121187964], "wall": [1153, 3.649506745], "street": [1048, 3.092696008], "say": [940, 2.119621465], "effect": [365, 3.032732544], "particularly": [775, 2.971174651], "live": [629, 2.577386072], "environment": [381, 3.430292472], "36": [44, 3.69976858], "began": [143, 3.311634929], "offering": [746, 3.438197652], "2011": [20, 3.454197993], "better": [152, 1.887600239], "having": [507, 2.194546364], "experience": [398, 2.275542997], "equivalent": [384, 3.659359042], "self": [956, 2.986212528], "55": [51, 3.80857144], "certainly": [214, 3.081522708], "change": [218, 2.268126399], "months": [702, 2.6872309], "service": [964, 3.043370942], "physical": [798, 3.048732885], "changes": [220, 2.798016007], "face": [405, 2.871802177], "social": [1005, 2.814894045], "photos": [796, 2.725403474], "videos": [1147, 3.454197993], "mid": [685, 3.354498633], "author": [124, 2.894582205], "late": [597, 3.054123734], "facebook": [406, 3.406945108], "watch": [1158, 3.186883224], "instagram": [560, 3.69976858], "certain": [213, 2.547631811], "write": [1188, 3.186883224], "clients": [234, 3.892452924], "month": [701, 2.876316857], "list": [627, 2.433837901], "tend": [1076, 3.081522708], "open": [754, 2.46934459], "follow": [447, 2.798016007], "points": [814, 2.932145307], "energy": [374, 3.277267285], "start": [1033, 2.132442153], "return": [915, 3.290872937], "required": [905, 3.109693585], "fall": [409, 3.193075194], "report": [903, 3.384130431], "email": [372, 3.520889368], "individual": [555, 3.081522708], "read": [879, 2.416546404], "card": [197, 3.478689013], "pack": [767, 3.611040465], "aperture": [103, 3.486987816], "photo": [792, 2.702325527], "editing": [362, 3.495356066], "software": [1008, 3.193075194], "current": [291, 2.798016007], "version": [1145, 2.639689956], "page": [768, 3.00148], "gives": [479, 2.889984496], "users": [1136, 2.922621425], "images": [542, 2.564052541], "adobe": [78, 3.905031706], "lightroom": [619, 3.503794934], "exactly": [392, 2.789682625], "development": [325, 3.168534085], "2014": [23, 3.354498633], "app": [104, 3.347225874], "store": [1044, 3.180729358], "use": [1132, 1.553053858], "september": [961, 3.867760312], "10": [1, 1.902867712], "released": [900, 3.304666259], "powerful": [825, 3.022206131], "creative": [286, 3.103995564], "cloud": [236, 3.710131367], "photography": [795, 2.665007764], "plan": [805, 2.936941479], "option": [756, 2.698530456], "includes": [549, 3.016984187], "classic": [230, 3.277267285], "photoshop": [797, 3.917770732], "expensive": [397, 2.95146958], "industry": [556, 3.180729358], "ii": [539, 3.36920478], "mirrorless": [693, 3.583131677], "camera": [190, 2.433837901], "2016": [25, 3.340005626], "model": [696, 2.899201151], "design": [319, 2.721519974], "size": [996, 2.544379776], "50": [48, 2.654078693], "medium": [677, 3.601650724], "format": [452, 3.438197652], "sensor": [959, 3.138681122], "things": [1086, 1.920109518], "larger": [596, 2.862833507], "higher": [517, 2.657708461], "resolution": [909, 3.512305624], "viewfinder": [1149, 3.80857144], "improved": [546, 3.399282236], "main": [652, 2.672360738], "difference": [330, 2.819158443], "price": [836, 2.69098325], "available": [128, 2.253456209], "july": [579, 3.69976858], "significant": [987, 3.087093753], "drop": [349, 3.446165821], "cameras": [191, 2.823441105], "fujifilm": [463, 3.731184777], "past": [779, 2.560746753], "couple": [280, 2.981174734], "sell": [957, 3.470458514], "original": [760, 2.889984496], "described": [318, 3.36920478], "shot": [981, 2.894582205], "percent": [782, 3.087093753], "shooting": [978, 2.814894045], "35": [42, 3.244041637], "view": [1148, 2.611519079], "frame": [455, 2.74902662], "increased": [553, 3.304666259], "add": [71, 2.547631811], "smaller": [1003, 2.871802177], "sports": [1026, 3.211884526], "fast": [412, 2.472361183], "action": [65, 3.064993406], "compact": [253, 3.462295203], "inside": [559, 2.971174651], "canon": [192, 3.277267285], "dslr": [350, 3.454197993], "major": [653, 2.745050471], "upgrade": [1131, 3.679359709], "electronic": [370, 3.774669888], "screen": [946, 3.186883224], "developed": [324, 3.270533253], "ability": [58, 2.733216014], "pro": [839, 3.059543801], "models": [697, 3.168534085], "allows": [90, 2.702325527], "image": [541, 2.360976553], "raw": [877, 3.311634929], "files": [428, 3.257199722], "autofocus": [126, 3.54709174], "used": [1133, 1.831939392], "number": [741, 2.201435025], "contrast": [269, 3.284046972], "systems": [1065, 3.048732885], "does": [339, 1.98106028], "addition": [74, 2.941760766], "digital": [334, 3.205575357], "mount": [706, 3.422449295], "lens": [610, 2.761050813], "directly": [336, 3.092696008], "uses": [1137, 2.74902662], "lenses": [611, 3.038037596], "features": [416, 2.525086573], "traditional": [1103, 3.211884526], "level": [613, 2.288027553], "finally": [433, 2.932145307], "zoom": [1199, 3.520889368], "low": [649, 2.436749112], "rear": [885, 3.52954743], "research": [907, 2.823441105], "studies": [1053, 3.592348332], "short": [980, 2.460349027], "answer": [102, 3.01178937], "science": [945, 3.070472872], "knowledge": [589, 3.486987816], "john": [577, 3.495356066], "college": [241, 3.620519209], "london": [636, 3.84366276], "according": [61, 2.515577785], "press": [833, 3.11542426], "ground": [493, 3.270533253], "forward": [454, 3.211884526], "role": [927, 3.297745816], "position": [818, 3.311634929], "movement": [709, 3.555980687], "wild": [1174, 3.741880066], "yes": [1196, 2.814894045], "house": [530, 2.917893284], "000": [0, 2.388375527], "ideal": [536, 3.391677636], "lack": [591, 3.168534085], "published": [861, 2.981174734], "storage": [1043, 3.669309373], "solution": [1011, 3.384130431], "data": [300, 2.85394456], "external": [400, 3.406945108], "save": [938, 2.913187393], "code": [238, 3.555980687], "known": [590, 2.466337069], "light": [617, 2.352901139], "led": [605, 3.138681122], "lighting": [618, 3.503794934], "gear": [472, 3.16249177], "photographers": [794, 2.871802177], "create": [283, 2.396743777], "style": [1056, 2.876316857], "complete": [258, 2.908503544], "built": [182, 2.544379776], "creating": [285, 2.936941479], "quality": [865, 2.439668822], "deal": [306, 2.889984496], "learn": [602, 2.584120104], "improve": [545, 3.043370942], "500": [49, 3.186883224], "million": [689, 3.027455487], "tripod": [1110, 4.054971854], "especially": [385, 2.363682915], "early": [354, 2.639689956], "events": [389, 3.304666259], "huge": [531, 2.823441105], "tips": [1093, 3.224623552], "ways": [1161, 2.525086573], "depending": [316, 3.199305744], "hold": [522, 2.840757555], "type": [1120, 2.509288456], "using": [1138, 1.852857291], "heavy": [512, 3.180729358], "situations": [995, 3.318652501], "ring": [923, 3.720602667], "balance": [135, 3.231054442], "comfortable": [247, 3.244041637], "single": [991, 2.457368399], "common": [251, 2.601156292], "stand": [1031, 3.237526956], "photographer": [793, 2.976162192], "method": [684, 3.583131677], "foot": [450, 3.52954743], "left": [606, 2.445533941], "angle": [98, 3.478689013], "adjustments": [77, 3.855638951], "base": [138, 3.422449295], "push": [864, 3.340005626], "slightly": [1000, 3.022206131], "building": [181, 2.927372028], "reduce": [893, 3.438197652], "rock": [926, 3.930674137], "sharp": [974, 3.277267285], "avoid": [130, 2.9963649], "note": [737, 2.867307787], "area": [112, 2.753018641], "increase": [552, 3.059543801], "period": [785, 3.270533253], "useful": [1134, 2.899201151], "shoot": [977, 2.899201151], "middle": [686, 3.263844265], "release": [899, 3.193075194], "shutter": [985, 3.470458514], "travel": [1107, 3.016984187], "carry": [200, 3.224623552], "exposure": [399, 3.257199722], "focal": [443, 3.797142744], "length": [609, 3.156485746], "account": [62, 3.193075194], "crop": [288, 3.831828302], "factor": [408, 3.446165821], "resources": [910, 3.564949357], "shared": [972, 3.564949357], "latest": [599, 3.193075194], "theme": [1083, 4.467817069], "items": [574, 3.867760312], "real": [882, 2.430935142], "sony": [1012, 3.406945108], "mark": [664, 3.174613131], "nikon": [733, 3.454197993], "90": [55, 3.454197993], "effects": [367, 3.340005626], "fish": [438, 4.249127868], "filter": [430, 3.679359709], "film": [429, 3.332837136], "objects": [743, 3.970414466], "cool": [272, 3.340005626], "takes": [1068, 2.625505321], "parts": [776, 3.087093753], "entire": [379, 2.922621425], "small": [1002, 2.063879482], "edit": [361, 3.237526956], "tools": [1099, 2.986212528], "term": [1077, 2.981174734], "hot": [527, 3.406945108], "key": [583, 2.657708461], "thinking": [1088, 3.109693585], "click": [233, 3.186883224], "let": [612, 2.145429349], "select": [954, 3.391677636], "catalog": [206, 4.840492354], "hit": [521, 3.022206131], "values": [1141, 3.720602667], "value": [1140, 2.922621425], "learning": [603, 3.304666259], "develop": [323, 3.318652501], "question": [867, 2.83640025], "subject": [1057, 2.913187393], "settings": [968, 3.186883224], "range": [875, 2.425154779], "situation": [994, 3.340005626], "decide": [309, 3.361824673], "general": [474, 2.773221348], "presets": [831, 4.719131497], "multiple": [712, 2.769148023], "large": [595, 2.460349027], "recommend": [890, 3.325719668], "content": [267, 3.193075194], "smart": [1004, 3.512305624], "section": [951, 3.414667154], "particular": [774, 2.908503544], "species": [1019, 4.011799682], "remove": [902, 3.446165821], "apply": [106, 3.332837136], "achieve": [63, 3.446165821], "automatically": [127, 3.430292472], "hope": [524, 3.064993406], "saying": [941, 3.027455487], "steps": [1040, 3.414667154], "comments": [249, 3.270533253], "cheap": [222, 3.406945108], "lock": [635, 4.131344832], "moving": [710, 2.894582205], "problem": [841, 2.679768179], "focus": [444, 2.466337069], "mode": [695, 3.098329826], "generally": [475, 3.054123734], "button": [184, 3.354498633], "adjust": [76, 3.52954743], "auto": [125, 3.54709174], "simply": [990, 2.366396621], "function": [466, 3.318652501], "focusing": [446, 3.555980687], "index": [554, 4.513279443], "options": [757, 2.661351452], "af": [82, 3.774669888], "default": [313, 3.620519209], "setting": [967, 3.064993406], "menu": [682, 3.620519209], "specific": [1020, 2.618487748], "person": [786, 2.632572488], "flash": [441, 3.774669888], "final": [432, 3.054123734], "soon": [1013, 3.038037596], "feature": [415, 2.698530456], "group": [494, 2.636124889], "quick": [869, 2.876316857], "problems": [842, 3.048732885], "switch": [1064, 3.406945108], "stops": [1042, 4.100092289], "manual": [660, 3.36920478], "fine": [436, 2.981174734], "depth": [317, 3.438197652], "giving": [480, 3.092696008], "second": [949, 2.318642189], "bought": [168, 3.592348332], "details": [322, 3.092696008], "kit": [585, 3.63008866], "highly": [518, 3.038037596], "getting": [477, 2.203741831], "16": [8, 2.6872309], "35mm": [43, 3.797142744], "wider": [1173, 3.564949357], "wide": [1172, 2.793840635], "plenty": [811, 3.199305744], "capture": [195, 3.092696008], "maximum": [669, 3.512305624], "prime": [838, 3.774669888], "weight": [1167, 2.913187393], "build": [180, 2.639689956], "market": [665, 2.668677492], "budget": [179, 3.391677636], "sharpness": [975, 4.040373054], "expect": [396, 3.168534085], "wouldn": [1187, 3.132816002], "pretty": [834, 2.503038436], "job": [576, 2.769148023], "consider": [265, 2.661351452], "buying": [186, 3.304666259], "nice": [731, 2.936941479], "filters": [431, 4.285495512], "definitely": [314, 3.237526956], "bank": [136, 3.831828302], "estate": [386, 4.231428291], "sensors": [960, 3.763620052], "currently": [292, 3.048732885], "amazon": [92, 3.611040465], "review": [916, 2.908503544], "trying": [1115, 2.604598636], "rest": [911, 2.840757555], "figure": [426, 3.270533253], "language": [594, 3.486987816], "pay": [780, 2.903841531], "display": [337, 3.454197993], "result": [912, 2.679768179], "basic": [140, 2.971174651], "pictures": [801, 3.454197993], "standard": [1032, 2.74902662], "library": [615, 3.752690982], "variety": [1142, 3.211884526], "process": [843, 2.472361183], "provides": [858, 3.103995564], "file": [427, 3.495356066], "reading": [880, 3.070472872], "12": [4, 2.472361183], "advantage": [80, 3.16249177], "ready": [881, 2.94660339], "offer": [745, 2.650462053], "testing": [1080, 3.399282236], "color": [242, 2.899201151], "output": [761, 3.80857144], "box": [169, 3.354498633], "preset": [830, 4.873282177], "specifically": [1021, 3.284046972], "designed": [320, 2.785541833], "choose": [226, 2.683492578], "allow": [88, 2.713797928], "lower": [650, 2.858379157], "80": [54, 3.391677636], "access": [60, 2.94660339], "kind": [584, 2.525086573], "custom": [293, 3.601650724], "likely": [620, 2.416546404], "appear": [105, 3.168534085], "apps": [108, 3.785843189], "player": [808, 4.180134997], "interface": [564, 3.68951208], "total": [1100, 3.186883224], "impact": [543, 3.332837136], "effective": [366, 3.325719668], "handle": [502, 3.218233753], "easier": [355, 2.737145292], "music": [713, 3.785843189], "tool": [1098, 2.9963649], "unique": [1126, 3.048732885], "numbers": [742, 3.297745816], "allowed": [89, 3.340005626], "unless": [1129, 3.193075194], "runs": [934, 3.277267285], "solid": [1010, 3.180729358], "spend": [1023, 2.932145307], "belief": [146, 4.53680994], "biggest": [155, 3.168534085], "bright": [176, 3.601650724], "means": [673, 2.196837315], "iii": [540, 3.797142744], "fixed": [440, 3.68951208], "fully": [464, 3.109693585], "portrait": [817, 3.69976858], "overall": [763, 2.96127358], "scene": [943, 3.384130431], "leica": [608, 4.445838162], "affordable": [83, 3.54709174], "2018": [27, 3.36920478], "ahead": [86, 3.297745816], "buy": [185, 2.608052871], "truly": [1112, 3.263844265], "understand": [1124, 2.725403474], "bring": [177, 2.871802177], "mean": [671, 2.632572488], "started": [1034, 2.499928013], "sold": [1009, 3.470458514], "soft": [1007, 3.68951208], "spot": [1027, 3.284046972], "big": [154, 2.15418214], "looks": [642, 2.83640025], "couldn": [277, 3.414667154], "2013": [22, 3.284046972], "series": [962, 2.713797928], "growing": [496, 3.325719668], "air": [87, 3.391677636], "land": [592, 3.855638951], "terms": [1078, 2.903841531], "4k": [47, 4.040373054], "60": [52, 3.132816002], "frames": [456, 3.84366276], "stabilization": [1029, 3.943746218], "motion": [704, 3.785843189], "differences": [331, 3.414667154], "customers": [295, 3.68951208], "including": [550, 2.158587433], "simple": [989, 2.445533941], "sense": [958, 2.698530456], "reach": [878, 3.059543801], "update": [1130, 3.486987816], "power": [824, 2.554167782], "battery": [141, 3.430292472], "actually": [70, 2.27802747], "offers": [747, 2.793840635], "benefit": [148, 3.199305744], "thanks": [1082, 2.95146958], "feels": [420, 3.218233753], "playing": [810, 3.611040465], "user": [1135, 3.054123734], "edge": [360, 3.639750571], "near": [721, 3.00148], "processing": [844, 3.583131677], "activity": [68, 3.69976858], "notice": [738, 3.318652501], "positive": [819, 3.36920478], "cover": [282, 3.237526956], "controls": [271, 3.620519209], "advanced": [79, 3.478689013], "board": [162, 3.583131677], "200": [13, 3.180729358], "project": [852, 3.186883224], "source": [1015, 3.144580844], "hdr": [508, 4.610917913], "analysis": [96, 3.710131367], "non": [734, 2.745050471], "dynamic": [352, 3.438197652], "memory": [680, 3.503794934], "white": [1171, 2.789682625], "background": [132, 3.430292472], "conditions": [263, 3.092696008], "colors": [243, 3.573999193], "limited": [621, 2.9963649], "nearly": [722, 2.936941479], "2019": [28, 3.132816002], "choice": [225, 2.913187393], "sharing": [973, 3.601650724], "network": [728, 3.785843189], "phone": [791, 3.325719668], "included": [548, 3.092696008], "turn": [1117, 2.611519079], "location": [634, 3.304666259], "native": [717, 3.731184777], "excellent": [394, 3.126985082], "game": [469, 3.168534085], "deep": [312, 3.237526956], "brand": [171, 3.064993406], "tour": [1101, 3.917770732], "france": [457, 3.84366276], "riding": [920, 3.731184777], "bike": [156, 3.384130431], "scale": [942, 3.384130431], "21": [29, 3.325719668], "europe": [387, 3.80857144], "marketing": [666, 3.731184777], "paper": [772, 3.406945108], "cycling": [297, 3.741880066], "difficult": [333, 2.827742187], "public": [860, 2.936941479], "national": [716, 3.168534085], "human": [532, 2.917893284], "success": [1058, 3.244041637], "stories": [1045, 3.478689013], "races": [873, 3.867760312], "riders": [919, 3.880030404], "changing": [221, 3.205575357], "looked": [640, 3.297745816], "ride": [918, 3.354498633], "seven": [969, 3.244041637], "david": [302, 3.639750571], "bikes": [157, 3.84366276], "eyes": [404, 3.237526956], "device": [326, 3.659359042], "information": [558, 2.618487748], "machine": [651, 3.54709174], "instance": [561, 3.304666259], "produced": [846, 3.503794934], "technology": [1074, 3.048732885], "researchers": [908, 3.592348332], "words": [1180, 3.098329826], "stage": [1030, 3.720602667], "president": [832, 3.763620052], "trip": [1109, 3.592348332], "british": [178, 3.710131367], "focused": [445, 3.237526956], "men": [681, 3.332837136], "play": [807, 2.894582205], "produce": [845, 3.132816002], "united": [1127, 3.354498633], "win": [1175, 3.601650724], "ferrari": [424, 5.971894466], "pain": [770, 3.649506745], "man": [658, 3.043370942], "form": [451, 2.717651497], "tried": [1108, 3.211884526], "strategy": [1047, 3.855638951], "eos": [382, 4.249127868], "purchase": [862, 3.462295203], "eye": [403, 2.908503544], "olympus": [751, 4.214036548], "types": [1121, 2.941760766], "dslrs": [351, 4.025984317], "thousands": [1090, 3.297745816], "living": [631, 3.048732885], "community": [252, 3.180729358], "include": [547, 2.590899791], "food": [449, 2.922621425], "happen": [504, 3.186883224], "relationship": [897, 3.478689013], "personality": [788, 4.131344832], "room": [928, 3.01178937], "typically": [1122, 3.027455487], "shows": [984, 2.903841531], "ensure": [378, 3.340005626], "weather": [1162, 3.340005626], "relatively": [898, 3.138681122], "prices": [837, 3.763620052], "ones": [752, 2.798016007], "article": [116, 2.554167782], "amazing": [91, 3.422449295], "11": [3, 2.683492578], "23": [31, 3.361824673], "chance": [217, 3.205575357], "links": [625, 3.347225874], "starting": [1035, 2.798016007], "blood": [161, 3.63008866], "moved": [708, 3.384130431], "april": [109, 3.649506745], "death": [307, 3.53828111], "hair": [499, 3.763620052], "spent": [1024, 3.180729358], "humans": [533, 3.54709174], "table": [1066, 3.601650724], "wait": [1151, 3.454197993], "skin": [998, 3.592348332], "eventually": [390, 3.224623552], "breed": [174, 4.285495512], "rules": [929, 3.486987816], "american": [94, 3.016984187], "website": [1164, 2.99127583], "competition": [257, 3.495356066], "web": [1163, 3.384130431], "august": [123, 3.669309373], "2009": [18, 3.659359042], "california": [187, 3.741880066], "credit": [287, 3.80857144], "brain": [170, 3.892452924], "completely": [259, 2.932145307], "office": [748, 3.601650724], "management": [659, 3.512305624], "issues": [573, 3.00148], "books": [167, 3.263844265], "stress": [1050, 3.601650724], "helpful": [514, 3.520889368], "present": [829, 3.244041637], "clean": [231, 3.583131677], "loss": [644, 3.611040465], "law": [600, 3.679359709], "policy": [815, 3.984020118], "university": [1128, 3.01178937], "cars": [201, 3.943746218], "war": [1156, 3.774669888], "june": [581, 3.564949357], "28": [36, 3.250599038], "glass": [481, 3.52954743], "products": [849, 2.986212528], "selection": [955, 3.710131367], "direct": [335, 3.36920478], "nd": [720, 5.876584286], "benefits": [149, 3.193075194], "actual": [69, 3.270533253], "site": [992, 3.144580844], "personal": [787, 2.876316857], "dark": [299, 3.318652501], "popular": [816, 2.698530456], "net": [727, 3.820132263], "org": [759, 3.956991445], "levels": [614, 3.075982528], "stay": [1038, 2.908503544], "elements": [371, 3.391677636], "pros": [855, 3.984020118], "piece": [802, 3.150515579], "lines": [623, 3.462295203], "functions": [467, 3.892452924], "safe": [936, 3.495356066], "considered": [266, 3.087093753], "adding": [73, 3.218233753], "average": [129, 3.075982528], "cases": [203, 3.132816002], "link": [624, 3.263844265], "saw": [939, 3.224623552], "breeds": [175, 4.636893399], "center": [211, 3.138681122], "medicine": [676, 3.930674137], "additional": [75, 3.144580844], "24": [32, 2.74902662], "associated": [120, 3.399282236], "animals": [100, 3.446165821], "protein": [856, 4.636893399], "brands": [172, 3.679359709], "costs": [276, 3.361824673], "meaning": [672, 3.237526956], "eat": [358, 3.555980687], "red": [892, 3.16249177], "green": [492, 3.601650724], "2017": [26, 3.121187964], "mobile": [694, 3.611040465], "written": [1191, 3.180729358], "hybrid": [534, 3.905031706], "optical": [755, 3.880030404], "shop": [979, 3.68951208], "class": [229, 3.224623552], "panasonic": [771, 4.040373054], "17": [9, 3.092696008], "iso": [571, 3.679359709], "skills": [997, 3.69976858], "advice": [81, 3.564949357], "related": [896, 2.936941479], "equipment": [383, 3.69976858], "involved": [568, 3.290872937], "a7": [57, 4.53680994], "challenge": [216, 3.332837136], "manufacturers": [661, 3.720602667], "pass": [778, 3.583131677], "production": [848, 3.63008866], "aps": [110, 4.069786939], "structure": [1052, 3.649506745], "pages": [769, 3.774669888], "android": [97, 4.382659261], "download": [346, 3.84366276], "correct": [274, 3.555980687], "rich": [917, 3.564949357], "capable": [193, 3.304666259], "evidence": [391, 3.53828111], "31": [39, 3.54709174], "act": [64, 3.376639759], "jump": [580, 3.244041637], "forms": [453, 3.855638951], "society": [1006, 3.611040465], "art": [115, 3.297745816], "education": [364, 3.797142744], "references": [894, 3.785843189], "study": [1054, 3.092696008], "2005": [14, 3.917770732], "40": [45, 2.927372028], "29": [37, 3.503794934], "32": [40, 3.503794934], "shown": [983, 3.399282236], "greater": [491, 3.347225874], "70": [53, 3.297745816], "countries": [278, 3.855638951], "helps": [515, 2.9963649], "risk": [924, 3.218233753], "names": [715, 3.486987816], "novel": [739, 4.214036548], "retrieved": [914, 4.214036548], "horses": [526, 5.33004058], "theory": [1084, 3.84366276], "actions": [66, 4.054971854], "international": [565, 3.564949357], "complex": [260, 3.495356066], "america": [93, 3.446165821], "horse": [525, 5.016383021], "culture": [290, 3.592348332], "concept": [262, 3.649506745], "century": [212, 3.512305624], "gender": [473, 4.445838162], "guide": [498, 3.064993406], "2008": [17, 3.583131677], "2015": [24, 3.399282236], "2007": [16, 3.831828302], "property": [854, 3.905031706], "uk": [1123, 3.720602667], "finding": [435, 3.211884526], "exercise": [395, 3.669309373], "2012": [21, 3.361824673], "st": [1028, 4.610917913], "pp": [826, 4.490289925], "isbn": [569, 4.445838162], "978": [56, 4.53680994], "google": [487, 3.495356066], "doi": [343, 4.748119034], "february": [417, 3.731184777], "january": [575, 3.639750571], "journal": [578, 3.68951208], "archived": [111, 4.560907492], "december": [308, 3.763620052], "pdf": [781, 4.32323584], "news": [730, 2.932145307], "march": [663, 3.601650724], "2006": [15, 4.025984317], "november": [740, 3.956991445], "text": [1081, 3.68951208], "technical": [1073, 3.555980687], "cost": [275, 2.867307787], "cc": [210, 4.445838162], "psychology": [859, 4.342653926], "projects": [853, 3.601650724], "views": [1150, 4.069786939], "lose": [643, 3.399282236], "extremely": [402, 3.297745816], "identity": [538, 4.180134997], "master": [667, 3.679359709], "chrome": [227, 5.096425728], "goal": [482, 3.304666259], "bokeh": [165, 4.231428291], "degree": [315, 3.361824673], "shift": [976, 3.659359042], "electric": [369, 4.084824817], "capital": [194, 4.054971854], "safari": [935, 5.635422229], "gold": [485, 3.956991445], "engine": [375, 4.147345174], "changed": [219, 3.250599038], "category": [207, 3.720602667], "stuff": [1055, 3.361824673], "wrote": [1193, 3.231054442], "writing": [1190, 3.193075194], "feeling": [419, 3.087093753], "hill": [519, 3.943746218], "runners": [932, 3.956991445], "athletes": [121, 4.231428291], "companies": [254, 3.109693585], "games": [470, 4.025984317], "suspension": [1063, 4.342653926], "reality": [883, 3.446165821], "km": [586, 4.663561646], "decided": [310, 3.168534085], "fuji": [462, 4.636893399], "investment": [567, 3.679359709], "50mm": [50, 4.147345174], "motor": [705, 4.147345174], "sites": [993, 3.880030404], "wordpress": [1179, 4.663561646], "bicycle": [153, 4.054971854], "tires": [1094, 4.445838162], "tube": [1116, 4.53680994], "platform": [806, 3.462295203], "growth": [497, 3.720602667], "twitter": [1119, 3.555980687], "financial": [434, 3.649506745], "devices": [327, 3.639750571], "posts": [822, 3.930674137], "cons": [264, 4.636893399], "party": [777, 3.36920478], "americans": [95, 4.100092289], "cash": [204, 3.763620052], "sales": [937, 3.63008866], "wheels": [1170, 4.100092289], "product": [847, 3.075982528], "core": [273, 3.611040465], "business": [183, 2.84513393], "blog": [160, 3.284046972], "government": [489, 3.710131367], "security": [952, 3.80857144], "economic": [359, 4.069786939], "computer": [261, 3.478689013], "chain": [215, 3.970414466], "wheel": [1169, 3.867760312], "tax": [1071, 4.342653926], "database": [301, 4.424331957], "players": [809, 4.362456553], "income": [551, 4.196942115], "collagen": [239, 6.48272009], "linux": [626, 4.873282177], "server": [963, 4.32323584], "benz": [150, 6.195038017], "mercedes": [683, 5.635422229], "query": [866, 5.501890837], "inequality": [557, 5.789572909]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_home_and_garden.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_home_and_garden.json deleted file mode 100644 index e0d62df..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_home_and_garden.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.68603983, "feature_log_probs": [-6.996019607, -5.829542461, -6.912648525, -6.591797547, -6.374137186, -6.701672752, -6.565891566, -6.151042345, -6.713882869, -6.765365814, -6.810815278, -6.263751393, -8.127977679, -6.844612761, -6.684804371, -6.650174465, -6.595781047, -6.305222208, -7.154051984, -6.733212115, -6.482549189, -7.395035776, -6.373532768, -6.701564701, -6.708068146, -7.228480867, -7.271019797, -6.030353097, -5.691724946, -6.809551222, -6.823555485, -6.936950302, -5.657104955, -5.635116646, -6.667766106, -7.036302314, -5.11180942, -8.041564099, -7.041046435, -5.33117014, -6.451928314, -7.97386914, -7.476945258, -6.277474518, -6.677579163, -7.13231402, -7.129243008, -7.000760877, -6.628745113, -6.705624842, -5.828342301, -6.399000215, -7.04630441, -5.732893543, -6.950960369, -6.067723923, -6.66958167, -7.072600705, -5.673503419, -6.03665044, -5.832278456, -5.724451866, -5.480950839, -5.965992915, -6.255641798, -9.515337473, -6.066203682, -6.747468104, -7.186669256, -6.266886709, -7.526977589, -6.537466262, -6.478685867, -5.881749047, -6.763777024, -6.677064248, -6.397458631, -6.815071802, -6.249338985, -6.202317949, -7.488361155, -6.63119423, -5.489672821, -7.152302379, -6.938807067, -6.447893704, -6.808078441, -6.91474321, -7.602959099, -6.599902823, -6.664669349, -7.135041424, -7.000672068, -6.490758055, -7.33231123, -6.858591334, -5.829401426, -7.147034569, -6.808458086, -8.187360113, -4.80724244, -5.660015662, -4.890267283, -6.52575166, -6.589298189, -9.569439216, -6.868624471, -5.534413815, -5.389447923, -6.992753785, -6.165799893, -8.816270795, -10.791765226, -6.301433233, -6.255129857, -6.98463662, -7.018254814, -7.410627246, -6.928267701, -6.130972782, -6.651129513, -7.179170877, -6.697897743, -6.461802432, -5.691996556, -6.69581457, -7.825214686, -5.564923311, -6.499349192, -6.365870886, -8.49365907, -6.745167261, -6.627697295, -6.01383033, -7.296939643, -7.146154924, -7.418192298, -5.975246388, -6.775984541, -7.304451747, -9.712391029, -5.7402595, -6.484976655, -6.823623973, -6.708424549, -6.116333995, -6.520463661, -8.22826581, -5.633092124, -4.995465301, -6.356145527, -6.534813691, -6.20842631, -6.935691996, -6.9904773, -5.57647656, -6.272911111, -6.075241235, -6.701674394, -5.234322896, -5.325546625, -5.646620079, -7.529310363, -6.269515051, -6.245108397, -5.626270136, -5.927125619, -8.108212317, -7.611835454, -6.838450599, -7.250508089, -6.340065622, -6.444061386, -8.664189707, -6.73289253, -6.543902297, -8.265197892, -7.04911321, -6.578944771, -7.05481535, -6.634032579, -7.184194789, -6.243493012, -7.333702007, -7.015464339, -6.560971761, -6.671020005, -7.265110734, -6.216966642, -7.041191918, -6.591252003, -6.172504444, -6.222210508, -8.368277233, -7.384595507, -8.580500129, -6.915058838, -6.514624409, -7.351913485, -6.775291517, -7.161414773, -6.050261944, -7.113597945, -5.998132337, -6.959903706, -6.735538789, -7.818321667, -6.892985714, -7.501366617, -8.635501179, -7.839875548, -6.653275494, -6.134414237, -7.416482035, -5.991043265, -6.982469739, -6.119048019, -5.701994422, -5.702116626, -6.168167634, -5.812773536, -7.508894822, -6.777157425, -6.323109425, -6.812733866, -6.13439127, -6.336118443, -6.351420358, -6.954148335, -7.35989633, -6.016349294, -5.790837045, -6.690469941, -6.500182383, -7.661284851, -8.53303872, -6.390657351, -4.076782573, -6.300829995, -6.168006925, -10.338334491, -6.04888699, -6.316947408, -5.228468485, -5.289713906, -5.945454791, -7.926367794, -6.526270013, -6.972441333, -5.953796057, -7.10445989, -6.647817668, -7.00092208, -7.157070518, -6.61745851, -9.361257722, -7.9017688, -7.774459645, -7.216391199, -5.977813864, -6.880530045, -6.424104195, -6.238106803, -6.345340914, -6.205310149, -5.458168406, -6.723431277, -8.404120089, -6.877670869, -6.735884418, -6.101185519, -5.10889431, -5.808162478, -7.524212692, -8.924605213, -6.65675574, -6.962113198, -5.746946916, -7.271434889, -6.25661104, -6.632331904, -6.4819548, -5.860343811, -6.810908895, -7.273879521, -5.648340648, -5.470673399, -6.242664383, -5.401323257, -6.850330154, -6.795701352, -6.595100031, -6.959094919, -6.146941149, -5.605715793, -6.397141007, -6.011773904, -5.03862902, -7.192585822, -6.648134969, -6.030965629, -6.529343085, -5.649568185, -6.006120487, -6.536872673, -6.035675098, -5.912361048, -6.519593732, -7.31425153, -6.132928522, -6.899483802, -7.080993627, -5.006547499, -6.230107249, -6.158227958, -8.111311583, -6.79204184, -9.99764297, -6.837111312, -6.681851746, -7.182475159, -6.612606133, -8.005890153, -7.329218357, -6.279086094, -7.272852596, -6.769485026, -5.953350226, -7.348865534, -7.052817887, -6.73348683, -6.345969569, -6.621482786, -6.732137686, -6.099025205, -7.80770041, -7.076906237, -6.2009809, -5.135166463, -6.556915028, -6.528840946, -5.805472421, -6.750140892, -5.469296572, -7.292419874, -6.329529205, -6.475536683, -6.96069549, -6.728223801, -6.725960844, -6.922889708, -6.78819635, -6.861852889, -6.050218614, -6.061270038, -6.607292204, -6.911470879, -5.972327973, -6.645796414, -6.430315289, -6.68508982, -8.336304902, -7.108901898, -6.528348447, -7.299271946, -8.342102128, -5.762322008, -6.944390856, -7.322429771, -7.715429267, -6.978422, -6.099144608, -7.500458042, -7.025231512, -7.381068692, -6.373081902, -5.929570948, -6.988827827, -7.179653166, -6.376692811, -7.214547173, -6.221330986, -5.678166415, -7.129852558, -5.740377355, -6.41486514, -7.111571593, -6.224564657, -6.349118677, -6.782987588, -7.732413833, -7.039367994, -6.572169347, -6.609471983, -7.29351393, -5.967071941, -7.153018357, -6.265932789, -6.131858038, -6.260390069, -6.567967838, -6.957793985, -6.454328948, -6.00078225, -8.719100392, -5.292283008, -6.231872327, -8.42700735, -7.153244854, -9.882457584, -8.355028685, -6.722799915, -11.530424942, -7.030055318, -7.243165495, -6.813904781, -6.796165444, -6.683161512, -8.254182437, -6.783200434, -6.102921782, -6.419320397, -6.852078015, -5.694553092, -7.163199866, -7.026437964, -7.020626073, -6.664502641, -5.83881834, -7.218257288, -6.655747501, -7.313912785, -7.20394636, -15.316834062, -7.156726907, -5.897778828, -8.317686558, -5.202243718, -7.714805418, -6.443299411, -6.643675432, -6.013046305, -6.133565775, -6.384001718, -7.616622807, -8.30216017, -6.200091039, -7.520101028, -6.85680537, -7.159841098, -6.079133648, -6.852933619, -6.814200678, -7.337185791, -7.193762377, -5.703347866, -5.923786732, -7.234926615, -8.533308437, -7.19115292, -7.168648301, -5.450828327, -6.999893046, -6.954197499, -6.706652288, -7.368215182, -5.658692455, -6.953365853, -5.867588676, -6.326483244, -6.553682184, -7.383200082, -6.479522976, -6.36651844, -5.651239389, -4.47445028, -4.896762843, -5.773422066, -8.157376269, -5.857780183, -7.325921342, -6.111869701, -7.118592146, -5.226066596, -6.782410304, -7.729575872, -6.637096976, -8.336383824, -15.316834062, -7.047708708, -5.920526696, -6.608940269, -7.131330348, -7.808777586, -8.545484724, -7.003373494, -5.805754465, -6.821437604, -5.476337416, -5.726726567, -7.742831511, -7.239944859, -5.883935449, -6.587109158, -6.405871385, -6.539224894, -5.802974579, -6.19702484, -6.044279331, -6.676979922, -5.967271166, -6.637840435, -6.770283784, -7.433161091, -6.427846086, -7.657749301, -6.44972158, -6.666622803, -6.383604633, -7.985250906, -7.039153183, -7.773922771, -6.757581738, -9.528694752, -8.695796209, -6.351125758, -6.196571047, -5.206503093, -6.135228018, -6.82154947, -6.542887842, -6.193159276, -6.614232709, -7.124923795, -7.122006065, -6.782693772, -6.479791565, -9.882070661, -7.595438103, -7.374010425, -6.190195557, -6.74617501, -5.665365291, -6.373399182, -8.083417595, -7.193403327, -7.278660043, -7.883862613, -7.431802495, -8.204721059, -6.7821263, -4.817633321, -5.635750767, -6.656188303, -7.149659479, -6.702118166, -6.528349852, -5.522717874, -6.917623564, -7.227201235, -8.879946718, -7.083314784, -5.395034733, -6.868804265, -6.399805457, -7.175588001, -5.436626431, -6.182840158, -5.593011227, -5.377102889, -6.762587216, -5.908211905, -5.95886674, -4.734201601, -6.23735826, -5.490525731, -6.530714051, -7.259219528, -7.347907944, -6.352090854, -7.084267768, -5.963672836, -6.21105957, -6.407320152, -6.433486576, -8.747932419, -6.105558576, -5.505897789, -15.316834062, -5.607287539, -6.735383152, -6.091054634, -6.837475652, -6.859472854, -8.087017836, -8.447143848, -6.115461642, -6.18641364, -6.804381274, -7.587306913]}, {"log_prior": -0.700305407, "feature_log_probs": [-5.853540681, -5.688047896, -6.481572355, -6.500051995, -6.579292989, -6.886152963, -6.926219881, -6.688836334, -6.901450219, -7.015490487, -6.725242584, -6.255070396, -6.86641778, -6.526246307, -7.492575962, -7.010069457, -6.763411545, -6.375723636, -6.874147671, -6.579428231, -7.556462042, -6.548239352, -6.147495958, -6.705593492, -6.049676575, -6.107450941, -6.37597602, -6.078706921, -6.461907953, -6.507003482, -6.955564757, -6.228284893, -6.852789601, -10.27045751, -6.761584368, -6.73979971, -6.615425339, -5.964922222, -6.675893792, -6.32801391, -7.082770789, -6.563397792, -6.682380727, -6.485824214, -6.824113201, -6.499261047, -6.023337594, -6.475331833, -7.328630311, -7.641957561, -9.036884716, -6.123068268, -6.769590475, -6.336045796, -6.496635744, -8.042304593, -5.766717999, -6.855627493, -8.911971288, -9.05842025, -7.517017762, -8.041937745, -5.705336296, -5.859268925, -6.075802093, -5.723802266, -6.473179349, -6.286619143, -5.848716804, -6.480716347, -5.708417834, -5.521149829, -6.086050089, -7.021271183, -6.497470676, -6.759603803, -6.319611816, -6.279274152, -6.643700685, -15.29671878, -5.786548001, -7.383444289, -6.455041499, -6.002186151, -6.30491112, -6.884120188, -7.44854629, -5.734423177, -6.349773651, -6.51639503, -5.977908426, -7.02904972, -6.464301502, -6.155890526, -6.423775776, -7.551576365, -6.279841191, -6.926561064, -6.725546788, -5.606302269, -7.389217822, -8.873096677, -8.432851496, -6.548140457, -6.703944893, -6.706744708, -6.786123831, -7.641157349, -10.635669396, -6.301070316, -7.039258131, -7.16240301, -7.672019401, -5.906516511, -6.350882687, -6.628108573, -6.297115702, -6.045533433, -6.173029304, -5.597499044, -8.558650784, -6.812277655, -7.098312245, -7.592664946, -7.647816947, -6.483169404, -5.874658016, -6.504755275, -7.09306845, -6.765484787, -6.043397595, -6.914569821, -6.141748602, -6.027316787, -6.45368373, -6.690471787, -6.41368598, -7.002706905, -6.752264432, -5.204533478, -6.130131629, -5.629047057, -6.235987803, -6.587919996, -6.841216519, -6.162487522, -6.606227162, -6.338901601, -7.705660789, -7.740296239, -5.690921775, -6.126642726, -5.709937915, -6.786433267, -6.920224734, -15.29671878, -5.892068203, -6.125792739, -6.070826917, -5.325952141, -7.689948199, -7.88892265, -6.201242046, -6.727294294, -6.824428888, -6.317162433, -9.89219972, -6.177259235, -6.536833173, -6.887048332, -6.222710558, -5.928688577, -6.404071802, -6.56840465, -6.805120804, -6.511377591, -6.133323181, -6.799711572, -5.950345168, -6.980387238, -7.400834366, -6.032583583, -6.946987966, -6.067043923, -6.099413071, -6.170830578, -6.292739766, -6.482972668, -6.683617033, -6.800113759, -6.610966356, -5.952689575, -7.699979248, -6.520043732, -6.52184075, -6.755738065, -7.019766372, -6.869653015, -6.333543198, -6.347947583, -6.288020251, -5.77491094, -6.178351253, -5.975497343, -6.331309025, -6.685495158, -6.484770779, -6.230205521, -5.483852783, -6.16200625, -6.2891386, -6.831821913, -6.391193198, -6.257706113, -7.581673842, -6.783363673, -5.901868159, -5.603475056, -5.556221042, -6.184424618, -5.752516215, -5.804067911, -6.842248601, -6.729711554, -6.494489877, -6.268136888, -6.196649038, -6.30968898, -6.331315784, -5.822022454, -7.728537506, -5.719000801, -7.437048054, -5.740084935, -6.240617873, -6.157115285, -6.824404611, -6.228622847, -8.321318807, -6.935331164, -7.954086199, -6.995076275, -6.403940042, -6.424466658, -7.959047312, -9.581218469, -5.872765153, -6.18353044, -6.549181694, -10.797678996, -6.030776842, -6.004331305, -6.482958121, -6.786565598, -6.039428437, -6.784489374, -6.485720518, -6.238641084, -5.7540027, -6.831845754, -6.723180647, -7.569760887, -6.233012227, -6.431494814, -6.442072122, -6.962878316, -6.09510905, -6.296808801, -6.22157432, -6.164460861, -8.049981993, -8.313913735, -5.549985623, -6.024038714, -6.638974985, -6.206359065, -6.178244355, -9.113512971, -6.236149773, -6.829765138, -7.00186781, -6.47792792, -6.117323804, -6.261490959, -6.368659171, -5.586668708, -6.532644451, -8.311891574, -7.773611914, -6.264211733, -6.344848087, -6.747357132, -6.864864641, -6.058296519, -5.894567982, -6.230896706, -6.612258521, -5.677880695, -6.201536086, -8.187966933, -5.735700086, -6.536963024, -5.900120945, -6.238770658, -6.621156609, -5.890663917, -5.9385777, -6.192938885, -6.407131457, -6.930911317, -6.821487514, -6.443656148, -5.35561746, -6.114121143, -6.092208418, -6.005745795, -5.975359711, -7.626712403, -6.642663826, -6.513223443, -6.603456722, -6.266139046, -5.94838011, -6.919944417, -6.949286543, -6.228803368, -6.293094581, -6.465704089, -6.492793431, -5.974969939, -6.856348594, -5.844208099, -6.514728852, -6.161617056, -7.669006932, -5.828485358, -6.695606774, -6.669099505, -5.635280042, -6.708069201, -6.619678406, -9.860717073, -6.413296788, -4.914688425, -6.356508303, -7.22130954, -6.573434736, -6.53863382, -6.665565136, -5.987940294, -6.493526879, -7.024230401, -6.515067853, -6.768527888, -6.030052039, -6.813787958, -6.265536805, -6.215524272, -6.755692389, -6.770922715, -6.329406821, -6.744483455, -6.817570676, -6.681930678, -6.028525913, -6.628823195, -6.681774732, -6.537406425, -6.324745028, -6.303902925, -6.051903665, -6.674393837, -6.21939357, -6.035423006, -6.359078327, -9.711504684, -6.819524278, -6.494680371, -6.584613668, -7.395869234, -6.788986868, -7.086270248, -5.933402333, -6.524091342, -7.744902017, -6.53392958, -6.165303172, -8.197892815, -6.965510592, -5.889398962, -6.467598171, -6.386328022, -6.277703891, -5.904221218, -6.503536369, -6.262916923, -6.540991039, -6.569627907, -6.334234077, -6.39895863, -6.303139672, -6.336063205, -6.033172549, -6.233967838, -6.358486945, -6.411338597, -6.216563672, -6.294003704, -6.401666911, -6.736285626, -6.036824529, -6.672107949, -7.018232916, -6.321507809, -6.453054824, -6.644926284, -6.626503846, -6.423019438, -6.547433372, -6.60375657, -5.862458889, -6.825685197, -5.579078152, -5.75945996, -6.526551785, -6.563463377, -6.7916339, -7.837664431, -7.145633902, -5.805922079, -6.749783732, -6.45746892, -6.215054803, -7.121073925, -6.556957867, -5.785880662, -6.123588894, -6.803034007, -6.384479534, -6.109042742, -6.43114491, -9.544736257, -6.785005209, -5.864122966, -6.054659355, -6.22099957, -7.350190639, -5.966911467, -6.235850237, -7.216690432, -6.522469163, -6.39683105, -7.064730054, -5.818623565, -6.316662666, -7.767166712, -8.736297809, -6.354924204, -6.327187292, -6.351939079, -6.326233197, -5.933813283, -7.205070057, -6.962410479, -6.125541307, -6.365247822, -9.661337677, -6.291788863, -6.34967109, -6.468901374, -6.297353924, -5.87744703, -6.480639154, -7.042556876, -6.145535716, -7.906960224, -15.29671878, -10.289420341, -5.363202756, -9.082494593, -6.661940525, -6.818160924, -6.239025385, -6.830864747, -6.432321155, -6.367047238, -6.804477439, -8.213379198, -6.765795652, -6.850054119, -6.066633846, -6.23244739, -6.631987797, -5.750144908, -6.086897556, -6.511381294, -6.577344861, -6.514477719, -6.995266375, -6.567308725, -5.937516309, -6.007097689, -6.64677617, -6.779157053, -7.487552401, -6.209493305, -6.087290599, -6.949244772, -7.811999055, -6.633437416, -6.448792523, -6.617223741, -6.459004469, -6.404151711, -8.199705105, -5.756490078, -6.619729974, -6.57390527, -7.856787791, -6.36061392, -6.22723863, -6.628407128, -7.050272483, -7.018623511, -6.31069183, -10.991050636, -6.090766819, -5.803013921, -5.569436003, -6.371599566, -5.971126434, -6.772740397, -6.033718822, -6.011182675, -6.234341734, -6.645772075, -6.627210819, -6.010573966, -5.775355932, -6.317308746, -6.201789397, -6.444418356, -6.5425451, -7.11124265, -5.908960495, -6.212180002, -6.724817393, -6.355635947, -6.653297143, -5.944524982, -7.0406161, -5.452665119, -5.69515787, -7.119096281, -6.411140519, -6.221928576, -6.796790059, -5.755154519, -6.656042733, -6.213275336, -6.925607272, -7.042905381, -5.608246263, -6.470708798, -6.115346335, -6.459154113, -9.908893037, -7.441025194, -7.163424816, -5.468688439, -6.667926744, -8.269300379, -8.429205156, -6.367722537, -7.249257359, -5.375065882, -6.276822226, -6.336301455, -6.248632786, -6.140360955, -6.368503669, -6.372874769, -7.604982169, -7.705900212, -12.61024756, -5.573921706, -6.386213467, -8.191411678, -5.992769172, -5.373008223, -6.063416297, -6.491230253, -5.398045289, -6.560748419, -6.267766031, -6.076255841, -5.426099065, -5.399039771, -6.743199768, -6.046306282]}], "model_type": "nb", "positive_class_label": "home_and_garden", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"use": [551, 1.468721486], "great": [220, 1.990618038], "hot": [241, 3.047871049], "types": [546, 3.128374268], "quickly": [415, 2.749199855], "mean": [320, 2.90883], "does": [156, 2.085160758], "help": [231, 1.900731719], "save": [442, 2.80395037], "bit": [66, 2.420367973], "let": [282, 2.041810318], "make": [312, 1.451781499], "thing": [526, 2.270017171], "actually": [27, 2.222920487], "goes": [215, 2.889781805], "hold": [236, 2.958101049], "point": [389, 2.377071167], "perfect": [371, 2.697291995], "needed": [339, 2.795329627], "100": [2, 2.799630708], "using": [557, 1.800648261], "need": [338, 1.574335135], "size": [472, 2.85729635], "needs": [340, 2.608013411], "add": [28, 2.237554895], "10": [1, 2.002201179], "cut": [137, 2.999344008], "used": [552, 1.856127413], "step": [496, 2.732939334], "half": [224, 2.928248086], "box": [73, 2.913649287], "deep": [144, 3.122404101], "want": [569, 1.628965102], "check": [96, 2.311473884], "sure": [506, 2.039792153], "click": [104, 3.386555676], "page": [364, 2.918491911], "project": [406, 2.923358101], "little": [294, 1.934633271], "place": [382, 1.990618038], "inside": [259, 2.618746966], "problem": [400, 2.586885864], "remove": [428, 2.904033828], "getting": [212, 2.287943387], "remember": [426, 2.988872708], "favorite": [188, 2.825833081], "board": [69, 3.341093302], "try": [540, 2.343734747], "room": [437, 2.330166017], "work": [589, 1.711126809], "home": [237, 1.730175004], "read": [420, 2.351965246], "design": [145, 2.799630708], "tips": [531, 3.047871049], "way": [575, 1.548100026], "value": [559, 2.928248086], "exactly": [177, 2.948050714], "ve": [562, 1.780223356], "guide": [222, 3.047871049], "know": [272, 1.866245543], "choose": [98, 2.875730052], "companies": [118, 3.081582106], "bathroom": [58, 3.276554781], "ideas": [248, 3.255935493], "small": [474, 2.017857077], "space": [483, 2.474926957], "theory": [524, 3.851918925], "yes": [598, 3.110569643], "shower": [466, 3.735508574], "away": [53, 2.115141591], "screen": [446, 3.410086173], "open": [357, 2.32478966], "area": [43, 2.685686449], "probably": [399, 2.478047084], "include": [252, 2.74510987], "image": [250, 3.255935493], "water": [573, 2.42925692], "job": [266, 2.774097406], "created": [134, 2.923358101], "entire": [174, 2.90883], "common": [116, 2.716938993], "method": [324, 3.229088243], "creating": [135, 3.031432322], "install": [261, 3.426086514], "type": [545, 2.80395037], "option": [358, 2.928248086], "ready": [421, 2.948050714], "non": [347, 2.880392065], "lower": [308, 3.087312781], "section": [449, 3.426086514], "wall": [568, 2.904033828], "set": [461, 1.920218607], "worth": [593, 2.834722028], "door": [160, 2.662871771], "case": [90, 2.420367973], "example": [178, 2.28536274], "super": [504, 3.202942963], "look": [302, 1.943749104], "second": [448, 2.573044813], "easily": [164, 2.586885864], "general": [210, 2.928248086], "easier": [163, 2.636896285], "clean": [100, 2.50016489], "better": [63, 1.916647175], "standard": [489, 3.058982274], "related": [425, 3.058982274], "isn": [264, 2.3941656], "ll": [297, 1.824745812], "expensive": [180, 3.026012255], "months": [333, 2.848205379], "hard": [226, 2.42628515], "main": [310, 2.983677891], "style": [503, 3.042361393], "cost": [129, 2.720915141], "usually": [558, 2.875730052], "000": [0, 2.871089672], "company": [119, 2.496975094], "including": [254, 2.32478966], "pay": [369, 3.116469365], "offer": [350, 2.923358101], "complete": [121, 3.036881927], "surface": [507, 3.319114395], "popular": [391, 2.839196309], "low": [307, 2.712978591], "going": [216, 2.106483528], "aren": [44, 2.786782566], "good": [217, 1.789598425], "dry": [161, 3.093076486], "consider": [125, 2.670418977], "start": [490, 2.093635385], "think": [528, 2.051962689], "thought": [529, 2.724907162], "pick": [379, 3.047871049], "modern": [330, 3.196512073], "country": [130, 3.418054343], "head": [228, 2.889781805], "avoid": [52, 3.075884085], "hair": [223, 3.780459961], "don": [159, 1.594796207], "useful": [553, 2.871089672], "cleaning": [102, 2.80395037], "best": [62, 1.816648602], "solution": [481, 2.834722028], "designed": [146, 2.795329627], "allows": [35, 2.904033828], "personal": [374, 3.058982274], "making": [314, 2.095765312], "power": [395, 2.522782978], "high": [233, 2.21568282], "easy": [165, 1.973491074], "access": [23, 2.899260549], "running": [440, 2.791046965], "create": [133, 2.254903533], "natural": [337, 2.948050714], "glass": [214, 3.341093302], "stop": [497, 2.899260549], "makes": [313, 2.143809485], "store": [499, 2.604461009], "soap": [477, 3.671657102], "built": [78, 2.629596982], "storage": [498, 2.983677891], "doesn": [157, 2.097899784], "important": [251, 2.349214212], "lighting": [287, 3.442347035], "kitchen": [271, 2.685686449], "org": [361, 4.07198081], "online": [356, 2.866470727], "ask": [47, 2.938100383], "offers": [351, 3.004621065], "service": [459, 2.973368522], "year": [596, 2.126070661], "products": [405, 2.314122893], "memory": [323, 3.735508574], "fact": [184, 2.569614278], "years": [597, 2.033761984], "battery": [60, 3.631247563], "today": [532, 2.552635941], "batteries": [59, 4.103233354], "free": [203, 2.247431518], "comes": [114, 2.332865074], "energy": [172, 3.053411229], "effect": [168, 3.28352345], "charge": [95, 3.769031266], "new": [343, 1.528563385], "large": [275, 2.5834076], "performance": [372, 3.255935493], "50": [19, 2.894509947], "self": [453, 3.075884085], "short": [465, 2.913649287], "longer": [301, 2.6553811], "early": [162, 2.85729635], "true": [539, 2.943063172], "includes": [253, 3.042361393], "simple": [468, 2.173323546], "based": [56, 2.28536274], "left": [281, 2.604461009], "days": [142, 2.604461009], "user": [554, 3.171194265], "life": [285, 2.093635385], "known": [273, 2.812646077], "possible": [392, 2.402823663], "called": [83, 2.516268297], "current": [136, 2.953063255], "automatically": [49, 3.177463878], "old": [354, 2.332865074], "24": [15, 3.047871049], "hours": [242, 2.795329627], "follow": [199, 2.795329627], "care": [89, 2.852740534], "unique": [548, 3.242421774], "following": [200, 2.834722028], "site": [471, 3.152617879], "university": [549, 3.319114395], "language": [274, 3.803716824], "form": [202, 2.928248086], "email": [170, 3.140422606], "answer": [38, 3.171194265], "question": [413, 3.004621065], "group": [221, 2.817022451], "share": [464, 2.678023576], "rest": [430, 2.85729635], "instead": [262, 2.232652924], "turn": [542, 2.259916075], "able": [22, 2.23021092], "light": [286, 2.377071167], "reach": [419, 3.093076486], "color": [110, 2.999344008], "code": [109, 3.262761458], "plastic": [384, 3.29760819], "especially": [175, 2.539257815], "live": [295, 2.5834076], "clutter": [108, 3.851918925], "bed": [61, 3.311894147], "spend": [486, 3.020621406], "state": [493, 3.031432322], "seen": [451, 2.765729157], "client": [105, 4.354547782], "15": [7, 2.545924507], "problems": [401, 2.948050714], "money": [331, 2.662871771], "business": [80, 3.036881927], "leave": [279, 2.625967214], "clear": [103, 2.644249259], "sleep": [473, 3.713768587], "human": [246, 3.356018952], "ones": [355, 2.885075914], "website": [578, 3.363566158], "wood": [587, 3.510169632], "gets": [211, 2.889781805], "buy": [82, 2.43822559], "idea": [247, 2.535941063], "book": [71, 2.994094652], "remote": [427, 3.564236853], "takes": [511, 2.678023576], "minutes": [327, 2.659119422], "note": [348, 2.875730052], "local": [298, 3.009926117], "simply": [469, 2.453354472], "come": [113, 2.1326859], "end": [171, 2.173323546], "fit": [197, 3.009926117], "table": [510, 3.134380292], "level": [283, 2.618746966], "13": [5, 2.963164351], "learn": [278, 2.843690698], "available": [51, 2.408637633], "text": [521, 3.601977181], "feel": [191, 2.371437349], "post": [393, 2.597393842], "source": [482, 3.140422606], "love": [306, 2.405726423], "doing": [158, 2.539257815], "month": [332, 2.958101049], "blog": [68, 3.37883363], "instagram": [260, 3.91563474], "helpful": [232, 3.410086173], "couple": [131, 2.938100383], "day": [141, 2.031759982], "daily": [138, 3.098873603], "facebook": [183, 3.501435952], "added": [29, 2.769904528], "phone": [376, 2.821418063], "course": [132, 2.496975094], "posts": [394, 3.682019889], "quite": [416, 2.749199855], "really": [423, 1.962233919], "long": [300, 1.934633271], "things": [527, 1.800648261], "having": [227, 2.368632298], "started": [491, 2.659119422], "process": [402, 2.462542898], "product": [403, 2.600921182], "looking": [303, 2.222920487], "approach": [42, 3.242421774], "order": [360, 2.529340379], "got": [219, 2.529340379], "ago": [31, 2.904033828], "lot": [305, 2.074667483], "similar": [467, 2.576487157], "mind": [326, 2.728915184], "clothes": [107, 3.418054343], "starting": [492, 2.943063172], "major": [311, 2.978509921], "development": [147, 3.319114395], "different": [152, 2.039792153], "right": [435, 1.913088452], "update": [550, 3.394337816], "price": [398, 2.885075914], "category": [91, 3.631247563], "model": [329, 3.075884085], "times": [530, 2.349214212], "taking": [512, 2.693408495], "public": [410, 3.255935493], "homes": [239, 3.249155806], "social": [478, 3.116469365], "media": [322, 3.209415478], "million": [325, 3.333713194], "piece": [381, 2.973368522], "sense": [454, 2.761571147], "world": [592, 2.295725528], "experience": [181, 2.600921182], "given": [213, 2.80395037], "items": [265, 2.913649287], "body": [70, 3.190122275], "quality": [411, 2.978509921], "control": [127, 2.399929305], "ability": [21, 3.009926117], "past": [368, 2.913649287], "women": [585, 3.601977181], "won": [586, 2.32478966], "internet": [263, 3.134380292], "smart": [475, 2.5938789], "devices": [149, 2.689540018], "lights": [288, 2.904033828], "security": [450, 2.994094652], "cameras": [86, 3.876920228], "multiple": [336, 2.821418063], "services": [460, 3.020621406], "automation": [50, 3.555020198], "hub": [244, 3.104704524], "single": [470, 2.493795441], "kind": [269, 2.689540018], "basic": [57, 3.015259463], "link": [291, 3.122404101], "uses": [556, 2.778307939], "existing": [179, 3.209415478], "device": [148, 2.830267678], "connected": [124, 2.994094652], "systems": [509, 3.104704524], "motion": [334, 3.37883363], "compatible": [120, 3.492777889], "technology": [516, 3.081582106], "button": [81, 3.442347035], "range": [417, 2.871089672], "wave": [574, 3.641197894], "options": [359, 2.74510987], "completely": [122, 2.928248086], "means": [321, 2.363045692], "wi": [582, 3.555020198], "fi": [192, 3.501435952], "network": [342, 3.177463878], "support": [505, 2.618746966], "window": [583, 3.304725657], "sensors": [456, 3.37883363], "higher": [234, 3.058982274], "allow": [34, 2.728915184], "connect": [123, 3.104704524], "mobile": [328, 3.501435952], "app": [39, 2.741036544], "platform": [385, 3.171194265], "apple": [40, 3.564236853], "homekit": [238, 4.314542447], "ifttt": [249, 3.876920228], "links": [292, 3.229088243], "nest": [341, 3.582928986], "samsung": [441, 3.621395267], "wink": [584, 4.203316812], "amazon": [36, 2.732939334], "alexa": [33, 3.671657102], "voice": [567, 3.326387154], "philips": [375, 3.582928986], "hue": [245, 3.501435952], "smartthings": [476, 3.06458453], "works": [591, 2.293124746], "directly": [154, 2.938100383], "google": [218, 2.830267678], "assistant": [48, 3.631247563], "plus": [388, 2.904033828], "kit": [270, 3.475683456], "choice": [97, 3.075884085], "echo": [166, 3.792020784], "certain": [92, 2.80395037], "tv": [543, 3.242421774], "thermostat": [525, 3.703073298], "temperature": [518, 3.242421774], "sensor": [455, 3.475683456], "number": [349, 2.411557343], "party": [367, 3.235732786], "team": [515, 3.058982274], "plug": [387, 3.510169632], "changes": [94, 3.036881927], "plan": [383, 3.058982274], "paper": [366, 2.973368522], "week": [579, 2.670418977], "went": [580, 3.020621406], "friends": [204, 2.999344008], "shape": [463, 3.582928986], "thanks": [522, 3.158771745], "food": [201, 2.85729635], "stay": [495, 3.036881927], "20": [11, 2.447275426], "fast": [187, 3.031432322], "results": [432, 2.885075914], "cleaner": [101, 3.434183725], "living": [296, 2.712978591], "white": [581, 2.618746966], "vinegar": [566, 3.91563474], "baking": [55, 3.983688203], "soda": [479, 4.103233354], "cool": [128, 3.122404101], "big": [64, 2.314122893], "building": [77, 2.899260549], "features": [190, 2.812646077], "list": [293, 2.441233111], "rules": [438, 3.402180994], "30": [17, 2.549274594], "later": [276, 2.608013411], "bring": [75, 2.85729635], "tap": [514, 3.839648833], "speed": [485, 3.458876337], "software": [480, 3.458876337], "99": [20, 3.450577535], "real": [422, 2.496975094], "electric": [169, 3.769031266], "specific": [484, 2.629596982], "person": [373, 2.749199855], "bulbs": [79, 3.59240773], "far": [186, 2.529340379], "reason": [424, 2.889781805], "switch": [508, 3.128374268], "house": [243, 2.235100906], "coming": [115, 2.948050714], "adding": [30, 2.953063255], "build": [76, 2.709033813], "web": [577, 3.235732786], "hand": [225, 2.539257815], "community": [117, 3.202942963], "wanted": [570, 3.020621406], "various": [561, 3.158771745], "nice": [345, 2.963164351], "25": [16, 2.918491911], "heat": [230, 3.458876337], "tool": [535, 3.209415478], "family": [185, 2.753306637], "did": [150, 2.210886648], "maybe": [319, 2.875730052], "picture": [380, 3.434183725], "didn": [151, 2.5834076], "stuff": [502, 2.889781805], "market": [316, 2.782536275], "function": [206, 3.501435952], "levels": [284, 3.363566158], "talk": [513, 3.075884085], "individual": [256, 3.215930159], "mr": [335, 4.103233354], "machine": [309, 3.304725657], "17": [9, 3.171194265], "difficult": [153, 2.904033828], "took": [534, 2.85729635], "test": [520, 3.009926117], "night": [346, 2.963164351], "play": [386, 2.933162101], "article": [46, 2.839196309], "game": [208, 3.255935493], "wash": [571, 3.564236853], "washing": [572, 3.492777889], "came": [84, 2.90883], "tell": [517, 2.753306637], "points": [390, 3.341093302], "18": [10, 2.994094652], "fine": [196, 3.164963715], "laundry": [277, 3.65124823], "ways": [576, 2.456407909], "12": [4, 2.644249259], "extra": [182, 2.765729157], "change": [93, 2.379900023], "setting": [462, 3.122404101], "questions": [414, 3.098873603], "pretty": [397, 2.496975094], "provide": [408, 2.812646077], "feature": [189, 3.042361393], "trying": [541, 2.681847673], "files": [195, 4.221016389], "data": [139, 2.889781805], "users": [555, 2.953063255], "action": [26, 3.29760819], "run": [439, 2.450310329], "bad": [54, 2.913649287], "deal": [143, 2.973368522], "focus": [198, 3.075884085], "told": [533, 3.06458453], "looks": [304, 2.848205379], "books": [72, 3.356018952], "twitter": [544, 3.418054343], "values": [560, 3.928879967], "likely": [289, 2.625967214], "future": [207, 2.678023576], "term": [519, 3.255935493], "series": [457, 3.209415478], "information": [258, 2.644249259], "2019": [13, 3.434183725], "matter": [318, 2.782536275], "40": [18, 3.158771745], "view": [565, 3.036881927], "11": [3, 2.769904528], "version": [563, 2.880392065], "states": [494, 3.326387154], "say": [443, 2.295725528], "dishwasher": [155, 3.769031266], "write": [594, 3.269634338], "review": [434, 3.190122275], "lock": [299, 3.74655841], "account": [25, 3.122404101], "search": [447, 3.104704524], "select": [452, 3.467244587], "led": [280, 3.183773047], "physical": [378, 3.356018952], "content": [126, 3.215930159], "tools": [536, 2.923358101], "key": [268, 2.825833081], "close": [106, 2.85729635], "car": [87, 3.290541023], "application": [41, 3.682019889], "result": [431, 3.004621065], "school": [444, 3.255935493], "travel": [538, 3.582928986], "14": [6, 2.988872708], "16": [8, 3.009926117], "21": [14, 3.492777889], "rate": [418, 3.582928986], "line": [290, 2.791046965], "outside": [363, 2.786782566], "york": [599, 3.371170757], "oil": [353, 3.527869209], "according": [24, 2.765729157], "working": [590, 2.545924507], "video": [564, 2.894509947], "camera": [85, 3.564236853], "air": [32, 2.90883], "games": [209, 3.942302987], "news": [344, 3.128374268], "health": [229, 3.37883363], "office": [352, 3.311894147], "understand": [547, 3.053411229], "brand": [74, 3.036881927], "fun": [205, 3.031432322], "photo": [377, 3.527869209], "original": [362, 3.116469365], "percent": [370, 3.29760819], "engine": [173, 4.152023518], "american": [37, 3.37883363], "card": [88, 3.864341445], "city": [99, 3.28352345], "black": [67, 3.190122275], "field": [193, 3.518980261], "bike": [65, 4.635450167], "journal": [267, 3.942302987], "science": [445, 3.573539246], "story": [500, 3.122404101], "industry": [257, 3.371170757], "pages": [365, 3.864341445], "history": [235, 3.458876337], "production": [404, 3.864341445], "press": [396, 3.37883363], "2011": [12, 3.928879967], "property": [407, 4.026860375], "man": [315, 3.450577535], "research": [429, 2.943063172], "estate": [176, 4.239034895], "study": [501, 3.410086173], "writing": [595, 3.426086514], "art": [45, 3.555020198], "road": [436, 3.703073298], "file": [194, 3.75773171], "training": [537, 3.928879967], "edit": [167, 4.026860375], "column": [111, 4.508698462], "server": [458, 4.257384034], "spider": [487, 5.681418723], "index": [255, 4.508698462], "horse": [240, 5.413154736], "psychology": [409, 4.635450167], "theme": [523, 4.532796013], "database": [140, 4.135494216], "columns": [112, 5.201845642], "mary": [317, 5.201845642], "query": [412, 4.780632177], "retrieved": [433, 4.91416357], "sql": [488, 5.110873864], "wordpress": [588, 4.635450167]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_internet_and_telecom.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_internet_and_telecom.json deleted file mode 100644 index 7169e60..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_internet_and_telecom.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.683239102, "feature_log_probs": [-6.657528151, -8.083474859, -8.26922814, -6.546523843, -7.233036298, -7.181976075, -7.278055171, -7.62633704, -7.792375568, -7.333097143, -7.757219501, -8.405057573, -7.914990769, -7.428981872, -8.158819041, -8.267423759, -7.130825833, -8.278256751, -8.285898012, -7.935042716, -8.221928805, -7.511476428, -7.424279062, -7.787681301, -7.950320837, -7.419429908, -7.309677835, -7.528060565, -7.150647819, -7.201152696, -7.041275191, -7.159623386, -7.819244881, -8.159130901, -8.076650354, -7.606072082, -7.410783124, -8.105905337, -8.376516149, -8.725543576, -8.45396658, -7.126053511, -8.391637298, -8.598307115, -8.534794128, -7.836114999, -7.353092349, -7.917391115, -6.228697753, -8.093683168, -8.439052656, -8.154020962, -7.557109294, -7.081479378, -6.335936085, -5.733551374, -6.820770165, -5.777127989, -6.721518629, -7.9597678, -7.242188764, -7.524648022, -6.290431927, -8.042882829, -6.974776382, -6.881742517, -6.280544278, -6.984487755, -7.243168342, -7.267235279, -7.173177764, -6.058382068, -6.732472426, -6.509276011, -7.280750185, -7.63588525, -7.214819725, -8.32698023, -7.858763531, -7.218198746, -8.766454494, -6.101142704, -6.949206007, -7.792241971, -7.523438601, -6.823071676, -7.621369403, -6.818983215, -8.113654809, -7.672751309, -7.926743039, -7.35991986, -5.582955458, -11.589491022, -10.214895848, -6.719580829, -6.818828474, -6.791453634, -4.866183398, -7.027272992, -6.055393208, -6.494328547, -6.940062143, -8.152492602, -7.759624404, -5.477900438, -7.401108216, -8.150167741, -7.071096988, -7.198471925, -7.214348004, -8.760899664, -7.058198317, -7.234893536, -7.038703917, -7.455951341, -7.745534946, -7.840845031, -8.360673824, -7.311572059, -7.927082074, -7.866832916, -6.762758789, -6.171003996, -8.109450035, -7.839085872, -7.295124641, -7.823883259, -7.835045504, -11.065695445, -7.126962365, -6.745818155, -7.99045961, -7.113027659, -7.708272756, -6.201437755, -7.518972951, -7.636481292, -7.771659408, -7.88462082, -8.354990029, -7.927407564, -8.116577841, -7.863624734, -6.615803161, -6.587880944, -6.990526288, -8.031394336, -10.208321076, -15.348910103, -6.907191033, -5.988024957, -7.100061933, -8.0392825, -7.16939529, -6.845650835, -8.666744845, -8.71694998, -8.178450759, -8.389281584, -7.036251587, -9.811268549, -7.78139775, -8.368499746, -8.380135098, -7.372364315, -10.878268775, -6.686004564, -6.113677487, -9.76174225, -8.801314236, -6.709342143, -7.402954137, -6.83370545, -8.087248119, -6.10709031, -7.006784638, -6.595015102, -7.630687847, -8.430721293, -6.761728694, -6.575842624, -6.779664396, -5.903613465, -7.838486963, -7.583585322, -9.177858588, -8.124338732, -8.02886419, -9.858832195, -15.348910103, -7.510646972, -8.769893507, -8.124728926, -7.097407666, -7.903184781, -6.932778012, -8.492042134, -7.005254485, -7.58666061, -8.358493447, -8.270029002, -7.966722417, -6.416263345, -7.524847294, -10.282034, -7.171101644, -8.175484093, -8.333432101, -6.492555521, -7.923182597, -6.925215049, -8.248970537, -7.433832485, -7.231630488, -9.274780878, -10.203049331, -8.08315092, -8.900437054, -6.477306242, -8.760396673, -6.603935106, -6.913911408, -7.84047092, -6.68106094, -6.235823086, -7.81547988, -7.322889633, -7.575022057, -8.406445247, -7.090989292, -5.986107511, -7.162265889, -7.393637003, -7.804890872, -6.508461215, -6.448065592, -8.023777159, -8.479405255, -7.575016017, -7.133799638, -6.920818305, -6.93036113, -7.674382362, -7.388606518, -7.431708849, -6.912297447, -6.909225382, -7.68452625, -6.421547467, -5.609391691, -7.978733823, -8.05172672, -7.570253294, -7.869049473, -8.331689587, -6.641743524, -8.381534147, -8.627820382, -6.832615236, -6.914277088, -6.522466668, -7.146814837, -7.538523983, -8.518779332, -7.529445122, -7.333300221, -5.787829211, -7.179892208, -6.696995715, -7.639452036, -7.377948085, -7.739468598, -7.147687109, -8.156102039, -6.762505718, -7.231687394, -7.763011123, -7.146093599, -8.542764486, -7.8986464, -6.398207416, -7.214039645, -7.439045448, -7.352499672, -9.459855745, -7.140106945, -6.938746711, -7.467711307, -6.645785816, -6.410364723, -8.422914467, -7.476194997, -7.703476427, -5.002615106, -7.745078451, -8.855772336, -6.863985934, -6.59224751, -6.975866181, -7.358392395, -9.764748274, -8.049873039, -8.736008678, -7.427499255, -6.701318254, -8.26416866, -6.206181615, -7.879125754, -8.489417716, -8.042304663, -8.525049442, -6.624364352, -7.186019363, -6.071221453, -8.073918235, -7.566991428, -6.984177716, -7.622245178, -7.4815129, -7.31855815, -6.89323677, -7.577909579, -6.028514588, -5.739108203, -6.948444168, -7.213342582, -7.930735386, -6.394710736, -7.894194733, -6.732407645, -7.54719257, -7.089736469, -7.536008341, -8.119146267, -7.540677208, -7.235762002, -7.042960958, -6.567189266, -6.584149949, -8.841847344, -7.176727805, -6.966218101, -6.12374947, -9.393211321, -6.484191112, -9.290058482, -6.544509986, -7.294310728, -6.552994009, -7.949384508, -7.385135005, -7.50227018, -6.794388491, -7.057965195, -6.528976918, -9.038475057, -6.946449442, -8.378478002, -8.04183297, -10.049974284, -7.969122637, -10.133409692, -8.274904746, -5.558567139, -8.096928479, -7.051657128, -6.673832716, -8.783631254, -5.637251552, -6.223910256, -7.741610697, -8.57720736, -7.600189352, -7.025844244, -7.619579373, -7.584949171, -7.422569004, -7.587884154, -7.268356412, -7.886224273, -9.478537638, -7.657576074, -8.009220095, -7.929108754, -7.976202964, -7.884460609, -9.355665092, -7.404637736, -6.390778591, -7.841339537, -8.171631091, -7.182043005, -7.269019338, -7.977508133, -8.150785962, -6.585819077, -8.44046493, -7.85143352, -7.906772557, -8.708130602, -9.569651007, -8.072434259, -5.788898117, -7.26357078, -7.624331372, -7.799300053, -8.294914916, -7.882807067, -7.090475508, -6.992419047, -6.888256196, -7.3405368, -5.988445327, -7.831584608, -6.192482683, -7.779529825, -7.460163837, -7.763409263, -9.035596299, -9.44070634, -6.161328285, -7.487742266, -7.667853238, -6.170791879, -5.986140281, -10.062064869, -8.568599659, -7.421266305, -8.068497514, -7.632674419, -7.689384002, -8.365137186, -7.591303352, -7.265391175, -7.049081719, -7.040928566, -9.672574977, -8.347025406, -8.895832779, -7.232277133, -7.619551501, -8.553225561, -8.81745297, -5.987642172, -7.79306433, -7.060884604, -7.252989467, -7.915803252, -8.254668175, -8.003720501, -6.928686005, -7.658866088, -7.933027221, -8.024354264, -7.672343665, -7.887361904, -7.621269901, -7.21723117, -6.957933123, -10.361548051, -7.023700525, -7.439629355, -7.63399589, -7.359060435, -5.980829736, -7.982175256, -9.947388461, -7.632155994, -6.605162215, -8.381736673, -6.700313821, -3.611739352, -7.274863074, -7.234682066, -7.648508571, -6.76534796, -8.145134556, -8.448911723, -6.883939653, -7.885642761, -8.04444265, -7.613296497, -7.354616517, -7.745316264, -7.718077595, -7.681842042, -7.934173636, -7.811202928, -7.979134285, -8.378449975, -7.514603484, -7.610851246, -7.584466041, -6.782879372, -7.453826045, -8.092374453, -7.80386996, -9.124150088, -6.374456774, -7.890119794, -6.837175582, -7.578784292, -7.899171799, -6.03916032, -7.428468404, -8.120553536, -6.307828996, -8.827967962, -7.882022213, -7.807897822, -8.364428018, -7.834128318, -7.637254284, -15.348910103, -7.91048428, -7.744767608, -8.158822407, -6.151547222, -6.854811562, -7.411685727, -8.508122642, -7.399428909, -8.410981531, -6.766429512, -6.854943901, -7.552270932, -6.69075056, -7.285218848, -6.965926704, -7.576835572, -7.201407215, -6.581046044, -8.066696728, -7.581346154, -7.854147132, -8.477469974, -6.489081644, -8.123300999, -6.937565809, -8.062705554, -7.212320295, -6.897800718, -5.553879216, -7.391184302, -7.493925169, -7.1753483, -7.563765966, -7.009532229, -7.849793837, -7.25266252, -6.897410121, -7.609305663, -7.851306193, -5.276099239, -8.841981289, -8.335444936, -7.850289715, -5.989687087, -6.315872937, -6.545756732, -6.800769039, -9.43998262, -8.360454933, -6.732287606, -7.029213366, -7.229275187, -7.737935072, -7.738486063, -8.252039237, -8.166813877, -8.482870501, -7.744212453, -7.779462315, -7.584623298, -7.182904475, -6.899266055, -7.320274185, -6.19439842, -7.644572632, -7.193902515, -8.143937681, -8.119012715, -7.502987753, -7.122982463, -7.779793757, -8.062085362, -7.248553809, -7.015851243, -7.005881289, -6.911199794, -7.275526379, -7.884698351, -7.193775581, -8.710369801, -8.073175745, -8.492615763, -7.134409359, -8.628193223, -9.627440216, -15.348910103, -6.519240434, -6.762774727, -7.319376818, -8.701641207, -7.635501753, -7.613684829, -6.754967748, -7.5793621, -7.266895874, -6.964361413, -7.698041327, -6.100187471, -6.246258371, -6.451410564, -6.953344748, -6.742659859, -8.354194354, -8.555407727, -5.79402787, -7.607460654, -6.462666612, -5.840761196, -7.132832772, -9.377855192, -6.628509837, -7.101233312, -6.548012651, -6.788245587, -7.226886088, -8.209565676, -7.953015462, -6.754681678, -7.863322779, -7.20830171, -7.586449347, -6.9186783, -7.917256923, -6.567161329, -7.329356943, -7.312294677, -7.904349661, -5.948412233, -6.723263384, -6.789766743, -8.270345813, -7.211616427, -7.724529659, -6.871508777, -6.013494375, -7.718184902, -15.348910103, -8.155950959, -6.781899724, -7.289678982, -11.147923252, -7.556873741, -7.841232387, -7.561098994, -7.791046966, -6.663016047, -6.85891231, -9.104218772, -8.393347903, -7.60666305, -8.735771544, -9.281102166, -8.065212483, -6.736397611, -6.149609283, -6.329994439, -6.798710027, -7.495705425, -6.462049605, -8.270295131, -8.395753004, -6.537236675, -7.704709776, -9.043301645, -7.267640223, -7.879920383, -4.788397106, -6.99374198, -7.524630519, -9.139484249, -7.89837079, -8.151927073, -7.329749286, -6.690000179, -6.660953132, -8.400849178, -8.680075991, -8.316607966, -9.699930045, -6.702535487, -7.179934642, -7.949390435, -7.856433314, -7.49572467, -8.746126528, -8.874509215, -7.43052814, -8.029765948, -7.591899665, -7.844106269, -6.022398501, -7.351810884, -7.460192632, -7.009601938, -5.543555601, -7.381144981, -6.097994539, -5.339385475, -6.281025226, -7.628246178, -8.434667731, -7.341967447, -8.596387382, -8.494043382, -6.947387922, -7.366899449, -7.812628513, -7.617208954, -5.590121504, -6.33120846, -7.610257742, -6.933063003, -8.11657621, -7.374430482, -6.945928996, -6.897214041, -7.544766585, -8.176659062, -7.039184328, -7.850822622, -7.631259874, -6.274032577, -6.334425125, -7.162144587, -7.986505516, -6.496615665, -6.593900607, -6.896572958, -7.491201045, -7.852413736, -7.13709345, -8.118557382, -7.826542271, -7.64318943, -7.43247555, -5.538141465, -5.876210056, -7.593487831, -8.538109454, -9.646735646, -7.388473624, -7.608076206, -8.499641723, -8.055150263, -7.246180987, -6.897781191, -7.013072993, -7.821707245, -11.342446677, -7.083456064, -7.029429083, -8.070541025, -7.090035255, -7.911898303, -7.176521848, -6.598833824, -15.348910103, -9.257006782, -5.018859513, -6.063848374, -7.067065761, -6.496783192, -7.538820696, -8.518935936, -7.606984476, -8.290760328, -6.958174819, -7.17758397, -7.129080051, -7.40832306, -7.067529547, -7.357352025, -6.847911559, -8.882389032, -7.634637292, -7.388268621, -6.872863751, -7.679001078, -7.226450789, -8.609872451, -6.837457217, -7.356678798, -8.187888425, -8.782514923, -6.870700757, -6.605174052, -7.65165678, -7.601884105, -7.202197193, -7.91008973, -8.561661781, -7.937917149, -8.155098824, -7.998891291, -7.833203573, -7.060610909, -7.880254118, -7.313168729, -7.389148067, -9.289482133, -7.792138189, -9.241221009, -6.002924487, -6.771251365, -8.343030242, -7.028995111, -6.924694579, -7.782083842, -6.852543725, -6.766039327, -9.601457057, -6.580235792, -8.78772551, -6.702046601, -7.488780434, -6.841102414, -7.775005827, -8.42829819, -9.094118907, -7.306410197, -6.597820632, -6.743079057, -7.4872629, -7.148719335, -6.992102871, -7.303417869, -7.626223667, -6.707903392, -7.524334246, -7.713732773, -8.190192174, -7.272307792, -6.944610779, -6.874293111, -6.941077106, -7.525464673, -7.27511113, -7.128053824, -7.20407602, -7.331888108, -8.74618289, -6.904298644, -7.113507425, -7.306653997, -6.903795003, -7.349852161, -8.242351426, -7.564229253, -6.479422021, -7.798098517, -8.48910151, -7.871121338, -7.672227904, -6.743967598, -8.29267264, -6.945933422, -7.436795715, -7.972419493, -7.088175344, -7.309202951, -6.931226865, -7.085037032, -8.020150925, -7.402988238, -8.189309222, -8.275807446, -8.27998913, -7.465031554, -7.05917999, -8.74279685, -8.828103116, -7.494286424, -7.263325618, -7.007100554, -7.966371119, -7.62149087, -7.170294247, -6.670166928, -7.742547807, -7.055025241, -7.077939474, -6.959896411, -7.617453242, -7.614994412, -7.722218774, -6.877980544, -7.714567309, -7.754534753, -7.528422973, -7.713732578, -7.002557228, -5.374288913, -7.376372931, -7.596405542, -7.464009259, -7.522081369, -7.990685632, -7.401022295, -9.050865234, -6.289091897, -8.571803178, -8.2665282, -8.210965722, -7.322106346, -8.362009588, -8.05081509, -8.654694509, -7.705378251, -6.886390232, -7.278464386, -7.125343534, -7.202994576, -8.198338341, -7.120208461, -8.080450201, -6.603082758, -7.929900496, -7.912590672, -8.449975638, -8.714028386, -9.262424199, -6.526742153, -4.272496395, -6.181258399, -6.993097006, -7.050215054, -7.577823917, -7.28571424, -7.099117974, -6.15126956, -7.391414959, -6.641295259, -7.982788574, -7.90044576, -6.469057551, -7.771020134, -6.985264613, -6.831089489, -7.215282178, -7.677893857, -7.726862523, -7.846325279, -6.432456576, -6.830680225, -5.452850275, -5.753694974, -7.302283373, -6.464248848, -7.012176844, -6.158536638, -6.239533812, -7.325930444, -6.617137024, -7.624411072, -7.4257516, -7.713134167, -7.044497657, -6.740768447, -6.907508042, -7.495338106, -6.859849727, -6.707727128, -6.976411583, -6.859371053, -7.557208443, -5.49458676, -6.093126004, -8.411214312, -7.552284077, -8.739980481, -8.122969678, -7.716010683, -6.808516573, -7.769485205, -7.058029551, -6.74546769, -6.654900431, -6.741182249, -8.407753112, -7.427865792, -9.287656038, -11.347352446, -6.931870201, -7.68790554, -7.627103492, -6.751280478, -7.66000167, -8.00845008, -6.84296328, -7.996690961, -6.542880843, -6.94011208, -6.306075995, -7.725992456, -8.349734409, -8.156620166, -9.560614783, -7.022909633, -7.707279705, -6.78730414, -6.930412392, -7.336217534, -7.655837662, -7.818895262, -7.504190836, -7.791127331, -7.664025823, -6.809335021, -7.15894805, -7.231507871, -6.667813613, -6.485459776, -7.246937445, -7.579091556, -7.507295855, -7.900477138, -7.87128551, -7.811556022, -8.33942118, -9.211083046, -8.931783753, -8.28944574, -7.888067748, -8.801946349, -7.576479066, -8.346686182, -8.388222502, -8.651777069, -9.817242275, -6.236058564, -6.701242039, -7.079651226, -6.981724024, -8.320473882, -7.293181555, -8.011219265, -7.68062578, -7.351845607, -7.347163064, -8.090152105, -6.291228645, -7.284789534, -9.81887555, -6.806146174, -7.089795277, -6.371988342, -6.833957885, -7.033454076, -8.625611316, -7.739560012, -7.250535785, -6.818772589, -7.395931482, -8.463051255, -6.342241778, -7.351596405, -8.363235496, -9.033264398, -9.07764103, -6.857000535, -6.505438385, -6.70667221, -8.417484412, -7.86678399, -7.951784825, -7.010185968, -7.883338125, -7.226135509, -7.299452718, -6.139453429, -7.176983411, -7.706145067, -6.454763996, -6.616603791, -7.361344595, -7.222265753, -7.354747632, -7.697892813, -12.27193075, -6.93678768, -6.593338366, -7.864145821, -5.983261505, -9.354063629, -7.344033275, -7.662544483, -8.478635799, -7.799804036, -8.11592007, -8.639995116, -8.309776949, -7.168524238, -7.237230739, -6.912957595, -7.930472527, -7.457166685, -6.373390298, -6.759202592, -7.463403423, -7.804724026, -8.555066769, -7.63166605, -7.554042924, -8.186426925, -7.56123272, -7.400655965, -7.911268198, -7.763753515, -6.227648341, -6.95715123, -7.166385048, -6.473085301, -5.330133653, -6.070437554, -6.760855083, -5.864402211, -5.144985436, -6.693833118, -5.698440633, -7.498154384, -7.445366508, -8.644875934, -7.204570804, -5.987952535, -6.460965081, -6.196989996, -6.187827168, -6.722213883, -6.675165244, -7.533239096, -7.100455373, -6.012651112, -7.479568257, -5.971995548, -8.041929484, -7.244916269, -9.194555248, -7.896744427, -7.839658784, -10.737401437, -6.123216403, -6.99063894, -7.227196271, -5.157466269, -6.040577984, -6.645667198, -6.83109756, -7.80026617, -9.400251738, -7.694883583, -7.918683596, -6.273230513, -7.808884807, -6.689855022, -8.341835308, -7.499730321, -7.579041157, -7.064505907, -6.109204581, -8.795265058, -6.81959908, -7.173245378, -7.115869006, -7.271172406, -6.339791055, -7.58184466, -6.86523734, -6.680064422, -6.549463994, -7.193945427, -8.047239287, -7.931864472, -7.941454091, -8.121741753, -8.022355174, -7.58625403, -6.518189676, -6.826254058, -9.309069231, -6.398313127, -6.585514197, -7.217859633, -8.500993058, -9.110411438, -6.700888399]}, {"log_prior": -0.703154412, "feature_log_probs": [-6.177532935, -8.669235048, -8.142341714, -6.094102788, -6.998601667, -6.76583945, -6.457585789, -6.88730488, -7.039713793, -6.761608392, -6.884011179, -8.895943264, -7.143390308, -7.136416603, -7.570457531, -8.921782722, -6.543612004, -7.396781925, -8.505142003, -7.985159, -7.757641659, -8.117551853, -8.173437349, -7.421502849, -7.621925278, -7.530582741, -7.178971497, -7.383589134, -7.2801156, -7.352449496, -7.007611565, -6.838953576, -7.352084357, -7.436206612, -7.498618137, -7.243016958, -7.184588514, -7.550179235, -7.813441475, -7.779060743, -7.999767297, -6.75798936, -8.039851786, -7.930533937, -7.624323362, -7.186124559, -6.86497058, -7.549877311, -10.4795122, -7.448214114, -7.425589358, -7.537746697, -7.368711308, -7.089677968, -6.884117878, -7.01076567, -6.446015818, -6.814130915, -7.733651164, -7.087279407, -7.248887921, -7.378760937, -7.654097822, -7.314767242, -6.284470876, -7.062612026, -6.739017905, -7.307112028, -7.699900439, -7.665298546, -7.527593658, -7.614133021, -8.713813666, -8.450352157, -7.740991926, -7.516980147, -8.051348725, -6.878287521, -7.9023342, -6.775998845, -6.931331993, -8.715537059, -7.169390945, -7.712032241, -8.004950943, -7.317125623, -7.440145088, -6.828964313, -6.954647838, -6.707646212, -7.452542225, -7.909378585, -8.546034197, -6.849070487, -6.605614691, -7.595401238, -7.055326536, -8.27523714, -6.723389477, -7.672286117, -7.639648153, -7.087694436, -7.408549023, -7.449231488, -7.340751861, -7.535652564, -7.920537978, -9.283674172, -6.97076006, -7.168671025, -7.049058535, -6.790230008, -6.827465788, -7.18641121, -7.113254106, -6.940107201, -7.874912391, -7.09989746, -7.291136008, -8.222935432, -8.177358579, -6.990167073, -8.143339948, -6.675791093, -6.959143625, -7.162795815, -6.600590112, -8.35692268, -6.826549542, -7.455671555, -8.255494867, -9.646512295, -7.03791707, -7.402055321, -7.501872517, -6.441973313, -7.204580341, -7.218500235, -7.352973015, -7.586955949, -7.199803506, -6.925706096, -7.575729357, -7.335264236, -5.821647836, -6.246064309, -6.281441545, -7.444530607, -6.058095405, -7.013612777, -7.690751302, -11.053899652, -6.81957332, -6.964596901, -7.962467982, -6.344749255, -6.906045023, -6.160697557, -6.02083495, -6.614904901, -7.052744066, -6.615158109, -6.873238815, -7.30733449, -7.144974732, -7.438072044, -7.300632967, -15.480366597, -8.798858043, -7.045343312, -7.670669979, -6.956864451, -6.874013811, -6.855513963, -7.31340636, -6.363859573, -7.79377688, -7.963953947, -6.585219, -7.586092537, -7.937494467, -6.609494441, -8.002903026, -7.96271643, -6.791552908, -6.986396782, -7.303601731, -7.073685578, -7.008112277, -7.731358898, -8.02405427, -7.719477709, -6.981130639, -6.005438546, -7.028441373, -6.630394198, -10.449678476, -6.536830759, -6.385985723, -7.271490298, -7.211358495, -7.506438172, -7.233857651, -8.832235664, -7.043564807, -7.140919993, -6.988432723, -7.275961993, -7.483904048, -6.545708424, -7.645525995, -7.079382452, -7.459460242, -8.476877732, -9.198075024, -6.759391129, -6.929610737, -7.272397901, -7.347041075, -6.643117861, -6.999742941, -7.555373424, -7.767480385, -7.396585565, -7.151594366, -10.038200436, -7.534605487, -6.268516339, -7.218077726, -6.809682713, -6.939053727, -7.391808513, -7.952959869, -7.481731575, -7.099208654, -7.556616579, -7.135033141, -7.495876731, -7.25682022, -7.267896507, -6.366082747, -6.652117374, -7.080447325, -7.693555464, -7.253079394, -6.9799493, -8.307572217, -9.043238497, -6.819929911, -6.797065622, -6.282021119, -7.276131035, -7.400412389, -7.329495163, -7.331400958, -7.362906824, -7.216152479, -7.023212599, -7.195585407, -7.788989177, -7.683254941, -7.610916129, -8.159952512, -7.185660556, -7.569960402, -7.654370913, -7.610071878, -6.778477082, -7.074109321, -6.92615497, -7.239305307, -8.039014718, -7.220753511, -6.837315275, -7.113166992, -7.409665776, -6.734772066, -7.388811911, -6.574481525, -7.110683752, -7.472476412, -6.590237136, -7.015175749, -7.142381915, -7.215642029, -6.931867983, -7.22730839, -7.380003694, -7.397612303, -7.678766675, -7.137413523, -7.26854644, -7.069523711, -7.481214923, -6.068155884, -6.622430447, -7.343792827, -7.13720228, -5.75469809, -6.356327891, -7.01410172, -6.873010101, -7.678892393, -7.36580873, -7.294307543, -7.855025942, -7.730508687, -8.424062203, -7.370520869, -7.131633507, -7.757822373, -7.548021546, -6.494081114, -7.00632526, -9.345743863, -7.175314727, -7.614088697, -7.479412722, -7.923238409, -7.383690572, -7.984791333, -7.747532533, -6.986313738, -7.064586924, -7.478297841, -6.326147047, -6.692064385, -7.17090818, -6.169635388, -7.038645696, -7.242075042, -7.696214441, -7.423619996, -7.636376961, -7.348918884, -8.657379444, -8.183410696, -7.65359205, -6.255493201, -6.514755912, -6.598772787, -6.576357398, -8.073595369, -5.653484393, -7.072341944, -7.823388738, -6.625978528, -7.091837709, -7.466549293, -15.480366597, -8.210346149, -7.238028457, -6.779038098, -7.373871501, -7.331359547, -6.595784275, -7.219627701, -6.805902649, -6.980031486, -7.294092655, -6.945615587, -7.46104812, -8.443926441, -7.509071954, -7.039671937, -8.348572483, -8.430363824, -6.312730765, -6.731914457, -7.495300176, -9.30948542, -7.664539843, -7.223891442, -7.597946152, -7.931070622, -7.431560654, -7.64792913, -8.133234119, -7.760344452, -6.916419112, -7.297603976, -6.878482922, -9.264000263, -7.411816929, -7.024570793, -6.989320651, -7.465192695, -6.86212365, -7.066093304, -6.588921139, -7.50860868, -7.683285141, -7.739999062, -7.315858606, -7.826006863, -7.279411893, -6.547676824, -7.478920655, -7.80262296, -7.280348945, -7.367675682, -7.39602215, -6.774290417, -6.742427717, -6.642345613, -7.78450424, -7.819747092, -7.433431821, -6.532413724, -6.659636707, -7.054219949, -7.619347717, -6.824774227, -7.617208951, -7.937764338, -7.029007602, -8.463349177, -7.464168763, -6.300846048, -7.030096345, -7.391097424, -8.005867069, -7.261892211, -7.351045927, -7.088445228, -7.87941953, -6.85340703, -7.069654204, -7.127271521, -6.886869047, -7.571458543, -7.355947288, -7.182274873, -6.854685949, -7.729277258, -6.929801465, -6.849380947, -6.044972842, -7.623422409, -7.427326587, -6.85649975, -7.339810104, -7.188369853, -7.214509658, -6.208111995, -7.121809757, -7.834825235, -6.868328051, -7.461279366, -6.981441978, -6.976789817, -6.728417967, -5.935189458, -6.618697729, -7.677344827, -6.828917303, -7.311212705, -7.751659315, -7.219159487, -6.627316637, -7.555090641, -6.953985568, -7.371948742, -7.563295516, -7.686627227, -9.262935729, -6.977759265, -7.535245078, -7.193504386, -6.234574032, -7.415863229, -5.884428385, -7.547975971, -6.640259859, -6.766407909, -8.314375967, -6.159784966, -7.61256701, -7.258809613, -6.425048334, -7.222958361, -7.45799217, -7.399340886, -7.453051723, -7.001888032, -6.729530243, -6.904160137, -7.351112562, -7.62907479, -7.426228702, -7.2424091, -6.484089119, -7.715509931, -7.469288721, -6.653527673, -6.623900763, -6.269208931, -7.400306779, -7.043102839, -6.129203015, -7.291660621, -6.104703771, -7.034190225, -7.456129799, -7.033702911, -7.230265843, -7.38333314, -6.136315402, -7.264789438, -7.237509274, -7.585288749, -7.024808616, -6.758492343, -6.362339964, -6.929973083, -7.697143989, -7.196172695, -6.488158368, -12.046686539, -7.570561752, -6.657917855, -6.907962907, -7.41519842, -15.480366597, -6.741321187, -7.19638922, -7.462885357, -6.45693747, -7.072419921, -7.01164789, -7.564503664, -7.408342814, -6.434559616, -7.060770376, -7.142848309, -7.834771023, -7.446073608, -7.026445035, -7.789654147, -9.892032593, -7.164990712, -7.065425146, -8.353962186, -6.724069517, -6.914092952, -6.967996411, -7.923585744, -7.580811973, -6.693159504, -7.508919726, -7.217194705, -7.840915075, -7.731695886, -7.335173918, -7.397591595, -7.088238929, -7.174481827, -7.498574794, -8.464569274, -8.392817518, -8.098898837, -11.895892163, -8.316566561, -15.480366597, -6.622662115, -7.349625578, -7.357032824, -7.150615124, -7.87821148, -7.193370549, -6.511277647, -6.943672513, -8.132337527, -7.433098616, -7.480222801, -6.779865509, -10.547466879, -6.595210858, -5.90898196, -7.102062977, -6.811864057, -7.443679553, -7.305464592, -7.127095857, -6.769396584, -7.416196025, -7.218801362, -6.678505297, -7.391621487, -7.777483413, -8.02662933, -7.012209234, -7.421939858, -6.578725291, -6.772072179, -6.855815078, -7.305086718, -6.842694598, -7.391958638, -7.520445939, -7.716902691, -6.338796744, -7.927701935, -6.613442457, -6.88412544, -5.749632299, -6.735513989, -6.730132504, -7.840773527, -7.371797463, -6.63503764, -7.650592629, -7.659357374, -7.46610069, -6.552893504, -6.210115016, -6.652901522, -6.962420682, -6.824637559, -5.826196003, -7.404037391, -6.910283417, -7.709494678, -7.500253705, -6.962584089, -6.137756071, -6.973741037, -6.34763575, -6.627767762, -7.122676855, -7.368638652, -7.451275382, -6.224852178, -6.256341228, -6.634120358, -7.112636539, -8.478451331, -7.389007016, -7.830271896, -7.139568085, -7.096877921, -7.909956475, -5.634337948, -6.513969866, -6.498835257, -6.490884027, -7.59956437, -7.392223625, -7.689828894, -8.951243827, -7.81079014, -8.453180442, -7.33884788, -6.559186327, -7.60191772, -7.240714075, -7.012193315, -7.029934325, -7.120954853, -7.467057963, -6.711884668, -6.706016883, -6.853047014, -7.326538435, -7.131373295, -7.319981254, -6.389684641, -7.634579279, -8.177487011, -7.583787342, -7.683302832, -8.386659839, -7.341430667, -8.32927283, -7.224006635, -7.579889618, -6.780712854, -6.633956507, -7.95774392, -6.819461381, -7.408784631, -7.818782057, -7.556096796, -6.421195206, -6.791937723, -7.029358129, -7.319219387, -6.145481272, -6.829726776, -6.840305493, -7.316195615, -7.696856146, -7.174811368, -6.685500295, -7.217054438, -6.788940993, -7.48461271, -6.872274356, -7.761132341, -6.873263554, -7.144344899, -8.371975927, -6.995605407, -7.230152905, -7.487667507, -5.883798618, -7.046213098, -6.834924609, -7.630591493, -7.295568585, -8.747077415, -8.38911171, -5.465715456, -6.905065168, -7.390647138, -6.610916457, -6.800995673, -7.265156437, -7.284520845, -7.218500525, -7.633776217, -7.399166868, -8.084195777, -6.596609683, -7.756964053, -8.012689076, -6.923877365, -7.581662639, -7.795247811, -7.251054295, -6.821776553, -7.763293742, -7.441349249, -6.343048975, -7.44670373, -7.159238003, -6.770635918, -6.654505418, -8.228080889, -7.439493212, -7.26178745, -7.159414189, -6.713845942, -7.677086223, -7.658980151, -7.197089374, -7.560238878, -7.134471534, -7.630631557, -7.814599078, -6.797366645, -7.80355578, -7.42353735, -6.827200089, -7.023886908, -7.256457113, -7.127698414, -7.260604374, -7.15811285, -7.261036383, -8.65618839, -6.689115258, -7.526629644, -6.742474874, -6.757054369, -6.615282986, -7.027443253, -6.446233037, -7.424854912, -6.477848759, -6.975425691, -6.462651879, -9.787512489, -7.767683142, -9.007465557, -7.193599599, -7.153533067, -8.227054564, -6.777080116, -7.301834559, -7.17775342, -6.492289062, -7.75633971, -6.810112136, -7.480380304, -6.999758056, -7.937980036, -6.815407066, -6.933363022, -7.289911862, -7.608837275, -6.431189126, -6.934442494, -7.00380176, -7.295126405, -6.954245205, -7.512825448, -7.280653537, -6.778789062, -6.784540016, -6.385812438, -6.707169032, -7.344499989, -6.523671353, -7.395712275, -7.188191613, -7.575044255, -7.455014517, -6.928239072, -7.18408746, -6.892674821, -7.5876184, -7.870524479, -6.608452047, -7.337767508, -7.883892158, -7.398896698, -8.350914689, -7.539084904, -7.374469554, -6.689130968, -6.733349382, -7.058972316, -6.434767706, -6.935333763, -6.906818251, -6.824410539, -7.060051045, -7.450737884, -6.912399876, -6.679286622, -7.415029283, -7.199450115, -6.656456046, -7.84438502, -8.953851403, -6.943274971, -7.860191528, -9.309595781, -8.988720412, -7.649159895, -7.893433718, -6.717013763, -7.12791785, -7.862792231, -7.50242023, -7.790244552, -7.074163741, -8.472588122, -7.879319254, -6.821353088, -6.912011538, -7.318377797, -7.009415006, -7.127459635, -6.85772689, -8.006260706, -6.971584486, -9.2974314, -9.088744814, -6.921052629, -7.277781235, -7.27269584, -6.278225552, -7.337170132, -7.073343105, -6.883186975, -7.129884395, -6.31845257, -7.184784108, -6.036780265, -7.227685299, -7.228851442, -7.656682711, -7.721308854, -6.86836335, -7.108725267, -7.519626963, -7.312059426, -7.538160077, -7.644729966, -7.79881295, -7.383959902, -6.960403992, -7.205132676, -7.263464013, -7.152001941, -7.615308507, -8.228175874, -7.32380925, -7.108100797, -7.60873371, -6.937399614, -7.308796756, -7.797589669, -7.804290896, -8.284820851, -7.485043427, -7.545127786, -7.526442299, -6.497546243, -6.774893359, -7.469495771, -7.315909228, -7.250254269, -7.001520855, -6.912562692, -7.93294553, -7.060837338, -7.88991136, -7.226622542, -7.493717967, -15.480366597, -6.909180057, -6.213023232, -7.265016866, -7.115938877, -6.945836507, -8.708350398, -7.139979927, -6.660061039, -7.539054631, -7.28321495, -6.492477415, -6.684327142, -8.446939599, -7.713850668, -7.1678816, -6.857264117, -7.302845496, -6.267203511, -7.150153122, -7.350194386, -6.783856423, -6.300456108, -6.89178536, -7.151035081, -7.437253339, -9.420499411, -8.342232412, -6.824987144, -7.194649481, -7.537110997, -8.029172171, -7.229055909, -6.693727637, -7.449329528, -6.30442785, -7.51244017, -7.749286358, -6.801864331, -7.710611375, -8.996955978, -7.922202271, -8.121446323, -6.515182322, -7.671638618, -7.257036006, -8.699639548, -6.781081432, -7.018405229, -8.451882846, -6.332456389, -7.542211055, -8.077465387, -6.839145894, -7.661572314, -7.33499753, -6.800731421, -7.803757352, -7.529254099, -7.201115176, -7.143651925, -9.117577526, -7.32530974, -7.022136202, -6.688376322, -6.895985623, -6.684935057, -9.873851848, -6.585296371, -7.516250813, -7.278905841, -6.981316362, -6.821536862, -7.615582663, -7.546525454, -6.489120068, -7.627972388, -6.857326733, -8.472135648, -6.255462115, -7.049884066, -7.137755684, -7.333738546, -7.031816208, -7.87014297, -7.290858365, -7.109105918, -7.214297713, -6.834365939, -7.991889852, -7.179131401, -6.436969302, -7.086755432, -7.201584113, -8.420984057, -6.815028433, -6.949381495, -7.53733296, -7.106544697, -7.177135709, -7.110006399, -7.963525501, -6.276783453, -6.730448126, -7.217714032, -6.527460838, -7.236062593, -7.271851563, -7.387268541, -6.96966867, -6.839490627, -7.416207986, -7.087821803, -7.248292688, -6.839851388, -7.90958068, -6.852145974, -6.479535718, -7.395078251, -6.941463621, -7.336139708, -7.473526191, -6.866690114, -7.208235135, -6.807791949, -7.018863918, -6.765653196, -7.458827012, -6.833371498, -7.233091439, -7.338907923, -7.460403858, -6.688969516, -6.452645644, -7.859030248, -6.910598127, -6.687438056, -8.100254506, -7.434361028, -6.984444363, -6.760262327, -6.829058928, -7.355656963, -8.564775747, -7.784015458, -6.783767508, -6.609005907, -7.428950303, -7.183433086, -9.663519079, -6.874339175, -7.166945474, -6.983077604, -7.26300099, -6.863244512, -7.415438519, -7.358350171, -7.507497345, -7.444900763, -6.78570255, -7.239933492, -6.740787864, -6.363212898, -6.027961609, -5.920390525, -6.964031769, -6.660306663, -7.566372019, -6.379615591, -7.154172032, -7.06451385, -7.889275453, -6.566628426, -6.582470262, -7.067544884, -7.454421756, -7.109973548, -7.758909135, -7.928987799, -7.265426042, -7.491722084, -7.064502237, -7.214036288, -8.675228132, -7.322895037, -7.521608566, -6.629142008, -6.211678238, -7.222215518, -7.239458449, -6.699695037, -7.281088003, -6.417160511, -7.15313735, -6.558976518, -6.814054889, -6.82894897, -7.364883666, -7.410292306, -7.055090118, -6.665172332, -6.964688318, -7.380362449, -6.84992975, -7.722482535, -6.853741237, -7.16374269, -7.321557343, -7.507538767, -6.736077342, -7.516915786, -7.566198212, -7.918236133, -7.892867947, -8.522938045, -5.887876934, -6.354879244, -7.213408952, -7.192809329, -6.868077241, -7.480381159, -6.386762204, -6.915065002, -6.755893789, -7.188416762, -7.338229317, -5.876660694, -11.523248366, -7.015082229, -6.93220104, -8.20394729, -6.828294454, -8.190172283, -7.256653501, -7.570917634, -7.529075742, -5.872526219, -6.851550493, -7.540287747, -7.196236284, -7.271034138, -7.237588318, -6.251597846, -5.754183212, -6.724287322, -7.920185398, -7.530160326, -6.850107117, -8.223117787, -6.476550416, -7.102734365, -6.981404082, -7.165643054, -6.670963507, -8.540556995, -7.363393415, -10.076271762, -9.372314519, -9.420508431, -7.587909297, -7.911479992, -9.5256552, -6.28485944, -6.613776443, -7.312334246, -6.376642972, -7.152865316, -5.72431337, -7.196255923, -6.536618158, -6.886386057, -5.828890275, -6.941427321, -7.480960438, -6.830647074, -6.724151961, -6.958112468, -7.277304149, -6.948050219, -8.785736897, -15.480366597, -7.792022475, -5.688952441, -5.821512994, -7.140260127, -6.616866643, -6.942229262, -8.271244597]}], "model_type": "nb", "positive_class_label": "internet_and_telecom", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"jump": [573, 3.504282929], "navigation": [701, 3.716615564], "search": [937, 2.142192169], "network": [709, 2.688533426], "collection": [237, 3.72742648], "links": [613, 2.950897691], "connected": [260, 3.307572635], "enable": [366, 3.614486069], "connect": [259, 3.20578994], "use": [1127, 1.593774707], "message": [669, 3.23193522], "signal": [973, 4.044522438], "reach": [862, 3.11341662], "destination": [316, 3.89250623], "usually": [1134, 2.916496264], "unique": [1119, 3.225334536], "address": [71, 2.960948026], "messages": [670, 3.445194012], "connections": [262, 3.760578687], "addresses": [72, 3.818398258], "called": [181, 2.314320861], "space": [1003, 2.892628782], "examples": [390, 3.521827238], "networks": [711, 3.252002783], "include": [529, 2.680870553], "computer": [256, 3.180310855], "internet": [554, 2.487163674], "telephone": [1061, 4.357394759], "global": [464, 3.397184793], "benefits": [143, 3.42090132], "networking": [710, 4.223863366], "structure": [1033, 3.760578687], "example": [389, 2.213733625], "ip": [559, 3.749405387], "data": [294, 2.124531666], "references": [881, 3.806563801], "edit": [357, 3.487041122], "information": [543, 2.124531666], "large": [584, 2.680870553], "businesses": [176, 3.539684856], "grow": [481, 3.664247578], "resources": [902, 3.548734691], "core": [272, 3.487041122], "types": [1113, 3.125251078], "devices": [324, 2.73982672], "device": [323, 2.892628782], "office": [730, 3.405027971], "share": [965, 2.600240819], "files": [425, 3.428933492], "separate": [953, 3.576386223], "range": [857, 3.161618722], "local": [621, 2.916496264], "area": [108, 2.996941629], "wide": [1167, 3.405027971], "difference": [327, 3.321961372], "size": [983, 3.084429083], "work": [1179, 1.891372791], "certain": [206, 2.772751505], "known": [580, 2.723762118], "broadband": [167, 4.585653411], "access": [55, 2.379918144], "allows": [85, 2.806797347], "users": [1131, 2.187758138], "books": [159, 3.654095207], "apply": [103, 3.614486069], "different": [328, 2.058899651], "used": [1128, 1.94293977], "particular": [755, 2.921338888], "research": [900, 2.873936649], "service": [959, 2.270329292], "customers": [290, 3.11341662], "clients": [233, 3.674504079], "ways": [1156, 2.636086951], "calls": [183, 3.19935905], "greater": [477, 3.530716186], "scale": [932, 3.576386223], "private": [818, 3.225334536], "specific": [1005, 2.582788369], "business": [175, 2.548771484], "majority": [641, 3.684866866], "world": [1183, 2.131117859], "general": [455, 2.846537675], "parts": [758, 3.272481315], "thought": [1078, 3.056258206], "user": [1130, 2.555482918], "traffic": [1097, 3.107551501], "actual": [63, 3.343940279], "control": [269, 2.785383252], "management": [647, 3.428933492], "required": [898, 3.143269583], "considered": [264, 3.504282929], "allow": [82, 2.752046832], "outside": [747, 3.167810692], "provider": [838, 3.794867761], "best": [144, 2.020704054], "operating": [738, 3.557867175], "single": [978, 2.542104792], "using": [1133, 1.834118098], "common": [245, 2.860143327], "version": [1140, 2.661966399], "written": [1188, 3.225334536], "provide": [836, 2.586254577], "man": [645, 3.453424512], "virtual": [1144, 4.138341193], "features": [415, 2.593223246], "physical": [778, 3.487041122], "50": [46, 2.981356898], "generally": [456, 3.155464856], "organization": [744, 3.958755616], "equipment": [377, 3.98653518], "provides": [840, 3.067431507], "means": [660, 2.322289031], "sharing": [967, 3.23193522], "high": [501, 2.327636637], "highly": [503, 3.374017734], "communication": [246, 3.624242244], "thousands": [1079, 3.614486069], "servers": [958, 3.806563801], "designed": [313, 3.01810644], "low": [634, 2.960948026], "typically": [1114, 3.293388], "bandwidth": [131, 4.317389424], "significant": [974, 3.143269583], "role": [919, 3.42090132], "level": [603, 2.785383252], "design": [312, 2.960948026], "elements": [363, 3.867188422], "archived": [107, 4.783479154], "original": [745, 3.125251078], "2014": [26, 3.530716186], "14": [8, 3.20578994], "retrieved": [907, 4.53564299], "15": [9, 2.798176604], "uk": [1116, 4.015108553], "2015": [27, 3.397184793], "10": [3, 2.183106967], "2013": [25, 3.513016609], "28": [39, 3.867188422], "july": [572, 4.015108553], "2018": [30, 3.389402653], "understanding": [1118, 3.585775963], "communications": [247, 3.771878243], "20": [16, 2.654503678], "2017": [29, 3.437030702], "microsoft": [673, 3.644044871], "mobile": [681, 2.432103897], "app": [98, 2.391281903], "help": [499, 2.001172183], "view": [1143, 2.781154916], "manage": [646, 3.358865929], "online": [736, 2.632443959], "iphone": [560, 3.705920275], "android": [92, 2.966011328], "tool": [1087, 2.996941629], "windows": [1172, 3.830374449], "documents": [337, 3.72742648], "offers": [729, 2.950897691], "ios": [558, 3.300455167], "open": [737, 2.447096682], "recent": [875, 2.793893942], "photos": [776, 3.548734691], "videos": [1142, 3.557867175], "file": [424, 3.265608435], "tap": [1055, 3.684866866], "lens": [599, 5.158172604], "camera": [185, 4.188772047], "don": [343, 1.816274964], "download": [345, 3.245268751], "store": [1026, 2.945910149], "google": [472, 1.965080896], "play": [787, 2.811135748], "works": [1182, 2.558855603], "platforms": [786, 3.760578687], "main": [639, 2.892628782], "location": [622, 2.971100398], "policy": [793, 3.548734691], "tech": [1059, 3.42090132], "pro": [819, 3.818398258], "screen": [936, 3.225334536], "sort": [998, 3.25878247], "date": [297, 3.19935905], "figure": [423, 3.548734691], "select": [946, 3.245268751], "want": [1148, 1.8227266], "right": [914, 2.04667954], "recently": [876, 2.878577029], "shared": [966, 3.487041122], "ones": [735, 3.167810692], "based": [135, 2.139967474], "type": [1112, 2.654503678], "word": [1176, 3.212262455], "looks": [629, 3.119316342], "term": [1064, 3.137227269], "content": [267, 2.677061025], "including": [532, 2.153390495], "images": [525, 3.218777136], "launch": [589, 3.576386223], "place": [781, 2.374284326], "music": [695, 3.504282929], "audio": [119, 4.188772047], "window": [1171, 3.771878243], "options": [741, 2.82426504], "depending": [310, 3.389402653], "words": [1178, 3.039728904], "document": [336, 3.972548938], "text": [1069, 3.012773094], "delete": [307, 3.794867761], "save": [928, 3.131221245], "make": [642, 1.609339223], "available": [123, 2.228191708], "run": [923, 2.603768159], "multiple": [694, 2.806797347], "long": [625, 2.102885799], "email": [364, 2.837569005], "messaging": [671, 3.972548938], "social": [991, 2.727754139], "media": [661, 2.916496264], "apps": [105, 2.71978597], "services": [960, 2.480894061], "details": [317, 3.131221245], "default": [305, 3.252002783], "program": [829, 3.539684856], "associated": [116, 3.539684856], "necessary": [704, 3.453424512], "changes": [211, 2.883239042], "return": [908, 3.265608435], "create": [281, 2.487163674], "new": [712, 1.480721845], "sign": [972, 3.131221245], "photo": [775, 3.487041122], "video": [1141, 2.833114655], "learn": [593, 2.846537675], "read": [863, 2.447096682], "article": [112, 2.785383252], "free": [444, 2.250278495], "finally": [428, 3.050718026], "account": [57, 2.71978597], "person": [769, 2.73982672], "left": [597, 2.815493054], "lower": [635, 3.107551501], "check": [219, 2.471562734], "change": [209, 2.354812223], "plan": [783, 3.061829251], "settings": [964, 3.25878247], "security": [944, 3.119316342], "support": [1044, 2.51587378], "latest": [588, 3.225334536], "phones": [774, 3.358865929], "need": [705, 1.821109784], "know": [578, 1.86739904], "topics": [1090, 4.029707352], "ll": [619, 1.910620979], "today": [1084, 2.382747], "past": [761, 2.673265954], "months": [689, 2.916496264], "ve": [1138, 2.003108292], "working": [1181, 2.525629955], "browser": [168, 3.279401758], "things": [1075, 2.164715644], "early": [352, 2.873936649], "source": [1000, 2.986524868], "starting": [1016, 3.04520837], "issues": [566, 3.095923463], "code": [236, 3.002190985], "reviews": [911, 3.918481717], "public": [842, 2.764418124], "stay": [1021, 3.314741124], "way": [1155, 1.698134722], "isn": [564, 2.42026944], "plus": [790, 3.343940279], "hard": [491, 2.618003275], "forward": [441, 3.42090132], "end": [367, 2.201842878], "day": [298, 2.201842878], "big": [146, 2.487163674], "problems": [822, 3.107551501], "product": [824, 2.966011328], "doing": [341, 2.628814191], "doesn": [339, 2.301180068], "appear": [99, 3.20578994], "major": [640, 2.887922891], "pretty": [810, 2.811135748], "block": [154, 3.760578687], "ads": [73, 3.664247578], "quite": [854, 2.94094736], "protect": [834, 3.684866866], "privacy": [817, 3.381680607], "aren": [110, 2.94094736], "energy": [368, 3.879767205], "really": [870, 2.25775051], "reason": [871, 2.860143327], "build": [171, 2.828680058], "good": [471, 2.034606959], "idea": [520, 2.73982672], "reasons": [872, 3.180310855], "experience": [396, 2.542104792], "limited": [609, 3.056258206], "project": [830, 3.039728904], "company": [250, 2.220936537], "great": [476, 2.285635713], "deal": [300, 3.167810692], "projects": [831, 3.84249581], "creating": [283, 3.174041242], "culture": [285, 3.760578687], "possible": [799, 2.40567064], "platform": [785, 3.272481315], "desktop": [314, 3.445194012], "comes": [241, 2.51264276], "interface": [551, 3.705920275], "building": [172, 3.039728904], "gives": [462, 3.078731062], "lot": [632, 2.262763052], "class": [228, 3.604824158], "feature": [413, 2.650793098], "easy": [355, 2.385583882], "understand": [1117, 2.955910232], "goal": [466, 3.307572635], "plans": [784, 3.478530433], "future": [451, 2.658228077], "currently": [287, 3.007468042], "needs": [707, 2.760277331], "easier": [353, 2.966011328], "look": [627, 2.160170182], "choice": [223, 3.405027971], "makes": [643, 2.327636637], "sense": [950, 3.023468383], "let": [601, 2.225767464], "bring": [165, 3.192969252], "21": [32, 3.654095207], "5g": [48, 5.158172604], "taking": [1052, 2.789629543], "steps": [1023, 3.314741124], "order": [742, 2.625197551], "ready": [867, 3.20578994], "year": [1194, 2.117988568], "expected": [394, 3.548734691], "reality": [869, 3.530716186], "industry": [541, 3.225334536], "radio": [856, 4.000719815], "domain": [342, 3.879767205], "systems": [1047, 3.186620024], "built": [173, 2.798176604], "meet": [663, 3.576386223], "cases": [199, 3.23193522], "demand": [308, 3.705920275], "technology": [1060, 2.869317704], "smart": [989, 3.495624866], "given": [461, 2.636086951], "rate": [860, 3.307572635], "allowing": [84, 3.389402653], "offer": [726, 2.73982672], "customer": [289, 3.495624866], "key": [575, 2.851052356], "benefit": [142, 3.576386223], "market": [653, 2.789629543], "offering": [728, 3.604824158], "according": [56, 2.53878804], "white": [1165, 3.428933492], "paper": [753, 3.749405387], "published": [843, 3.374017734], "higher": [502, 2.981356898], "machine": [637, 3.684866866], "tv": [1110, 3.705920275], "analytics": [91, 4.059560315], "require": [897, 3.351375257], "case": [198, 2.41148461], "speed": [1007, 3.161618722], "capacity": [191, 3.89250623], "requires": [899, 3.286370427], "software": [992, 3.238579763], "defined": [306, 3.818398258], "tools": [1088, 2.916496264], "seen": [945, 2.811135748], "development": [322, 3.286370427], "south": [1002, 3.958755616], "field": [422, 3.358865929], "having": [494, 2.438074064], "test": [1066, 3.04520837], "october": [725, 3.738355551], "center": [204, 3.307572635], "featured": [414, 4.206163789], "2016": [28, 3.487041122], "concept": [257, 3.487041122], "dynamic": [350, 4.223863366], "function": [450, 3.644044871], "created": [282, 2.878577029], "china": [221, 3.89250623], "application": [101, 3.300455167], "visit": [1145, 3.293388], "phone": [773, 2.532187356], "author": [121, 3.478530433], "matter": [656, 2.960948026], "storage": [1025, 3.63409454], "add": [66, 2.535482252], "card": [194, 3.674504079], "limit": [608, 3.576386223], "buy": [178, 3.039728904], "try": [1106, 2.665718748], "note": [719, 2.785383252], "clean": [229, 3.684866866], "thing": [1074, 2.41440432], "game": [452, 3.374017734], "house": [513, 3.131221245], "better": [145, 2.111488003], "completely": [254, 3.286370427], "sure": [1045, 2.330321203], "perfect": [766, 3.252002783], "instagram": [545, 4.138341193], "especially": [379, 2.677061025], "games": [453, 3.771878243], "send": [949, 3.0342793], "facebook": [403, 2.966011328], "profile": [828, 3.530716186], "later": [587, 2.71188079], "dog": [340, 4.53564299], "unless": [1122, 3.307572635], "probably": [820, 2.643412991], "cloud": [235, 3.461723314], "heard": [497, 3.504282929], "info": [542, 3.684866866], "clear": [230, 2.811135748], "click": [231, 2.878577029], "gmail": [465, 3.624242244], "stored": [1027, 3.84249581], "report": [892, 3.028859232], "yes": [1196, 3.174041242], "slightly": [985, 3.644044871], "color": [239, 3.945149964], "thanks": [1070, 3.453424512], "contact": [266, 3.41293315], "list": [614, 2.51587378], "000": [0, 2.764418124], "push": [846, 3.705920275], "asked": [115, 3.028859232], "simple": [976, 2.51587378], "news": [713, 2.781154916], "special": [1004, 3.218777136], "advantage": [75, 3.351375257], "native": [698, 4.122080672], "meaning": [659, 3.42090132], "receive": [873, 3.272481315], "received": [874, 3.445194012], "applications": [102, 3.397184793], "wordpress": [1177, 4.138341193], "times": [1080, 2.432103897], "readers": [865, 3.945149964], "getting": [459, 2.480894061], "blog": [155, 3.19935905], "posts": [801, 3.614486069], "soon": [997, 2.986524868], "active": [61, 3.470091564], "independent": [536, 3.684866866], "lets": [602, 3.314741124], "developer": [320, 3.806563801], "adding": [68, 3.218777136], "website": [1159, 2.772751505], "plugin": [789, 4.297971339], "turn": [1108, 2.789629543], "process": [823, 2.459254886], "simply": [977, 2.625197551], "request": [895, 3.644044871], "site": [980, 2.593223246], "directly": [332, 3.002190985], "modern": [685, 3.307572635], "model": [683, 3.167810692], "direct": [331, 3.453424512], "certainly": [207, 3.381680607], "chrome": [225, 3.576386223], "option": [740, 2.789629543], "set": [962, 2.180789469], "post": [800, 2.57589179], "real": [868, 2.426169162], "regular": [882, 3.336560171], "effective": [359, 3.513016609], "audience": [118, 4.090331974], "focus": [433, 3.107551501], "server": [957, 3.478530433], "automatically": [122, 3.225334536], "extra": [399, 3.286370427], "needed": [706, 2.94094736], "easily": [354, 2.911676977], "ability": [53, 2.906880805], "overall": [748, 3.381680607], "activity": [62, 3.42090132], "kind": [577, 2.811135748], "total": [1091, 3.23193522], "fact": [404, 2.600240819], "record": [878, 3.487041122], "important": [527, 2.242861898], "index": [537, 3.760578687], "php": [777, 4.783479154], "powerful": [804, 3.41293315], "paid": [752, 3.478530433], "shown": [970, 3.358865929], "mode": [682, 3.760578687], "favorite": [412, 3.272481315], "drive": [347, 3.155464856], "box": [160, 3.351375257], "password": [760, 4.260231011], "wifi": [1168, 4.511545439], "uses": [1132, 2.793893942], "connection": [261, 3.286370427], "wireless": [1173, 3.794867761], "areas": [109, 3.389402653], "does": [338, 2.07751446], "actually": [64, 2.379918144], "number": [723, 2.204209743], "community": [248, 3.397184793], "home": [507, 2.503011867], "11": [5, 3.012773094], "advanced": [74, 3.614486069], "sent": [951, 3.23193522], "ethernet": [382, 5.253482784], "standards": [1013, 3.918481717], "smaller": [988, 3.557867175], "second": [940, 2.650793098], "slow": [986, 3.445194012], "places": [782, 3.374017734], "purchase": [844, 3.806563801], "port": [796, 4.223863366], "link": [612, 2.851052356], "start": [1014, 2.240401872], "ensure": [373, 3.405027971], "point": [791, 2.341132119], "external": [398, 3.705920275], "switch": [1046, 3.585775963], "enter": [374, 3.539684856], "192": [15, 5.204692619], "168": [11, 5.304776078], "provided": [837, 3.453424512], "choose": [224, 2.873936649], "image": [524, 3.078731062], "apple": [100, 3.336560171], "taken": [1050, 3.279401758], "won": [1175, 2.53878804], "mean": [658, 3.012773094], "trying": [1107, 2.768576134], "engines": [370, 3.738355551], "web": [1158, 2.322289031], "developers": [321, 3.63409454], "sites": [981, 3.023468383], "similar": [975, 2.618003275], "instead": [548, 2.438074064], "human": [517, 3.25878247], "2007": [19, 4.106080331], "write": [1186, 3.186620024], "exactly": [388, 3.01810644], "away": [126, 2.696255472], "performance": [767, 3.174041242], "death": [301, 4.106080331], "following": [436, 2.654503678], "official": [731, 3.749405387], "power": [803, 2.789629543], "true": [1102, 2.828680058], "international": [553, 3.478530433], "terms": [1065, 3.0342793], "growing": [482, 3.405027971], "countries": [275, 3.366413135], "involved": [557, 3.539684856], "standard": [1012, 3.061829251], "question": [850, 2.976215499], "position": [797, 3.576386223], "popular": [795, 2.704037613], "target": [1056, 3.664247578], "wrote": [1190, 3.374017734], "november": [722, 3.972548938], "say": [930, 2.298572505], "eventually": [386, 3.366413135], "alexa": [81, 4.665696119], "amazon": [87, 3.513016609], "haven": [493, 3.405027971], "potential": [802, 3.155464856], "voice": [1146, 3.238579763], "useful": [1129, 2.828680058], "light": [606, 3.321961372], "tell": [1062, 2.793893942], "brain": [161, 4.106080331], "break": [164, 3.397184793], "law": [591, 3.644044871], "pick": [779, 3.329234131], "remember": [890, 3.167810692], "care": [195, 3.20578994], "rest": [904, 3.073065325], "act": [59, 3.495624866], "host": [510, 3.674504079], "friends": [447, 3.125251078], "going": [469, 2.208960346], "ask": [114, 2.986524868], "custom": [288, 3.760578687], "skills": [984, 3.879767205], "head": [495, 2.916496264], "page": [750, 2.462317676], "guide": [484, 3.336560171], "entire": [375, 3.161618722], "hands": [487, 3.614486069], "maybe": [657, 3.343940279], "family": [408, 3.050718026], "numbers": [724, 3.20578994], "personal": [770, 2.73982672], "calendar": [180, 4.090331974], "quickly": [853, 2.811135748], "started": [1015, 2.73982672], "event": [384, 3.530716186], "able": [54, 2.319625914], "late": [586, 3.428933492], "night": [715, 3.453424512], "worth": [1184, 2.926205078], "got": [473, 2.756153614], "comments": [244, 3.366413135], "engine": [369, 3.023468383], "searches": [938, 3.381680607], "table": [1048, 3.674504079], "ad": [65, 3.576386223], "nature": [700, 3.674504079], "digital": [330, 3.329234131], "rights": [915, 4.260231011], "tracking": [1095, 3.716615564], "current": [286, 2.789629543], "december": [302, 4.000719815], "launched": [590, 3.513016609], "pages": [751, 3.01810644], "daily": [292, 3.329234131], "queries": [848, 3.879767205], "results": [906, 2.509422145], "bing": [151, 4.317389424], "2009": [21, 3.918481717], "13": [7, 3.137227269], "billion": [150, 3.56708383], "40": [45, 3.374017734], "million": [676, 2.981356898], "2010": [22, 3.783306938], "yandex": [1192, 5.204692619], "providers": [839, 3.674504079], "duckduckgo": [349, 4.881919227], "verizon": [1139, 4.511545439], "12": [6, 2.768576134], "europe": [383, 3.98653518], "yahoo": [1191, 4.029707352], "russia": [925, 4.465025423], "16": [10, 3.218777136], "17": [12, 3.358865929], "18": [13, 3.212262455], "19": [14, 3.521827238], "22": [33, 3.604824158], "23": [34, 3.72742648], "24": [35, 3.307572635], "25": [36, 3.007468042], "26": [37, 3.72742648], "previous": [811, 3.42090132], "companies": [249, 2.819869428], "march": [650, 3.674504079], "focused": [434, 3.504282929], "alternative": [86, 3.461723314], "2019": [31, 3.428933492], "wikipedia": [1170, 4.420573661], "april": [106, 3.716615564], "2011": [23, 3.684866866], "form": [440, 2.897356924], "includes": [531, 3.012773094], "31": [42, 4.015108553], "june": [574, 3.749405387], "2012": [24, 3.705920275], "30": [41, 2.723762118], "01": [1, 4.560335603], "29": [40, 3.830374449], "january": [568, 3.794867761], "goes": [468, 3.119316342], "secure": [943, 3.705920275], "land": [582, 3.918481717], "reports": [894, 3.585775963], "net": [708, 3.644044871], "05": [2, 4.488014941], "government": [474, 3.351375257], "cut": [291, 3.684866866], "history": [504, 2.955910232], "internal": [552, 3.716615564], "action": [60, 3.252002783], "wants": [1150, 3.218777136], "small": [987, 2.459254886], "team": [1058, 2.94094736], "api": [97, 4.122080672], "websites": [1160, 3.358865929], "channel": [213, 4.206163789], "making": [644, 2.262763052], "think": [1076, 2.240401872], "testing": [1067, 3.539684856], "giving": [463, 3.321961372], "developed": [319, 3.343940279], "relevant": [888, 3.437030702], "entirely": [376, 3.445194012], "button": [177, 3.374017734], "title": [1083, 3.771878243], "url": [1126, 3.604824158], "log": [623, 3.830374449], "successful": [1041, 3.63409454], "error": [378, 4.241881872], "existing": [392, 3.286370427], "solution": [994, 3.336560171], "wait": [1147, 3.521827238], "larger": [585, 3.42090132], "older": [734, 3.749405387], "group": [479, 2.833114655], "old": [733, 2.603768159], "talk": [1053, 3.061829251], "japan": [569, 4.399067455], "line": [610, 2.837569005], "month": [688, 2.892628782], "told": [1085, 3.023468383], "interview": [555, 3.931726944], "percent": [765, 3.307572635], "far": [409, 2.528903281], "couple": [277, 3.389402653], "base": [134, 3.585775963], "35": [44, 3.771878243], "little": [615, 2.333012995], "school": [933, 3.389402653], "sip": [979, 5.358843299], "lines": [611, 3.557867175], "200": [17, 3.585775963], "track": [1094, 3.25878247], "success": [1040, 3.351375257], "stories": [1028, 3.495624866], "half": [485, 3.131221245], "updates": [1125, 3.585775963], "september": [954, 3.98653518], "moved": [691, 3.867188422], "approach": [104, 3.279401758], "release": [886, 3.453424512], "answer": [96, 2.916496264], "series": [955, 3.358865929], "february": [416, 4.029707352], "cash": [200, 4.059560315], "positive": [798, 3.644044871], "wouldn": [1185, 3.644044871], "90": [51, 3.72742648], "room": [920, 3.174041242], "nearly": [703, 3.19935905], "country": [276, 3.143269583], "carrier": [196, 4.278923144], "truly": [1103, 3.56708383], "27": [38, 3.818398258], "london": [624, 4.122080672], "dark": [293, 3.918481717], "america": [88, 3.614486069], "touch": [1092, 3.664247578], "heart": [498, 3.684866866], "love": [633, 2.906880805], "longer": [626, 2.798176604], "thinking": [1077, 3.428933492], "travel": [1099, 3.428933492], "foreign": [439, 4.074827787], "nice": [714, 3.437030702], "bad": [128, 2.996941629], "coming": [242, 2.921338888], "huge": [516, 3.167810692], "accounts": [58, 3.539684856], "step": [1022, 3.002190985], "fine": [431, 3.461723314], "board": [156, 3.879767205], "course": [278, 2.57589179], "cool": [270, 3.495624866], "problem": [821, 2.747956847], "beginning": [139, 3.478530433], "points": [792, 3.131221245], "interesting": [550, 3.225334536], "begin": [138, 3.445194012], "expensive": [395, 3.614486069], "hold": [506, 3.664247578], "cell": [203, 3.958755616], "supply": [1043, 4.278923144], "products": [826, 2.902107526], "revenue": [909, 3.89250623], "risk": [916, 3.595254707], "review": [910, 3.445194012], "tried": [1100, 3.381680607], "came": [184, 3.012773094], "charge": [217, 3.879767205], "wanted": [1149, 3.307572635], "100": [4, 2.911676977], "looking": [628, 2.438074064], "costs": [274, 3.548734691], "notice": [721, 3.461723314], "cost": [273, 2.986524868], "wi": [1166, 4.074827787], "fi": [421, 3.867188422], "prices": [814, 4.000719815], "instance": [547, 3.343940279], "worked": [1180, 3.225334536], "went": [1164, 3.366413135], "biggest": [147, 3.381680607], "value": [1135, 2.966011328], "state": [1017, 3.04520837], "art": [111, 3.794867761], "recommend": [877, 3.548734691], "calling": [182, 3.705920275], "improve": [528, 3.272481315], "fast": [410, 3.084429083], "friendly": [446, 3.654095207], "mail": [638, 3.783306938], "hour": [511, 3.684866866], "described": [311, 3.56708383], "drop": [348, 3.366413135], "smartphone": [990, 3.614486069], "interested": [549, 3.504282929], "life": [605, 2.545432582], "reduce": [879, 3.705920275], "fully": [448, 3.453424512], "members": [664, 3.487041122], "car": [193, 3.576386223], "enjoy": [372, 3.705920275], "money": [687, 2.789629543], "added": [67, 2.981356898], "road": [917, 3.716615564], "ride": [913, 4.000719815], "week": [1161, 2.776944383], "short": [968, 2.869317704], "despite": [315, 3.307572635], "opportunity": [739, 3.521827238], "path": [762, 3.72742648], "expect": [393, 3.174041242], "continue": [268, 2.981356898], "hardware": [492, 4.000719815], "released": [887, 3.56708383], "come": [240, 2.338418413], "showing": [969, 3.539684856], "reported": [893, 3.576386223], "factors": [406, 3.879767205], "result": [905, 2.743883521], "consider": [263, 3.002190985], "client": [232, 3.695338166], "lack": [581, 3.478530433], "500": [47, 3.654095207], "likely": [607, 2.572461255], "offered": [727, 3.63409454], "providing": [841, 3.374017734], "rule": [921, 3.830374449], "normal": [717, 3.56708383], "compared": [251, 3.445194012], "update": [1123, 2.996941629], "install": [546, 3.760578687], "changing": [212, 3.428933492], "section": [942, 3.358865929], "cause": [202, 3.445194012], "setting": [963, 3.23193522], "80": [50, 3.56708383], "channels": [214, 4.465025423], "properties": [832, 4.090331974], "factor": [405, 3.818398258], "sources": [1001, 3.771878243], "weather": [1157, 4.015108553], "minutes": [679, 3.265608435], "updated": [1124, 3.437030702], "avoid": [125, 3.25878247], "quality": [847, 2.996941629], "gets": [458, 3.0342793], "close": [234, 3.050718026], "99": [52, 3.905409635], "increase": [534, 3.155464856], "method": [672, 3.351375257], "issue": [565, 3.155464856], "running": [924, 2.991719685], "mind": [677, 3.002190985], "additional": [70, 3.155464856], "articles": [113, 3.530716186], "feel": [418, 2.785383252], "player": [788, 4.357394759], "inside": [544, 3.095923463], "searching": [939, 3.487041122], "situation": [982, 3.674504079], "live": [616, 2.731762161], "evidence": [387, 3.783306938], "groups": [480, 3.674504079], "32": [43, 3.905409635], "keywords": [576, 4.488014941], "events": [385, 3.585775963], "strong": [1032, 3.307572635], "talking": [1054, 3.461723314], "subject": [1039, 3.576386223], "topic": [1089, 3.72742648], "days": [299, 2.607307986], "explain": [397, 3.530716186], "basic": [136, 3.084429083], "length": [598, 4.000719815], "query": [849, 3.879767205], "fall": [407, 3.513016609], "john": [571, 3.695338166], "friend": [445, 3.530716186], "twitter": [1111, 3.056258206], "stop": [1024, 3.007468042], "english": [371, 3.905409635], "yeah": [1193, 4.638297144], "shows": [971, 2.950897691], "announced": [95, 3.307572635], "protocol": [835, 3.905409635], "60": [49, 3.513016609], "allowed": [83, 3.548734691], "federal": [417, 3.867188422], "russian": [926, 4.465025423], "relationships": [885, 3.905409635], "primary": [815, 3.530716186], "knowledge": [579, 3.495624866], "campaign": [187, 4.122080672], "august": [120, 4.138341193], "particularly": [756, 3.20578994], "researchers": [901, 3.918481717], "writing": [1187, 3.374017734], "marketing": [654, 3.521827238], "air": [80, 3.760578687], "officials": [732, 4.378014046], "cover": [280, 3.738355551], "ground": [478, 3.72742648], "miles": [674, 4.106080331], "north": [718, 3.89250623], "city": [227, 3.218777136], "remove": [891, 3.63409454], "average": [124, 3.428933492], "took": [1086, 3.186620024], "complete": [253, 3.149348629], "tip": [1081, 4.000719815], "band": [130, 4.260231011], "homes": [508, 4.297971339], "began": [137, 3.366413135], "gave": [454, 3.664247578], "tests": [1068, 4.059560315], "happy": [490, 3.487041122], "gone": [470, 3.63409454], "various": [1137, 3.149348629], "street": [1031, 3.684866866], "financial": [429, 3.595254707], "growth": [483, 3.614486069], "youtube": [1199, 3.595254707], "advertising": [76, 3.695338166], "sold": [993, 3.63409454], "wrong": [1189, 3.42090132], "pay": [764, 2.906880805], "questions": [851, 2.986524868], "bit": [152, 2.785383252], "decision": [303, 3.684866866], "response": [903, 3.42090132], "display": [333, 3.585775963], "years": [1195, 2.122345873], "impact": [526, 3.300455167], "bank": [132, 4.138341193], "mentioned": [667, 3.513016609], "hand": [486, 2.976215499], "spend": [1008, 3.265608435], "earlier": [351, 3.180310855], "changed": [210, 3.374017734], "maps": [649, 3.644044871], "distance": [334, 3.854765902], "self": [947, 3.095923463], "happens": [489, 3.366413135], "load": [620, 3.716615564], "ago": [79, 2.986524868], "addition": [69, 3.143269583], "difficult": [329, 3.149348629], "consumer": [265, 3.806563801], "seo": [952, 4.260231011], "indexes": [538, 4.722854532], "indexing": [539, 4.783479154], "happen": [488, 3.358865929], "attention": [117, 3.245268751], "exist": [391, 3.738355551], "party": [759, 3.20578994], "states": [1019, 3.314741124], "bar": [133, 3.576386223], "tag": [1049, 4.090331974], "determine": [318, 3.513016609], "relationship": [884, 3.705920275], "wasn": [1152, 3.351375257], "serve": [956, 3.557867175], "pre": [806, 3.783306938], "status": [1020, 3.624242244], "analysis": [90, 3.674504079], "ranking": [859, 4.106080331], "weeks": [1162, 3.470091564], "age": [77, 3.321961372], "brands": [163, 4.188772047], "individual": [540, 3.25878247], "moving": [692, 3.358865929], "faster": [411, 3.245268751], "characters": [216, 4.223863366], "traditional": [1096, 3.389402653], "credit": [284, 3.381680607], "patients": [763, 4.665696119], "agent": [78, 4.53564299], "stuff": [1037, 3.470091564], "final": [427, 3.548734691], "takes": [1051, 2.906880805], "graph": [475, 4.665696119], "follow": [435, 2.855587511], "fun": [449, 3.453424512], "sales": [927, 3.705920275], "professional": [827, 3.664247578], "hope": [509, 3.513016609], "practice": [805, 3.513016609], "lives": [617, 3.56708383], "non": [716, 2.911676977], "moment": [686, 3.716615564], "quick": [852, 3.180310855], "essential": [380, 3.684866866], "seconds": [941, 3.705920275], "reading": [866, 3.192969252], "included": [530, 3.23193522], "icloud": [518, 4.991118519], "tips": [1082, 3.548734691], "mac": [636, 4.015108553], "lose": [630, 3.716615564], "price": [813, 3.143269583], "hours": [512, 3.149348629], "hit": [505, 3.192969252], "did": [325, 2.41148461], "notes": [720, 3.644044871], "id": [519, 3.854765902], "lost": [631, 3.557867175], "sound": [999, 3.557867175], "didn": [326, 2.873936649], "capital": [192, 3.958755616], "piece": [780, 3.445194012], "property": [833, 4.029707352], "feeling": [419, 3.738355551], "items": [567, 3.771878243], "menu": [668, 3.783306938], "watch": [1153, 3.374017734], "turned": [1109, 3.557867175], "session": [961, 4.465025423], "studies": [1035, 3.854765902], "generation": [457, 3.867188422], "complex": [255, 3.557867175], "spectrum": [1006, 4.560335603], "strategy": [1030, 3.716615564], "cars": [197, 4.000719815], "united": [1120, 3.604824158], "frame": [442, 4.122080672], "lead": [592, 3.300455167], "race": [855, 4.106080331], "production": [825, 3.958755616], "deep": [304, 3.595254707], "sell": [948, 3.576386223], "comment": [243, 3.614486069], "economic": [356, 4.206163789], "war": [1151, 3.958755616], "science": [934, 3.453424512], "story": [1029, 3.028859232], "political": [794, 3.945149964], "map": [648, 3.72742648], "york": [1197, 3.397184793], "summer": [1042, 3.98653518], "trip": [1101, 4.029707352], "force": [438, 3.749405387], "rfc": [912, 5.253482784], "rates": [861, 3.664247578], "reader": [864, 3.945149964], "increased": [535, 3.644044871], "effect": [358, 3.293388], "spent": [1009, 3.604824158], "study": [1036, 3.470091564], "behavior": [140, 3.84249581], "mini": [678, 4.953378191], "chance": [208, 3.624242244], "saying": [931, 3.279401758], "face": [402, 3.343940279], "purpose": [845, 3.557867175], "living": [618, 3.329234131], "rules": [922, 3.504282929], "rank": [858, 4.357394759], "black": [153, 3.749405387], "believe": [141, 3.067431507], "category": [201, 3.867188422], "felt": [420, 3.806563801], "job": [570, 3.073065325], "period": [768, 3.504282929], "press": [809, 3.470091564], "levels": [604, 3.548734691], "dr": [346, 4.223863366], "helps": [500, 3.397184793], "related": [883, 2.878577029], "tend": [1063, 3.521827238], "american": [89, 3.167810692], "health": [496, 3.470091564], "named": [696, 3.716615564], "requests": [896, 3.945149964], "philippines": [772, 6.303304908], "near": [702, 3.238579763], "identity": [522, 4.206163789], "film": [426, 4.317389424], "brand": [162, 3.548734691], "2008": [20, 3.98653518], "leave": [595, 3.143269583], "sports": [1010, 3.972548938], "eye": [400, 3.867188422], "finding": [430, 3.381680607], "dns": [335, 4.848017675], "sql": [1011, 4.991118519], "language": [583, 3.513016609], "present": [807, 3.504282929], "ideas": [521, 3.595254707], "trust": [1105, 3.818398258], "style": [1038, 3.437030702], "reference": [880, 4.154870495], "book": [158, 3.073065325], "national": [697, 3.358865929], "effort": [361, 3.461723314], "org": [743, 3.879767205], "natural": [699, 3.624242244], "en": [365, 4.399067455], "wiki": [1169, 5.358843299], "master": [655, 4.357394759], "god": [467, 4.585653411], "theme": [1071, 4.015108553], "copy": [271, 3.749405387], "weight": [1163, 3.879767205], "bus": [174, 4.511545439], "food": [437, 3.56708383], "previously": [812, 3.381680607], "trump": [1104, 4.693866996], "learning": [594, 3.806563801], "database": [295, 3.830374449], "models": [684, 3.771878243], "cheap": [218, 3.972548938], "income": [533, 4.059560315], "competition": [252, 3.72742648], "led": [596, 3.614486069], "framework": [443, 4.665696119], "theory": [1073, 3.972548938], "court": [279, 4.297971339], "mark": [652, 3.72742648], "databases": [296, 4.693866996], "saw": [929, 3.539684856], "chinese": [222, 4.337192052], "medical": [662, 4.044522438], "owners": [749, 4.015108553], "fit": [432, 3.604824158], "conditions": [258, 3.716615564], "college": [238, 3.972548938], "cameras": [186, 4.665696119], "canada": [188, 4.188772047], "remains": [889, 3.530716186], "department": [309, 3.854765902], "military": [675, 4.488014941], "cities": [226, 3.958755616], "robots": [918, 4.917010547], "themes": [1072, 4.378014046], "mr": [693, 4.378014046], "young": [1198, 3.654095207], "investment": [556, 3.84249581], "effects": [360, 3.945149964], "prime": [816, 4.442552567], "partner": [757, 4.044522438], "statement": [1018, 3.695338166], "song": [995, 4.752707496], "2006": [18, 4.223863366], "budget": [169, 4.122080672], "buying": [179, 3.867188422], "values": [1136, 3.794867761], "training": [1098, 3.918481717], "park": [754, 4.188772047], "ball": [129, 4.815227853], "animals": [94, 4.420573661], "estate": [381, 4.442552567], "uber": [1115, 4.991118519], "body": [157, 3.343940279], "door": [344, 4.059560315], "output": [746, 4.171677613], "hub": [515, 4.611628897], "buffer": [170, 5.541164856], "memory": [665, 4.171677613], "miss": [680, 3.818398258], "eyes": [401, 3.945149964], "students": [1034, 4.154870495], "ipv6": [561, 5.358843299], "ietf": [523, 5.6842657], "isbn": [562, 5.158172604], "british": [166, 4.399067455], "girl": [460, 4.693866996], "university": [1121, 3.307572635], "president": [808, 3.783306938], "children": [220, 3.738355551], "azure": [127, 5.851319784], "isdn": [563, 6.169773515], "egypt": [362, 6.457455588], "men": [666, 3.749405387], "women": [1174, 3.771878243], "sony": [996, 5.6842657], "mountain": [690, 4.297971339], "tax": [1057, 4.638297144], "character": [215, 4.106080331], "century": [205, 4.015108553], "water": [1154, 3.654095207], "tour": [1093, 4.317389424], "scientific": [935, 4.317389424], "canadian": [189, 4.848017675], "bike": [148, 4.638297144], "animal": [93, 4.465025423], "canon": [190, 5.851319784], "personality": [771, 4.611628897], "maria": [651, 6.303304908], "lenses": [600, 5.851319784], "housing": [514, 4.991118519], "bikes": [149, 5.113720841]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_jobs_and_education.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_jobs_and_education.json deleted file mode 100644 index d7f2c7d..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_jobs_and_education.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.685337414, "feature_log_probs": [-6.031579374, -6.024047416, -6.903464775, -7.383604564, -6.808721673, -7.463194492, -7.842214581, -6.587642831, -7.449926447, -7.589807912, -6.735009873, -7.845087759, -7.498998392, -7.531334257, -7.452581818, -7.297882457, -7.608386396, -7.268676361, -7.35414168, -6.682437001, -6.928596895, -7.804440345, -8.184070177, -7.082542439, -7.018899991, -6.678463474, -6.879137365, -6.509284013, -6.116668397, -6.782179888, -6.461389461, -7.32686804, -6.722544908, -6.192910872, -6.827678954, -6.200948861, -6.931798084, -6.641396147, -7.183810742, -7.297492958, -7.223969284, -7.161669759, -7.106766206, -6.777156524, -6.767898329, -6.366971871, -6.444373868, -6.011319794, -6.203970883, -6.298840665, -6.550685394, -9.01319168, -6.775446045, -6.748905981, -6.739032575, -6.590809576, -5.839802628, -6.405317774, -6.436395686, -6.599161218, -6.488859135, -6.875186579, -6.855181272, -7.247641508, -7.265987062, -6.212075465, -6.644094296, -6.770261315, -6.674974979, -5.763326684, -5.865348538, -6.165121006, -11.969648294, -7.905615373, -6.841618167, -6.617757269, -6.939540921, -7.850024394, -5.911844226, -6.655787689, -6.916875673, -6.080601038, -6.376826285, -7.222083579, -5.093818472, -7.467604837, -6.965741638, -6.830451481, -6.338604129, -5.869701447, -7.419028833, -6.687924794, -5.033500528, -7.99984054, -6.521733166, -7.171767194, -6.837121825, -6.656759296, -6.142792274, -7.213406192, -6.633491795, -6.740379544, -6.931540762, -6.133782487, -6.6015623, -7.251398993, -6.792770767, -6.25793319, -7.254987867, -5.569728895, -6.097923608, -5.648446546, -6.238435036, -6.622103979, -6.900302818, -6.67630645, -6.476176539, -6.523773407, -5.441333079, -5.303024343, -6.629210402, -6.153749273, -6.526841183, -6.034000219, -6.556063021, -7.238235811, -6.98229041, -6.771754314, -5.625263775, -6.01192099, -6.179538466, -7.019619313, -6.795360529, -6.470902794, -6.587525895, -6.432525852, -6.562351496, -6.513775171, -5.233021989, -7.523662002, -5.687447568, -6.654625735, -6.938637914, -6.573472948, -5.848012766, -6.346351278, -5.712458507, -6.385276202, -5.859113766, -6.220111096, -5.734749677, -5.950110144, -6.200710441, -6.930162804, -5.827776326, -6.843540696, -6.40537872, -6.362484672, -6.278556195, -5.808610607, -5.265219624, -7.38588872, -6.58301301, -6.954554031, -7.369044977, -6.584802528, -6.959102025, -7.553926891, -5.521329719, -6.346259058, -5.750107683, -6.065147929, -8.520645917, -6.087694836, -6.490432167, -5.789815674, -6.236313446, -6.599220204, -7.030488931, -8.435335608, -7.135409067, -6.070504114, -6.747517824, -5.417671872, -6.794249477, -6.879023628, -6.648143056, -6.933932702, -6.754276066, -7.045798635, -7.187658029, -6.336185956, -6.11017345, -6.148159851, -6.662853124, -7.019169301, -6.4688455, -6.6695746, -6.645770922, -6.766687962, -6.172341593, -6.53412881, -6.746480359, -7.336675004, -6.79209865, -6.035518495, -6.041090078, -6.834996734, -6.93339825, -7.122902908, -6.168318002, -6.997468014, -7.403253175, -7.408193544, -6.682141892, -6.128450884, -6.619823524, -6.746075072, -6.757355019, -6.662186179, -5.876735166, -5.495797046, -5.731963018, -6.164923847, -6.789531578, -5.774973804, -6.455168981, -6.45865365, -6.651196519, -7.032323533, -6.908924452, -6.153798863, -6.385103959, -6.884221679, -6.866386143, -5.464072566, -6.908809599, -5.975529015, -6.197829175, -6.373670796, -5.974251756, -7.329666413, -6.373193316, -6.668153397, -6.086267065, -7.355494677, -6.561395526, -6.462353571, -6.527613243, -7.532185535, -6.704531504, -5.861190562, -6.509985868, -6.558555606, -6.587240553, -6.625281262, -7.082251867, -6.916919469, -5.807990468, -6.10587283, -6.492954863, -6.492615739, -6.840013695, -6.780730061, -6.697449403, -5.758820607, -5.360122894, -6.196990662, -6.717041178, -6.596439899, -6.957059693, -6.055739095, -4.581207831, -5.213348348, -6.551525318, -6.606372205, -5.426237723, -5.942645351, -7.267828728, -5.784290272, -6.226560355, -6.46961703, -6.568197912, -6.512909628, -6.570499605, -5.999759243, -5.144844401, -6.454996972, -5.112306184, -6.95573903, -7.149396386, -6.307812789, -6.01374562, -7.230660965, -5.914310843, -6.410113149, -6.850502107, -7.067500378, -6.00949188, -6.346415345, -6.6721267, -6.956889068, -5.403534709, -6.66661415, -6.135252911, -6.805248903, -6.133970963, -5.998401516, -5.98717575, -6.657827624, -6.709498, -6.533117321, -7.371833257, -6.970222704, -5.281056867, -6.479365975, -6.152800372, -7.772812137, -5.905695476, -6.063735224, -6.320430794, -6.28654389, -6.229226046, -6.289912126, -6.66586357, -6.81483208, -6.793656608, -6.473799757, -6.476489485, -6.687426985, -6.602625441, -6.873968273, -6.745160058, -7.183076053, -6.695120684, -7.491457751, -7.520818142, -6.109113432, -6.698221179, -6.21407241, -6.943357315, -6.98581675, -6.96573087, -5.349220106, -6.738625631, -6.406813464, -6.42937142, -5.231363057, -6.50801398, -6.522810842, -6.64588953, -6.341988868, -6.323556412, -6.72080087, -6.391529334, -6.699151245, -6.841643428, -5.858417002, -6.392538349, -6.033342158, -6.307710089, -7.409702194, -7.033522458, -6.699690242, -6.814979322, -6.180035463, -7.629991669, -6.716125618, -6.866290467, -6.223141527, -6.981847351, -6.647669539, -6.43233746, -6.014510353, -6.137970661, -6.691429126, -6.053664911, -6.266300996, -6.976460119, -6.455350275, -6.783734669, -6.967303255, -6.962787068, -8.743794131, -7.7976568, -6.357869004, -7.012123548, -7.171454138, -6.158105838, -6.550887435, -6.261411121, -7.002738043, -6.456922127, -7.112356842, -6.143080683, -6.7901536, -7.502093388, -7.31593237, -6.736097794, -6.087230844, -6.296660538, -5.893010909, -6.141260452, -7.337089749, -6.887233025, -6.038266889, -5.760049457, -5.397531776, -6.226605378, -5.849542937, -5.99013123, -8.80834587, -6.6828716, -6.994278792, -6.338833825, -7.335157829, -6.812996716, -6.253151077, -5.579163025, -6.891479969, -6.878747154, -6.757718688, -6.654715536, -6.966290179, -5.998090209, -6.662708287, -6.872640829, -6.302685064, -5.789716405, -6.834415929, -6.68430998, -6.79704115, -6.434077254, -7.163706112, -6.772147285, -6.529962435, -6.852267934, -6.666668299, -5.803741266, -6.264020834, -6.721886757, -6.558339408, -5.976132872, -8.641847616, -7.256513113, -6.792107471, -5.839587821, -6.00596475, -6.329815796, -6.749414556, -7.014595986, -6.209989234, -7.015022657, -6.032228251, -5.372435399, -5.685295722, -6.39243206, -6.855726836, -6.823517916, -7.014515554, -6.320097522, -6.540493491, -6.879900163, -7.051255656, -8.075397847, -6.580029515, -6.437540673, -6.179069033, -6.47277569, -6.626933823, -6.953242892, -6.878978266, -6.688453473, -6.741812552, -7.111012302, -6.55277416, -7.20906116, -5.993908764, -4.746548119, -6.569753239, -7.198585422, -6.039304771, -5.866750072, -6.851753379, -7.075237946, -7.504840234, -6.340808305, -6.528609463, -7.399939054, -5.837265278, -6.193028297, -6.72652505, -6.744751156, -6.911818813, -6.559232864, -6.29235498, -7.19537609, -6.716372617, -6.704161789, -6.714373194, -6.007216305, -5.203875481, -6.117823722, -6.820040307, -6.120637314, -6.303314717, -6.371401618, -6.084588869, -6.748686108, -7.658180206, -6.845434762, -6.425231802, -6.123974121, -6.267751153, -7.557142327, -5.649508171, -5.943096705, -6.163800241, -6.15073872, -6.381062447, -6.843398691, -6.975007112, -6.450753422, -9.017751459, -6.274047082, -5.685960658, -5.638074266, -6.410117941, -6.548663215, -6.466936783, -7.10577367, -6.218771631, -6.498340831, -6.747209882, -7.219945641, -6.776711544, -7.498425896, -6.946665681, -7.020749142, -5.580249504, -7.222946963, -6.685650629, -6.348196283, -6.522048042, -7.048964687, -6.723140313, -7.098645065, -6.264895858, -6.744163825, -7.098144388, -5.702900367, -5.7088288, -6.33680494, -6.71014473, -6.846034075, -7.115763798, -6.203208682, -6.579061713, -6.375646315, -7.899830885, -5.434605888, -7.394091093, -6.56379701, -7.183145715, -15.435618976, -5.386570181, -6.581302494, -6.887674034, -7.899926065, -5.586883159, -6.370724172, -5.884354, -6.403201334, -6.294843888, -6.652111728, -6.77922051, -7.454058775, -8.856100882, -8.93903025, -6.019693541, -6.677424069, -6.986216003, -8.897812363, -6.605745619, -4.622706209, -6.478481968, -5.781218888, -5.389483242, -6.799834407, -5.741546566, -6.912430994, -6.105573991, -5.848576276, -6.921549269, -6.832304497, -5.636514184, -5.518912165, -6.930440909, -6.730297496, -6.310568244]}, {"log_prior": -0.70101842, "feature_log_probs": [-5.786723937, -5.620404774, -6.465406281, -6.454453509, -6.465122657, -6.656958917, -6.807688993, -6.21947033, -6.597397968, -6.685094536, -6.262048066, -7.112519315, -6.917749973, -6.781622666, -6.596912482, -6.923098362, -6.661305032, -6.560558456, -6.305251292, -6.671983814, -6.671157352, -7.166591704, -7.085709355, -6.917883612, -6.625729552, -6.352488343, -6.600126199, -6.540243513, -6.25176043, -6.274959307, -6.004502634, -6.334814829, -6.516219276, -6.106227315, -5.995077895, -7.230126886, -6.600689001, -6.387183248, -6.679569955, -6.767189039, -6.625055036, -6.59504193, -5.961497478, -7.10293079, -7.857023729, -6.719259108, -6.145386795, -7.206888476, -7.145141992, -7.055338243, -6.782516118, -7.675056591, -6.602733034, -6.968559577, -6.664526328, -6.270906997, -6.584941567, -6.723971058, -6.539251344, -6.209516072, -6.759466708, -5.986057985, -6.417437638, -6.43515284, -7.044077347, -5.914275987, -6.821058715, -6.479957398, -6.809413454, -5.539031138, -5.828217408, -6.015909116, -5.518100971, -6.376107149, -6.373143472, -6.040698604, -6.463773379, -5.687841713, -5.905754028, -6.342649976, -6.684290077, -6.429634942, -6.380935508, -6.46340074, -6.366448423, -6.169692198, -6.021356838, -6.625508453, -9.355703419, -8.917727373, -5.788897194, -6.443746925, -7.588948034, -6.23273017, -6.183762806, -6.608836035, -6.621980853, -7.055804848, -6.010923625, -6.427882842, -6.254171561, -6.545689884, -5.845130439, -6.81313518, -6.438315598, -6.240088941, -7.346712765, -7.158534567, -6.459202872, -6.295370526, -8.525744399, -7.411961922, -6.164122253, -6.243856965, -6.599434808, -6.552385707, -7.962796013, -6.53431823, -6.471030444, -5.912359272, -6.92354755, -6.977408734, -6.858998261, -9.285620841, -6.156562715, -6.229287213, -6.595521561, -6.320704024, -6.295195782, -8.86608844, -6.066692239, -6.554271365, -6.881095971, -7.156774858, -6.870727184, -6.372393351, -7.293175857, -6.607006779, -5.366599604, -5.999433032, -5.553271612, -6.078855439, -6.563592177, -6.806938645, -7.743642754, -7.166482392, -6.195286519, -7.193295149, -7.4928877, -7.399658154, -6.770912678, -5.848075483, -6.124793713, -6.90135647, -5.770463852, -6.747018272, -6.603355189, -5.900660472, -5.989208986, -6.394940316, -5.295814261, -6.557747106, -6.385459702, -6.652043292, -6.568497702, -6.133161641, -7.070941533, -6.186812962, -7.604341255, -6.368571621, -7.690479374, -9.316876238, -6.907561045, -5.998771756, -7.92226621, -7.642043967, -8.086648495, -6.363187717, -6.713707086, -5.939074971, -6.787062475, -6.00435016, -6.990770846, -6.227295737, -6.384677731, -5.878044678, -6.25532749, -6.1638621, -6.237186261, -6.460520508, -6.157342058, -7.54339224, -5.842475413, -6.924933985, -7.001273014, -6.555238859, -6.585499411, -7.241921474, -7.494570388, -6.805760641, -6.702491054, -6.460918389, -6.379810409, -5.678265328, -6.322875885, -5.812987957, -9.338353393, -10.469846562, -6.244975409, -6.61063859, -6.363824648, -5.448600013, -6.210957939, -6.838507066, -6.58861732, -6.214347215, -6.554282361, -7.029968612, -6.676408945, -7.038110856, -5.694681788, -5.543367206, -5.748891259, -6.17208807, -6.118919258, -5.739577621, -6.065210739, -6.995140053, -6.708045869, -6.440994913, -6.136978488, -6.236066082, -6.234441083, -6.3396183, -5.780444225, -5.734482433, -6.804924427, -5.940995135, -6.73700503, -8.6173228, -8.366255339, -6.209101103, -5.571723366, -6.940178008, -6.597729115, -5.912689061, -6.170813162, -6.371984184, -6.837163458, -6.043670277, -6.838001384, -6.064462113, -6.922992742, -6.422804307, -5.935067621, -6.791261604, -6.664964257, -6.75254586, -6.779120637, -5.970771453, -6.086859526, -7.314929051, -6.918731811, -6.849834214, -6.404771796, -12.283508588, -7.500098316, -8.364457518, -7.100600488, -6.092017389, -6.876120891, -9.242419309, -7.208216709, -8.033995375, -6.354138167, -6.284036971, -5.485477833, -7.356138017, -6.336890437, -6.825181198, -8.286467169, -6.37374131, -6.255673476, -6.175791049, -6.822866683, -8.321247609, -6.623755346, -7.066644382, -7.091826415, -6.816979906, -6.393102122, -5.906816781, -6.368049284, -6.520642166, -5.587145368, -6.27016454, -6.285155653, -6.691701493, -6.247081402, -5.82376196, -6.228682541, -6.461925938, -5.46425127, -6.268595221, -5.612877842, -6.54164302, -5.894052259, -6.404247039, -5.847623106, -5.960766183, -6.441817875, -7.001486013, -6.603035288, -6.571505344, -5.342338261, -6.223965863, -6.076821865, -6.174076451, -7.119066678, -7.545903066, -8.59014686, -5.864097547, -6.803155195, -7.513245846, -6.575389829, -6.570814391, -6.518267643, -6.069165371, -6.232520782, -7.085502628, -6.808361626, -6.076428279, -6.371265656, -6.486697806, -6.234614902, -6.5480245, -7.771618407, -5.869637429, -6.38517324, -6.61946118, -6.085150773, -6.686731978, -6.255464555, -5.433322701, -6.601757345, -6.506604886, -6.454648401, -4.974490964, -6.194560067, -6.381562919, -6.939512662, -5.921478398, -6.587559982, -6.626319327, -6.715705436, -5.892667169, -6.733330775, -6.455465478, -6.176075148, -8.239740462, -7.624945043, -6.491943043, -6.295288789, -6.194389285, -6.942987639, -7.187304474, -6.457918447, -6.64059162, -5.978672201, -7.089768977, -6.886928935, -6.302663398, -7.187598022, -6.682953326, -5.895674221, -6.727625634, -6.155069365, -6.357073723, -6.574044962, -6.069291397, -6.45074374, -6.416338068, -6.065905292, -6.505848384, -6.324436453, -6.02733757, -6.636833795, -6.439662655, -6.950425546, -6.328744669, -5.844623871, -6.395871418, -6.764359415, -5.961753948, -6.643800157, -6.529178475, -6.181430218, -6.616005703, -6.371352228, -6.348087206, -6.75102987, -6.032426236, -6.230864001, -6.63126537, -6.217598951, -7.252357271, -6.878398181, -8.783532048, -7.596821203, -6.463426055, -7.120027964, -6.171528888, -6.536470223, -6.869668661, -6.065809125, -6.420809927, -6.508639671, -6.267595928, -6.73571142, -6.575292652, -6.694225924, -6.713490408, -6.136327296, -6.739827132, -5.908026454, -6.685193185, -6.722675028, -5.62702349, -5.707887721, -6.440746764, -6.437842452, -6.619617962, -6.611257174, -6.912158128, -6.617470726, -6.576036732, -7.013499927, -6.965902422, -6.194929161, -7.368503545, -6.456103198, -6.380682021, -9.914258077, -6.372215832, -6.785140707, -6.449551058, -5.666316492, -6.694662607, -8.159920302, -6.170756906, -6.493866685, -9.879203443, -6.621195391, -5.77540019, -6.599830754, -6.260987452, -6.225849527, -6.155778928, -6.448925788, -6.521358643, -6.116051228, -7.548095444, -6.530309209, -6.299135443, -6.179559604, -5.777887053, -6.463889836, -5.853090577, -6.23476614, -6.41711116, -6.465090987, -6.37456255, -6.205057557, -6.386142871, -6.090550189, -6.132216959, -6.720895225, -7.682232665, -7.762670458, -6.089190285, -6.165340504, -5.89890361, -6.619104038, -6.541953854, -6.281070618, -6.438868847, -6.551611101, -6.755447722, -6.458042384, -5.941476664, -6.426517076, -6.95900919, -6.129591093, -6.342838357, -6.584232695, -6.407401625, -6.372163206, -5.955528215, -6.668467627, -6.75614092, -7.297430679, -7.411525212, -6.373617494, -6.948692441, -6.867243292, -7.437807465, -6.251949606, -6.141560088, -6.441865642, -6.292389534, -6.792117993, -6.46872884, -8.243757743, -6.725302227, -6.389357146, -6.097498937, -7.122196302, -7.762333354, -6.422413393, -6.603205252, -6.652756874, -6.85803113, -6.579312546, -6.403100613, -6.056457843, -5.608537941, -5.755022418, -6.696804515, -6.477976276, -5.95182206, -6.791244708, -6.009733149, -6.313738838, -6.440011741, -6.711519326, -6.616585708, -6.852698453, -6.595756177, -6.940989912, -6.542172692, -5.798505034, -6.294779677, -6.17807832, -6.349008268, -6.418512759, -6.090135742, -6.839671003, -6.647764126, -7.136468029, -6.510877659, -6.335373401, -5.148078757, -5.672213106, -7.063193941, -6.39280648, -6.128889396, -5.656118347, -6.46780241, -6.233207791, -7.992283544, -5.525628645, -6.189596578, -5.868053033, -6.446883944, -7.002570995, -5.440692902, -6.710275789, -6.506821321, -5.677752768, -5.415338369, -6.405063161, -6.412778047, -6.572604363, -6.099480558, -6.769271616, -6.733263096, -6.119670077, -7.2341818, -7.348446209, -6.072732759, -6.30765774, -6.721077392, -5.885588938, -6.49949293, -5.702064921, -6.7401635, -7.643635763, -6.528940211, -6.43750043, -5.468716878, -6.600799803, -6.506087512, -6.359718796, -6.709017665, -6.600554073, -5.468954633, -5.528278122, -6.500022218, -6.233592838, -6.58892111]}], "model_type": "nb", "positive_class_label": "jobs_and_education", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"recently": [431, 2.779020443], "industry": [258, 2.497687599], "talent": [512, 3.356731456], "company": [119, 2.058816462], "early": [162, 2.594591404], "job": [272, 1.928112471], "candidates": [89, 3.341805806], "high": [237, 2.000973819], "salary": [451, 3.593120234], "demand": [145, 2.984390396], "aren": [54, 2.721627645], "new": [347, 1.435836206], "area": [52, 2.858008855], "country": [127, 2.984390396], "world": [589, 1.868654401], "hiring": [240, 3.09378899], "especially": [177, 2.397755805], "true": [541, 2.580653896], "life": [294, 2.135613245], "digital": [156, 3.270346842], "health": [234, 3.141135111], "companies": [118, 2.306909332], "require": [436, 2.885788419], "skill": [477, 2.943775677], "cost": [126, 2.924070605], "living": [301, 3.048583553], "difficult": [155, 2.78324878], "percent": [374, 3.032144827], "likely": [295, 2.38914743], "state": [492, 2.791759469], "list": [298, 2.32818673], "according": [30, 2.441945616], "year": [595, 1.896194868], "income": [255, 3.418766847], "home": [242, 2.536653567], "million": [331, 2.924070605], "20": [10, 2.444962209], "30": [25, 2.507287672], "rate": [422, 2.95377576], "let": [291, 2.223632992], "price": [396, 3.123116605], "average": [60, 2.974081026], "city": [102, 3.032144827], "month": [338, 2.822130567], "firm": [198, 3.312606651], "results": [441, 2.733651838], "quality": [416, 2.813358581], "problem": [399, 2.32818673], "getting": [215, 2.142287352], "10": [1, 1.972318563], "coming": [114, 2.729627688], "employees": [170, 2.899973054], "isn": [269, 2.377783671], "years": [596, 1.736822244], "outside": [367, 2.758142858], "consider": [122, 2.615868803], "short": [469, 2.507287672], "answer": [45, 2.663584276], "national": [342, 3.088025285], "benefits": [68, 2.958813554], "access": [29, 2.729627688], "strong": [499, 2.78324878], "business": [84, 2.077469852], "development": [150, 2.394878105], "resources": [439, 2.800343213], "place": [379, 2.221214611], "current": [135, 2.475639461], "need": [343, 1.585225844], "potential": [392, 2.671131481], "today": [531, 2.304281209], "skills": [478, 2.221214611], "learning": [288, 2.26819482], "actually": [33, 2.286075245], "important": [251, 1.913800956], "traditional": [538, 3.171906769], "education": [168, 2.644961764], "experience": [183, 1.959222024], "candidate": [88, 3.693203693], "ability": [27, 2.573757317], "learn": [286, 2.092222491], "needs": [345, 2.418134967], "hire": [239, 3.190834779], "position": [388, 2.770617033], "figure": [194, 3.032144827], "low": [310, 2.754019141], "hard": [231, 2.169438341], "author": [58, 2.899973054], "article": [55, 2.615868803], "group": [226, 2.500877394], "search": [456, 2.770617033], "points": [386, 2.899973054], "value": [558, 2.536653567], "office": [354, 2.848917883], "interested": [261, 2.858008855], "work": [584, 1.512488925], "opportunities": [359, 2.729627688], "bad": [62, 2.737692248], "training": [539, 2.682560177], "programs": [408, 3.135092796], "young": [599, 2.989585213], "areas": [53, 2.924070605], "click": [105, 3.451290039], "science": [455, 2.630309487], "jobs": [273, 2.426997654], "board": [76, 3.23644529], "months": [339, 2.612290981], "ago": [37, 2.78324878], "reading": [425, 2.830980182], "book": [78, 2.637608789], "difference": [153, 2.89049431], "different": [154, 1.820592127], "ve": [560, 1.814140492], "day": [140, 1.935345775], "success": [504, 2.733651838], "sure": [507, 2.1202114], "50": [26, 2.858008855], "good": [221, 1.684636491], "read": [424, 2.226057235], "provides": [413, 3.021333911], "process": [401, 2.204447751], "help": [235, 1.738311448], "think": [526, 1.855163471], "known": [278, 2.741749049], "useful": [553, 2.867183231], "wrong": [594, 2.904746333], "know": [276, 1.707494629], "works": [588, 2.523495483], "away": [61, 2.457120414], "feel": [192, 2.183295376], "great": [225, 1.96855916], "general": [214, 2.637608789], "leadership": [285, 3.528581713], "courses": [129, 3.184485552], "university": [550, 2.485029202], "make": [314, 1.452494004], "given": [216, 2.584120104], "information": [259, 2.301659976], "control": [125, 2.858008855], "easily": [164, 2.89049431], "master": [323, 3.263473963], "doesn": [158, 2.124587775], "mean": [326, 2.745822374], "end": [173, 2.042522822], "person": [376, 2.301659976], "don": [160, 1.595508711], "having": [232, 2.171734553], "used": [552, 2.050636457], "provide": [412, 2.53997032], "love": [309, 2.659831926], "real": [427, 2.204447751], "thing": [524, 2.178654996], "books": [79, 3.010638622], "simply": [473, 2.546637011], "simple": [472, 2.485029202], "remember": [434, 2.813358581], "creating": [132, 2.822130567], "probably": [398, 2.523495483], "best": [69, 1.730887509], "comes": [113, 2.333577579], "focus": [200, 2.472529039], "writing": [592, 2.705817039], "lot": [308, 2.002913684], "class": [103, 2.822130567], "students": [501, 2.705817039], "really": [428, 1.993251773], "view": [563, 2.928960591], "thought": [528, 2.566907976], "student": [500, 3.015971968], "able": [28, 2.133398405], "quite": [420, 2.813358581], "way": [569, 1.54144149], "better": [70, 1.856839918], "school": [454, 2.363758196], "ones": [356, 2.758142858], "makes": [315, 2.204447751], "write": [591, 2.591088774], "review": [445, 2.979222426], "blog": [75, 2.899973054], "strategy": [498, 3.105417028], "option": [361, 3.065297034], "working": [587, 1.929915898], "finally": [195, 2.867183231], "talk": [513, 2.674926552], "based": [65, 2.10935353], "relationship": [433, 3.298320694], "care": [91, 2.800343213], "use": [551, 1.690302228], "professional": [405, 2.6980045], "using": [556, 1.957365014], "want": [565, 1.640430398], "times": [529, 2.275818745], "start": [489, 1.922721622], "managers": [320, 3.243134279], "left": [290, 2.853453038], "team": [515, 2.366547598], "manager": [319, 2.943775677], "questions": [418, 2.377783671], "successful": [505, 2.766441661], "looking": [307, 2.158035709], "past": [371, 2.536653567], "yes": [597, 2.943775677], "thinking": [527, 2.709746318], "specific": [486, 2.504077397], "including": [254, 2.176342857], "ll": [302, 1.894451188], "sense": [462, 2.709746318], "usually": [557, 2.659831926], "things": [525, 1.870353637], "hours": [244, 2.644961764], "won": [580, 2.460183203], "say": [453, 2.058816462], "increase": [256, 3.043073898], "large": [281, 2.500877394], "set": [467, 2.014632568], "single": [474, 2.570326782], "offer": [352, 2.475639461], "interesting": [262, 2.88110457], "instead": [260, 2.286075245], "bit": [74, 2.690252523], "language": [279, 2.89049431], "exactly": [180, 2.895222451], "sales": [452, 3.327099659], "age": [36, 3.129086772], "cases": [95, 3.09378899], "user": [554, 3.099586108], "weeks": [574, 2.968965925], "try": [542, 2.299045595], "product": [402, 2.6980045], "engineer": [174, 3.651960734], "does": [157, 2.073294481], "live": [300, 2.667350759], "post": [390, 2.409350137], "engineers": [176, 3.555732702], "market": [321, 2.463255402], "far": [188, 2.394878105], "senior": [461, 3.203655468], "developer": [148, 3.284235954], "pay": [373, 2.478759589], "available": [59, 2.397755805], "buy": [85, 2.968965925], "similar": [471, 2.549987098], "property": [411, 3.956621143], "11": [3, 2.943775677], "15": [7, 2.605173514], "half": [229, 2.830980182], "house": [245, 2.979222426], "right": [446, 1.845163388], "possible": [389, 2.372149854], "matter": [324, 2.573757317], "big": [71, 2.164861674], "money": [337, 2.412269848], "travel": [540, 3.459588842], "cars": [93, 4.01297408], "means": [327, 2.199708406], "estate": [179, 4.204029317], "stuff": [503, 3.159484249], "look": [306, 1.962946424], "decision": [143, 2.899973054], "family": [187, 2.839908813], "going": [220, 1.951814583], "space": [484, 2.963876856], "friends": [208, 2.835434533], "drive": [161, 3.129086772], "reason": [429, 2.577199662], "certain": [96, 2.630309487], "small": [479, 2.312186389], "come": [112, 2.10289495], "main": [312, 2.899973054], "problems": [400, 2.641278518], "long": [304, 1.920931111], "minutes": [333, 3.123116605], "didn": [152, 2.435939592], "level": [292, 2.265666373], "issues": [270, 2.958813554], "run": [449, 2.560105228], "changes": [99, 2.928960591], "hour": [243, 3.178176382], "car": [90, 3.47639596], "free": [205, 2.230923425], "non": [349, 2.717651497], "choose": [101, 2.745822374], "maybe": [325, 2.924070605], "software": [482, 2.791759469], "engineering": [175, 3.02672476], "taking": [511, 2.366547598], "higher": [238, 2.573757317], "running": [450, 2.933874606], "mind": [332, 2.55672113], "takes": [510, 2.713691096], "longer": [305, 2.671131481], "stop": [496, 2.938812887], "self": [460, 2.584120104], "got": [223, 2.383449409], "fact": [186, 2.383449409], "doing": [159, 2.135613245], "food": [203, 3.349240785], "paid": [369, 2.858008855], "pretty": [395, 2.779020443], "special": [485, 3.129086772], "wasn": [567, 2.984390396], "13": [5, 3.243134279], "case": [94, 2.403536168], "major": [313, 2.858008855], "white": [576, 3.402893498], "game": [211, 3.021333911], "spend": [487, 2.705817039], "easy": [165, 2.35267775], "finding": [197, 2.899973054], "open": [358, 2.403536168], "building": [82, 2.472529039], "leave": [289, 2.919204416], "women": [579, 3.305438162], "worth": [590, 2.800343213], "offers": [353, 2.844403203], "interview": [266, 2.853453038], "performance": [375, 2.963876856], "options": [362, 2.895222451], "tell": [519, 2.577199662], "project": [409, 2.536653567], "trying": [543, 2.497687599], "idea": [247, 2.460183203], "data": [138, 2.280933845], "point": [385, 2.137833002], "deal": [142, 2.924070605], "allows": [39, 2.963876856], "course": [128, 2.185623666], "practice": [394, 2.928960591], "law": [283, 3.356731456], "google": [222, 2.839908813], "future": [210, 2.394878105], "order": [363, 2.472529039], "making": [316, 2.014632568], "base": [64, 3.537550383], "went": [575, 2.919204416], "called": [86, 2.38914743], "tech": [516, 2.895222451], "seen": [459, 2.6980045], "starting": [491, 2.745822374], "quickly": [419, 2.652369205], "lead": [284, 2.694121], "individual": [257, 2.924070605], "personal": [377, 2.463255402], "worked": [585, 2.705817039], "word": [581, 3.048583553], "terms": [521, 2.919204416], "include": [253, 2.526768808], "table": [509, 3.327099659], "facebook": [185, 3.032144827], "did": [151, 2.105043179], "expect": [182, 2.895222451], "term": [520, 2.871802177], "total": [536, 3.364278662], "programming": [407, 3.223200064], "note": [350, 2.871802177], "check": [100, 2.526768808], "levels": [293, 3.11718187], "website": [572, 2.813358581], "wanted": [566, 2.895222451], "page": [368, 2.89049431], "workers": [586, 3.23644529], "opportunity": [360, 2.745822374], "career": [92, 2.278373025], "later": [282, 2.53997032], "old": [355, 2.500877394], "change": [98, 2.218802064], "languages": [280, 3.593120234], "second": [457, 2.415198107], "recent": [430, 2.630309487], "technology": [518, 2.601633687], "interviews": [267, 3.319826899], "advice": [35, 2.895222451], "internet": [264, 3.032144827], "coding": [110, 3.459588842], "apply": [49, 2.766441661], "resume": [442, 3.546600219], "ask": [56, 2.415198107], "program": [406, 2.648658626], "days": [141, 2.475639461], "12": [4, 2.652369205], "number": [351, 2.204447751], "role": [447, 2.674926552], "man": [317, 3.410798678], "marketing": [322, 3.043073898], "smart": [480, 3.402893498], "study": [502, 2.601633687], "asked": [57, 2.741749049], "question": [417, 2.457120414], "knowledge": [277, 2.612290981], "source": [483, 2.89049431], "believe": [67, 2.741749049], "allow": [38, 2.78749507], "play": [382, 2.830980182], "amazon": [40, 3.57425175], "add": [34, 2.641278518], "000": [0, 2.466337069], "global": [217, 3.270346842], "link": [297, 3.23644529], "key": [274, 2.584120104], "close": [108, 2.871802177], "clear": [104, 2.520232837], "tax": [514, 3.984400708], "private": [397, 3.327099659], "edit": [167, 3.747270914], "18": [9, 3.184485552], "line": [296, 2.605173514], "range": [421, 2.963876856], "account": [31, 3.23644529], "standard": [488, 3.11718187], "2015": [16, 3.44305954], "2019": [20, 3.493490393], "fast": [189, 2.974081026], "25": [24, 2.968965925], "analysis": [43, 3.243134279], "projects": [410, 2.725619667], "improve": [252, 2.729627688], "bring": [80, 2.895222451], "organization": [365, 3.000056512], "follow": [201, 2.577199662], "easier": [163, 2.78324878], "database": [139, 3.682732393], "report": [435, 2.948763218], "build": [81, 2.366547598], "return": [444, 3.23644529], "management": [318, 2.598106346], "tool": [534, 3.178176382], "goals": [219, 3.123116605], "impact": [250, 3.010638622], "multiple": [341, 2.809001276], "tools": [535, 2.895222451], "products": [404, 2.858008855], "needed": [344, 2.637608789], "example": [181, 2.077469852], "degree": [144, 2.88110457], "hand": [230, 2.754019141], "ways": [570, 2.283501241], "stay": [494, 2.830980182], "field": [193, 2.791759469], "learned": [287, 2.89049431], "investment": [268, 3.291253527], "complete": [120, 2.796042131], "little": [299, 2.187957389], "action": [32, 2.994807157], "understand": [547, 2.435939592], "develop": [147, 2.853453038], "popular": [387, 2.895222451], "roles": [448, 3.349240785], "turn": [544, 2.663584276], "test": [522, 2.928960591], "meet": [329, 2.899973054], "customer": [136, 3.467957091], "content": [124, 2.871802177], "consulting": [123, 3.816263786], "basic": [66, 2.848917883], "model": [334, 3.037594432], "ideas": [248, 2.928960591], "social": [481, 2.466337069], "security": [458, 3.298320694], "form": [204, 2.804662874], "published": [415, 3.043073898], "government": [224, 3.223200064], "related": [432, 2.637608789], "human": [246, 2.867183231], "series": [463, 3.032144827], "services": [466, 2.791759469], "head": [233, 2.848917883], "creative": [133, 3.210127982], "design": [146, 2.667350759], "machine": [311, 3.319826899], "network": [346, 2.963876856], "growth": [227, 3.000056512], "required": [437, 2.830980182], "ready": [426, 2.928960591], "college": [111, 2.709746318], "create": [130, 2.209209665], "type": [545, 2.601633687], "kind": [275, 2.432950053], "power": [393, 2.737692248], "site": [475, 2.963876856], "computer": [121, 2.919204416], "online": [357, 2.386294361], "came": [87, 2.867183231], "14": [6, 3.159484249], "america": [41, 3.312606651], "systems": [508, 2.928960591], "local": [303, 2.919204416], "code": [109, 2.717651497], "server": [464, 4.088197501], "week": [573, 2.504077397], "email": [169, 2.968965925], "york": [598, 3.000056512], "started": [490, 2.38914743], "video": [562, 2.979222426], "goal": [218, 2.867183231], "american": [42, 2.989585213], "developers": [149, 3.229800748], "news": [348, 2.858008855], "24": [23, 3.197224577], "research": [438, 2.369344803], "story": [497, 2.800343213], "22": [21, 3.593120234], "told": [532, 2.774809911], "technical": [517, 3.032144827], "image": [249, 3.263473963], "share": [468, 2.481889482], "culture": [134, 3.059694779], "members": [330, 3.054123734], "shows": [470, 2.919204416], "step": [495, 2.717651497], "2017": [18, 3.48490665], "2018": [19, 3.298320694], "org": [364, 3.747270914], "reach": [423, 2.933874606], "path": [372, 2.909542505], "particular": [370, 2.835434533], "customers": [137, 3.171906769], "track": [537, 3.070930852], "title": [530, 3.519692766], "challenge": [97, 3.015971968], "body": [77, 3.147214157], "client": [106, 3.528581713], "100": [2, 2.809001276], "phone": [378, 3.129086772], "media": [328, 2.762283651], "production": [403, 3.528581713], "function": [209, 3.493490393], "financial": [196, 3.123116605], "platform": [381, 3.099586108], "essential": [178, 3.229800748], "approach": [50, 2.754019141], "feedback": [191, 3.349240785], "support": [506, 2.444962209], "clients": [107, 3.379546134], "application": [47, 3.037594432], "built": [83, 2.800343213], "created": [131, 2.78749507], "community": [117, 2.830980182], "plan": [380, 2.779020443], "applications": [48, 3.129086772], "helps": [236, 2.848917883], "service": [465, 2.713691096], "types": [546, 2.948763218], "following": [202, 2.591088774], "2016": [17, 3.395050321], "23": [22, 3.682732393], "words": [583, 2.853453038], "economic": [166, 3.510882136], "common": [115, 2.513739308], "history": [241, 2.984390396], "gender": [213, 4.088197501], "2014": [15, 3.528581713], "web": [571, 2.770617033], "communication": [116, 3.418766847], "en": [172, 4.533508518], "wikipedia": [578, 4.81309338], "understanding": [548, 2.924070605], "wiki": [577, 5.111586369], "analytics": [44, 4.103945858], "written": [593, 2.876442556], "fit": [199, 2.928960591], "posts": [391, 3.48490665], "16": [8, 3.082294611], "models": [335, 3.546600219], "took": [533, 2.78749507], "united": [549, 3.371883261], "states": [493, 3.059694779], "employers": [171, 3.418766847], "result": [440, 2.70190314], "freelancers": [207, 4.691732523], "billion": [73, 3.662113106], "public": [414, 2.644961764], "face": [184, 2.938812887], "guide": [228, 2.943775677], "version": [561, 3.000056512], "freelance": [206, 3.903275163], "2013": [14, 3.502148456], "mr": [340, 3.929592471], "bank": [63, 3.672369606], "internship": [265, 4.057425843], "2011": [12, 3.651960734], "international": [263, 3.319826899], "original": [366, 3.171906769], "app": [46, 3.277267285], "javascript": [271, 3.943015491], "2012": [13, 3.546600219], "retrieved": [443, 4.636162672], "2010": [11, 3.903275163], "sites": [476, 3.451290039], "features": [190, 2.989585213], "players": [384, 3.890371758], "module": [336, 4.988984047], "users": [555, 3.23644529], "player": [383, 4.057425843], "games": [212, 3.758444215], "water": [568, 3.493490393], "var": [559, 5.608023255], "theme": [523, 4.315254952], "wordpress": [582, 4.375879574], "archived": [51, 5.111586369], "bike": [72, 4.583518938], "volkswagen": [564, 5.682131227]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_law_and_government.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_law_and_government.json deleted file mode 100644 index 1f2a842..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_law_and_government.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.692453459, "feature_log_probs": [-6.340057915, -6.789774021, -7.613807406, -7.303476879, -7.153661153, -7.40238485, -7.50460328, -7.246185667, -7.426827636, -7.550046967, -7.199332726, -7.671000139, -7.218058625, -7.869603173, -8.282261704, -8.21043235, -8.2393537, -8.22078606, -7.940003877, -7.53975495, -7.446306186, -7.352933003, -7.412398558, -7.358819125, -7.432646948, -7.069862685, -7.265252745, -6.196423251, -6.68102204, -6.686236933, -7.216073066, -7.636725437, -7.696710033, -7.5848427, -7.59033978, -7.483130825, -7.662176187, -7.815556667, -7.729611333, -7.921220449, -7.201382737, -7.869330363, -8.459544324, -7.755158715, -7.596172345, -7.688991986, -7.616813574, -7.989367078, -8.965750371, -7.59769797, -7.030288848, -6.638972431, -6.76763091, -5.963233534, -7.278768603, -7.700615853, -6.580869923, -6.164308742, -6.871226868, -7.025595649, -7.857549634, -7.310346211, -7.492601476, -7.119039629, -5.81087056, -8.352462865, -6.925733211, -7.620112415, -7.724811417, -7.35638237, -7.300498916, -6.025335312, -8.014479505, -8.193463896, -7.892000352, -7.522989647, -6.7106655, -6.317649441, -7.209878802, -6.761022358, -7.084753558, -7.117201804, -6.790987047, -7.34313396, -7.33561953, -6.737051009, -6.841268585, -7.144345463, -7.130798454, -7.785377075, -8.275593923, -6.554088356, -6.737518988, -6.165886999, -6.572718325, -7.989397391, -9.110716625, -10.234704959, -7.156476034, -7.46785825, -7.131145747, -8.728515865, -7.593290139, -7.475430102, -7.245284784, -7.621717282, -7.070440729, -8.248133547, -7.524469158, -7.492727369, -8.104766254, -7.155602169, -7.336396167, -7.384497244, -7.30174458, -6.740090881, -8.867248449, -7.026748156, -8.408133617, -7.316567985, -6.528712403, -7.599529384, -7.45476486, -7.378697937, -7.551789063, -5.657033085, -6.978460199, -7.173862349, -8.026465007, -6.796044434, -6.846302183, -7.540646826, -8.487013382, -7.68637924, -7.199046261, -7.404636332, -7.408152746, -7.072369046, -7.422126635, -6.345384925, -7.434378115, -6.835770487, -7.874637121, -7.66586278, -9.705855987, -6.939677355, -7.933985074, -7.553385044, -6.92351318, -7.472492559, -7.634495493, -7.347811, -7.275100632, -7.461656689, -7.791900426, -10.350373986, -9.892833124, -7.160499532, -8.127581627, -6.730151876, -8.31680279, -7.011055337, -7.851217128, -7.574586046, -8.092334123, -5.799458815, -8.655862877, -9.251372865, -10.889889839, -7.884524967, -7.299269477, -6.764657286, -7.123372754, -7.489430618, -7.741941052, -7.559784839, -7.609246443, -8.06560202, -6.535776981, -8.425967093, -6.514315439, -6.527147024, -7.359175492, -6.786576007, -9.371863211, -8.24793752, -5.656696488, -7.182800375, -7.227728306, -7.98599238, -7.549466364, -7.545167838, -8.14518957, -7.234799835, -7.52481645, -8.34830289, -5.681365771, -6.237456713, -7.779149975, -7.505508308, -7.103414079, -7.022240228, -7.648103822, -7.550725109, -7.716307922, -7.640403485, -7.756702095, -6.944109626, -7.710196805, -7.758272347, -7.213133433, -6.851212801, -6.355221286, -7.649894156, -10.40849118, -6.560971206, -6.809922752, -6.047337527, -6.510539851, -6.970082807, -8.451967971, -8.372667311, -7.136272914, -7.394754015, -6.845835871, -6.069858609, -6.423856365, -7.185301573, -7.401057601, -6.853988098, -7.778965288, -8.534596608, -6.721910425, -8.30512616, -7.319612023, -7.960786039, -6.179674008, -7.217719547, -7.400876423, -5.623524386, -8.281938576, -7.764772364, -7.938077732, -6.812594219, -7.273595632, -7.437885294, -7.519314381, -6.882677631, -7.531176626, -7.092644555, -7.031972987, -5.998177647, -7.776663422, -7.322436646, -7.076435606, -6.58679734, -6.334048849, -8.259281513, -7.682041206, -8.070653299, -8.027154187, -8.225933035, -7.065301913, -7.716391257, -6.830159517, -7.269729619, -6.02325198, -7.971167588, -7.700627544, -7.41404483, -6.543511273, -6.753100221, -7.363668989, -7.279775713, -7.065640022, -7.33578299, -6.793411665, -6.988884057, -8.561452931, -8.131313593, -7.404273693, -7.612536669, -7.058563988, -5.974316587, -6.840248616, -6.184115135, -6.313738262, -7.251250324, -5.179300878, -6.648290415, -7.645039407, -7.617433081, -7.587465204, -8.339919906, -7.945761473, -6.17326514, -6.274858697, -5.795214789, -7.112205974, -7.551682535, -7.741761797, -7.253360334, -7.726924521, -8.23788897, -7.595190702, -7.381023468, -6.148869557, -7.957220489, -7.713123433, -7.385891968, -6.470737103, -6.783733384, -6.714246636, -6.311532368, -7.391401561, -7.352649054, -7.006485643, -7.784500616, -7.419204618, -6.50312212, -7.332971699, -7.883822861, -9.335255346, -6.351288921, -6.469583563, -6.582013684, -5.582054499, -6.974985076, -7.193926491, -8.744439667, -7.843785904, -7.202236817, -7.19765633, -8.135612556, -7.830248196, -7.821542131, -6.035089774, -6.697189318, -7.291336188, -8.21214032, -7.081846296, -7.46331267, -8.131894826, -7.763227781, -7.543649585, -6.724651804, -6.40799357, -6.971602213, -6.391339541, -6.573479676, -7.048173573, -8.911956943, -6.998341953, -6.504476793, -6.478399057, -8.083799334, -7.918960401, -7.020191902, -6.876271439, -7.081229346, -8.594705199, -8.212201359, -7.556620767, -8.122347371, -7.174525677, -7.700675214, -7.063552071, -7.1811907, -7.336434355, -7.981343679, -8.344248565, -7.267798112, -6.852842588, -7.980955478, -6.083538451, -7.108101227, -9.367050557, -8.90345068, -7.184281426, -7.076174304, -7.396603263, -6.766000533, -8.209650129, -6.747116066, -8.550929406, -6.266278642, -9.21325116, -9.161863739, -7.430970051, -7.580678721, -7.498558908, -7.772089491, -7.769512984, -7.602506993, -7.440200162, -7.353235611, -7.562666851, -7.745528197, -6.167441435, -7.79793945, -6.975837194, -6.759458293, -8.249987973, -7.783518512, -7.293173475, -7.542461349, -7.283228087, -7.878731742, -6.94569255, -6.498277839, -6.901138565, -7.287103779, -7.679249386, -7.669867773, -7.980091941, -6.6922689, -7.171281559, -6.470321007, -6.744902439, -8.538127548, -7.293994273, -5.966488181, -7.576451107, -9.293872145, -7.16992235, -5.494714978, -7.765191251, -7.526524765, -7.766768822, -7.999410321, -7.213544038, -8.087324437, -7.715428875, -6.554962016, -8.343019523, -8.681791278, -7.617121635, -7.463609988, -7.186790449, -6.752260964, -7.725116429, -6.940208027, -8.728614986, -7.033168857, -8.55956676, -6.552548433, -7.723834658, -7.825797553, -7.313083598, -7.803145362, -7.19539154, -8.276067801, -6.688280356, -7.198631783, -6.751800236, -7.105540043, -6.477877012, -7.165670585, -7.106156152, -7.236822079, -6.644711008, -7.154443642, -7.170694291, -7.469276145, -6.667583839, -7.658721663, -7.633193028, -7.708214203, -8.591220264, -7.25038728, -7.10628205, -8.275030033, -9.49890705, -7.217538705, -5.914024191, -7.814028888, -7.264673678, -7.379701454, -7.415700494, -8.181134019, -7.333379742, -6.777784881, -8.125848787, -7.825476166, -7.651913327, -8.198425346, -7.972921737, -6.514099155, -6.868593246, -7.653840973, -6.868971307, -5.222440076, -7.556197458, -7.414894154, -7.899424982, -7.742390862, -6.456065696, -6.921060633, -7.745451361, -8.563987166, -8.635849086, -6.416659524, -6.510852701, -7.420707036, -7.459714408, -7.659796351, -7.508407375, -7.292771816, -7.310342394, -7.270307138, -7.129887414, -6.85255889, -7.456250054, -6.804553711, -8.364552225, -6.767697846, -6.917522227, -7.52667067, -9.178939897, -6.793238378, -7.783863183, -7.753918109, -6.864140836, -7.796422911, -7.207449784, -6.593066577, -7.65153552, -7.39574803, -7.916005754, -7.081285511, -5.724313995, -7.076540763, -8.042125635, -6.629726565, -7.414552289, -7.23791973, -7.66808387, -7.352810449, -8.860170328, -7.389764911, -6.718869005, -8.070445714, -8.095770614, -7.33571978, -6.659835918, -7.490889457, -7.017593569, -8.096763259, -8.249805543, -7.353022261, -7.416966049, -7.685226801, -6.231380482, -7.778117694, -7.607580652, -7.451866796, -9.507552183, -7.033415051, -7.310141624, -7.044872778, -7.463538707, -7.333245458, -5.858226195, -7.415015248, -8.533792923, -8.150386232, -7.273964837, -6.28311863, -8.441308462, -7.604573576, -6.538667527, -6.952687967, -6.85185903, -5.606371365, -6.933627996, -6.971371702, -8.499250218, -6.962715552, -7.047874934, -8.206131101, -7.7700979, -7.364887771, -6.741878604, -6.93317386, -6.929627792, -6.707448678, -7.23068878, -7.744132964, -6.972691626, -7.075545783, -7.789180827, -6.95792718, -7.788702892, -6.051668127, -6.727405112, -6.996186366, -7.950762071, -6.903917819, -7.072254546, -5.449508521, -7.406260477, -7.149089356, -7.5750302, -7.091784257, -7.311095012, -7.593383528, -7.309180727, -6.510260072, -7.691855898, -6.858377175, -7.091248254, -7.555840044, -7.641181519, -7.552689458, -7.183358668, -8.121652027, -7.117069553, -6.640198925, -7.305965974, -5.178155533, -6.318450982, -6.59146747, -6.32950729, -6.521993514, -7.074289025, -7.213499646, -7.223829488, -7.680119699, -8.119459206, -8.466600856, -7.470333318, -6.917582398, -6.856083485, -5.794897545, -6.768759038, -7.122332363, -6.547177511, -7.166876879, -6.712227278, -7.903461983, -6.763112717, -7.480123488, -7.311243326, -8.295857968, -8.31832352, -7.314591563, -7.224345364, -7.675691967, -7.213498807, -7.679541196, -7.453200122, -6.685211639, -7.719519919, -6.614119355, -7.306344499, -7.210792632, -7.486917488, -8.431527503, -7.651799244, -7.350983145, -7.278574932, -8.542091331, -7.576156429, -7.863762286, -8.609291186, -7.919437808, -7.744489061, -7.319267661, -7.140891177, -6.428189285, -7.32430053, -6.827987352, -6.730305139, -5.960511633, -7.790883942, -6.864704644, -7.792231901, -8.110122573, -9.844775693, -7.419701832, -7.689739209, -6.856169843, -7.949565531, -7.550010746, -8.068738059, -6.972282002, -6.526771569, -7.346056326, -7.632063566, -7.082372175, -7.119729133, -6.560416349, -6.564671201, -7.46822847, -7.372001007, -7.478922637, -9.011041247, -6.721824115, -7.671274911, -5.671953792, -6.417241722, -7.329718526, -7.83366622, -6.765229739, -8.079472431, -7.670765908, -8.009555485, -9.686790829, -8.180200373, -7.546799373, -6.738716819, -6.493837483, -6.579001341, -6.575089662, -8.610593179, -7.126824763, -7.537938723, -7.567810124, -8.046063169, -5.154247709, -6.480464889, -5.325999162, -7.557796077, -15.588025372, -7.595639734, -7.685737426, -7.041804205, -5.977065504, -9.24450875, -7.819980218, -7.686461731, -7.427143775, -7.096405225, -7.334959243, -6.676890468, -7.494276772, -7.63192222, -7.290454989, -5.590350674, -6.157530133, -7.305986192, -7.234655114, -7.06399532, -7.677189681, -7.118084257, -7.834064562, -8.821384603, -7.155101311, -6.574574374, -7.33381258, -6.451698531, -6.788558689, -7.081243548, -7.772885713, -7.623412534, -8.385185328, -5.67601964, -6.831934444, -6.688543329, -6.454374473, -5.905683644, -6.76543853, -7.928129505, -7.197783205, -7.036596636, -7.096323294, -7.377292605, -7.400589665, -7.656825933, -8.172446386, -8.462480191, -6.405443673, -7.232713197, -7.815075578, -6.870671621, -7.435393751, -7.745975347, -7.081805164, -7.193202192, -7.873920787, -7.199097743, -7.830980677, -7.053905886, -6.986453475, -7.77078588, -7.582865434, -7.671546393, -6.731104946, -6.965298071, -6.923652532, -8.459791102, -7.236806427, -6.811343172, -6.935673522, -6.599047663, -8.759363333, -7.457511491, -6.561591582, -6.821726283, -6.980633915, -8.156062531, -7.850126734, -6.903387004, -8.036164976, -7.229188149, -7.901017926, -7.309132151, -7.753653476, -8.022913571, -9.402428197, -8.895617522, -6.998588188, -15.588025372, -8.028442605, -6.891944082, -7.636366345, -5.610574038, -7.067018796, -6.459288165, -6.091728246, -7.355585745, -8.015962901, -7.402369724, -7.053482971, -8.42322386, -6.905794468, -6.633919476, -8.167801386, -7.003926536, -6.41080208, -7.791445134, -7.019310645, -7.280726819, -8.856065949, -7.682281643, -4.997535931, -6.53320885, -6.818739011, -7.632846082, -7.961720876, -7.447724286, -7.517106479, -7.337554137, -8.074523567, -7.960234017, -7.361786187, -6.252871679, -6.992445136, -6.47602422, -7.793797677, -7.64013785, -6.914653231, -7.197998632, -7.445035843, -6.708188034, -8.537558524, -8.72033435, -8.700795997, -8.062208409, -7.353422465, -6.685377089, -7.263527815, -7.029528054, -6.975247171, -5.8881961, -7.042514933, -6.771272868, -6.902621676, -7.093288365, -7.785904999, -5.677946729, -7.287473942, -7.677026182, -8.242578922, -10.543283725, -6.780088549, -6.89474984, -7.677039776, -8.05730143, -7.537703429, -7.243874787, -7.967884436, -7.734389025, -7.951389518, -7.807586797, -7.518258799, -7.195877358, -8.056542429, -8.098782558, -7.032215607, -7.220372439, -7.150227049, -7.837883869, -7.669939184, -6.928386486, -6.959536103, -7.171513499, -7.080298409, -6.561412731, -7.835580552, -7.806274014, -8.103285266, -6.680396413, -7.489757807, -6.884578199, -6.682384618, -8.177848533, -7.439859758, -7.404863259, -8.306831259, -5.883028931, -6.563176245, -6.746825545, -6.48641821, -6.723653078, -7.484914199, -7.207996098, -7.69639689, -7.563927828, -7.426441671, -8.066103534, -7.497735146, -6.960799309, -7.476926696, -8.04317924, -7.144859543, -7.846758958, -7.140006761, -7.62017267, -7.173166114, -6.486548196, -5.907062451, -7.077693005, -7.627283423, -6.890060681, -7.02314348, -7.533386345, -7.361251534, -9.486599161, -6.838633569, -6.785731535, -7.25845401, -7.555629642, -6.050523372, -6.077219431, -7.586608871, -6.961887681, -8.538904955, -7.075085519, -8.27103819, -7.411378417, -6.235774995, -6.610386359, -8.106264436, -6.670781904, -8.280460708, -9.119722566, -7.315243627, -6.95286802, -6.89001891, -6.550813165, -7.298325834, -5.665998376, -7.12820071, -9.198164331, -7.483441509, -8.657508788, -6.428530532, -7.718989622, -6.906522822, -7.582888036, -6.7908583, -7.04045104, -7.484832986, -7.201169695, -7.692598584, -7.253693258, -8.696575192, -6.526265807, -6.671885985, -6.929648482, -6.960199607, -8.178721537, -7.589938281, -6.503617679, -6.276782085, -7.738697573, -7.656220152, -7.806211507, -7.569540701, -8.047175199, -7.793103903, -7.226628498, -7.181387912, -7.330652126, -7.139511293, -8.208930347, -7.326403673, -7.602330992, -7.964684419, -7.118350273, -8.884763984, -7.469874599, -8.692916922, -6.60235123, -7.229036221, -7.748077356, -8.626146034, -8.609242715, -7.239393998, -7.401156005, -7.874508695, -7.244819413, -7.677708836, -7.206026137, -7.144739884, -8.457603983, -7.601677587, -6.166730336, -7.325035018, -8.357038937, -8.313632332, -7.282304287, -9.822083868, -15.588025372, -6.799331693, -7.43852556, -7.628298584, -7.503850778, -7.584110271, -7.71086382, -8.209168634, -5.430563483, -7.534732734, -6.31620211, -5.725492655, -7.078759551, -7.752892209, -7.484400063, -6.897268606, -7.152010686, -9.100602086, -8.730960481, -9.467672279, -7.611613843, -6.716199338, -7.938551028, -7.177046539, -7.715696793, -7.508252167, -7.055006074, -8.014770496, -7.535234065, -8.722535889, -7.287086274, -8.396270687, -8.148725236, -6.606912238, -6.249749783, -7.322988143, -6.64713612, -7.484685236, -8.27882291, -6.921585044, -7.924623368, -7.198899588, -7.526552163, -7.624841045, -7.416010556, -7.741410358, -6.487359146, -7.332702831, -6.61513455, -6.947711013, -7.352783213, -8.926100853, -7.274374494, -7.636088247, -7.812106089, -6.89996705, -6.852702779, -7.812350897, -8.444025667, -10.077183344, -7.676174762, -7.221274536, -6.944029917, -6.718713789, -8.11228716, -7.275409985, -7.108637909, -7.112489682, -6.697790888, -6.497637419, -7.927908148, -6.891755739, -5.880591038, -6.833029975, -8.228832577, -8.114907254, -7.527605657, -8.927388014, -7.959220861, -7.354183185, -8.159524296, -7.24239898, -7.821210333, -7.518933312, -6.685908958, -6.997952727, -7.494419298, -4.305341198, -7.599021121, -7.421201482, -7.008394063, -6.602612005, -7.370793014, -7.435632174, -6.809904003, -7.994130663, -8.592629298, -8.099304894, -7.754023509, -7.445754958, -7.844634647, -7.652127791, -6.863479575, -6.029878178, -6.948680473, -6.453785331, -6.454963589, -8.958078299, -8.195810069, -7.425660518, -8.364413386, -7.05447662, -7.87191202, -7.877690564, -8.389247849, -7.804540437, -6.971882326, -7.970517524, -6.901209364, -7.078004159, -7.283805353, -6.595286482, -7.531171669, -9.933501929, -6.640998315, -6.76844135, -7.035980105, -6.907459135, -6.917164333, -7.11396292, -7.590480579, -5.980203806, -6.387716732, -7.350884271, -7.339526921, -7.625609441, -6.547056854, -7.496583168, -6.949874977, -8.216269318, -7.606390558, -6.5900227, -6.492772929, -7.013295546, -6.985107651, -7.644369778, -6.043171077, -7.278347064, -9.08913789, -8.873055957, -7.42558243, -7.723607979, -6.909057723, -6.452099682, -7.146971042, -7.720504154, -10.597643121, -7.603093244, -6.28330521, -7.020669017, -6.509714134, -6.985979693, -7.865147049, -6.604565628, -7.626854532, -7.542952645, -8.18744632, -8.184577692, -7.406193287, -7.272186951, -6.572061669, -5.962545378, -6.001406912, -7.492088731, -6.14946848, -7.095217504]}, {"log_prior": -0.693841384, "feature_log_probs": [-6.181645456, -5.984752242, -7.007208343, -6.930558568, -6.732125621, -7.145091662, -7.108043662, -6.664121224, -7.010553185, -7.179995484, -7.149961357, -7.460057622, -6.552920716, -7.538811857, -8.147127305, -8.172649551, -8.207902121, -7.801576288, -7.944794524, -7.637438348, -7.572479955, -7.630660256, -7.372858456, -7.40522764, -7.169380898, -7.272549871, -7.285017103, -7.546824094, -7.432010751, -7.383984937, -7.090707804, -7.375082732, -7.308847199, -7.66252686, -7.223599442, -6.86229655, -7.542262937, -7.468468478, -7.68239122, -7.679425424, -6.588187798, -7.89465973, -7.798420671, -7.741953352, -7.385111293, -7.019814915, -7.254329326, -7.648311255, -8.585335317, -6.82596651, -6.53080827, -8.872924157, -6.637204923, -6.760498507, -6.62697992, -7.245151691, -10.23355985, -7.898196997, -7.108518883, -7.802499557, -7.344466806, -7.873394343, -7.265507123, -6.54103961, -7.767465297, -6.529334265, -7.115247087, -7.379159874, -7.405106256, -7.440094614, -7.56599633, -8.612349776, -7.173374116, -7.708622904, -7.782407287, -6.982616939, -8.797637982, -8.488562671, -7.765202294, -8.251631078, -6.984256664, -8.240992916, -9.129124642, -6.679528734, -8.157770497, -12.354106413, -10.127583583, -7.281022629, -7.680389275, -7.113513701, -6.372929816, -13.202715605, -7.370385315, -6.864862965, -7.427916911, -7.294367353, -6.55434673, -6.52067043, -8.084636913, -6.952241158, -7.815403599, -6.331421696, -7.895098325, -6.970118615, -7.695889272, -7.282624672, -7.57931841, -7.80488625, -7.026077405, -7.218106814, -6.948512516, -8.547212821, -8.337203177, -9.15016236, -8.121123087, -8.85179572, -6.915907821, -6.601302972, -7.390463176, -6.941278488, -7.430880329, -7.558342442, -7.716998811, -8.255264067, -7.2616798, -10.135864311, -11.807617624, -7.92953244, -6.85033596, -9.001573221, -8.453275966, -6.450244134, -6.94973483, -7.265535561, -6.606154087, -7.801838834, -7.05758456, -6.995913008, -7.234338629, -15.487906603, -7.418263862, -6.382880439, -7.082174394, -7.644294483, -6.948013093, -7.608205656, -7.455258294, -7.556450293, -7.033697986, -8.016494107, -7.203972728, -5.793369237, -6.052445295, -6.123375489, -7.484064684, -5.955627978, -6.651937388, -7.318657053, -6.574637994, -6.536648704, -6.252152855, -7.09746497, -6.030225799, -6.035255359, -6.502369793, -8.915697163, -7.088773621, -6.799648258, -7.173235734, -7.374688784, -7.104917189, -7.506274725, -7.79040616, -7.600818964, -6.906976517, -6.772155329, -6.801042143, -7.003558557, -6.48010047, -6.473648584, -7.293443875, -6.47818296, -7.33514858, -7.154862091, -6.375197786, -6.937267245, -7.486765431, -7.295452616, -9.631700613, -7.72885374, -7.235200424, -6.204403564, -7.184406113, -6.824280976, -7.24476384, -6.577521607, -6.920949397, -7.814503389, -7.174127846, -7.244292741, -7.290297213, -7.712709481, -7.21793888, -6.860269282, -7.43128642, -7.322953761, -7.425365098, -6.408768457, -7.727734777, -6.989084191, -7.438078544, -8.270235321, -9.035611303, -6.37052982, -8.26550792, -7.573415895, -7.161454275, -6.838479725, -7.099686423, -7.280414194, -7.298091805, -6.769473929, -10.081372073, -7.382962296, -9.112636911, -6.422469318, -9.359561103, -8.106817371, -8.566352751, -8.220946201, -7.109287056, -6.91398138, -7.10615626, -6.66190878, -7.575884204, -7.253451684, -10.077335184, -7.010824644, -6.409143748, -10.612602792, -7.545499575, -7.164692254, -7.17730155, -6.424966726, -6.46143603, -7.246321624, -7.511549448, -7.893023825, -7.111066607, -7.701765576, -8.759290709, -8.992910201, -6.944852759, -7.625572654, -6.690581186, -6.456981643, -6.002344433, -7.524861009, -7.279896069, -7.020282747, -7.407932866, -6.891855157, -8.158295731, -7.525861222, -9.291048215, -8.402345098, -10.014140191, -7.213197302, -6.958163593, -7.550323898, -10.578633236, -11.654313794, -7.849232934, -6.425808365, -7.302658701, -8.174198934, -6.804605722, -15.487906603, -7.170630116, -7.963524378, -6.85988291, -7.313088028, -8.873517987, -15.487906603, -7.652876511, -7.142867656, -9.973420479, -6.511320488, -8.596686828, -9.643393046, -7.549481906, -6.278777278, -6.885146295, -7.093981384, -6.942472311, -8.946839628, -10.056768173, -9.358095569, -8.118820502, -7.789029235, -7.143594112, -6.954857765, -7.418748462, -6.668557108, -7.256011005, -6.99151839, -5.765147411, -6.585355461, -7.298719256, -7.45543888, -5.923871521, -6.577439447, -6.966678305, -7.710662338, -8.271664531, -7.743305847, -7.789763564, -7.485631195, -7.506845047, -7.67115081, -7.813112429, -7.345846432, -7.256313616, -8.694297463, -9.880480818, -15.487906603, -8.363564738, -10.725849163, -7.828049752, -6.30727394, -7.032777686, -7.423264007, -7.101006119, -7.305215863, -6.862346313, -6.850433592, -6.609506163, -6.723549074, -8.479489093, -7.224559378, -6.066724921, -7.206070775, -6.926441514, -7.493154763, -7.481180081, -7.731352699, -9.340293917, -8.05746718, -8.466210563, -6.355713715, -6.317905726, -6.472327345, -6.468440586, -5.531126943, -10.030071041, -7.178608759, -6.868180875, -7.778416628, -7.450187359, -6.653565783, -6.928891196, -7.010807902, -7.548509475, -6.27959929, -7.467742896, -7.158735475, -6.48260277, -7.369620159, -7.103058889, -7.444382418, -7.019968532, -7.820668397, -8.367680851, -9.190105903, -10.909501337, -10.871075584, -6.766724014, -7.23459744, -6.891288069, -8.237754197, -8.956890125, -7.790816128, -8.702101576, -6.455246433, -6.56950338, -9.305223111, -6.91972246, -7.259431604, -7.623796121, -7.12869015, -6.759351003, -8.233396517, -6.603735446, -7.344656885, -7.831268761, -7.100736148, -7.284903778, -7.393946878, -7.517651268, -7.162733954, -6.297251124, -7.766672882, -6.976922256, -7.761349474, -7.584754125, -6.31438547, -7.616481022, -7.471542985, -7.137955409, -6.680900308, -6.862046912, -8.089288406, -7.597028385, -7.448923621, -7.300609474, -8.342445781, -8.088193463, -6.809475846, -6.813332242, -6.912182135, -7.721552248, -10.36867774, -7.586626204, -6.775813248, -8.223128989, -8.479226166, -6.302670881, -7.047825529, -7.021396485, -7.043447649, -8.164549306, -7.149617151, -6.85948765, -9.091798051, -7.304495718, -6.796070404, -7.600679552, -7.119989548, -8.162177315, -7.223107955, -7.297043445, -7.422983648, -7.221649024, -8.529009075, -7.113007848, -9.725706093, -6.870855618, -7.416400893, -6.827180705, -7.938099133, -6.758214663, -5.795030196, -7.529122221, -8.044711347, -8.335179713, -7.652431084, -7.682047541, -6.665701553, -7.158552931, -7.755366918, -9.377801923, -5.976065708, -8.248758518, -7.162756937, -8.534469976, -7.197986802, -6.897799439, -7.328860598, -6.55836917, -7.671390285, -6.518208859, -5.757151817, -6.560426848, -7.57042611, -7.334917067, -7.452843082, -8.540401394, -7.899704954, -7.980117634, -7.126810544, -6.359093287, -6.886804068, -7.284623663, -7.209080716, -7.414882228, -7.078100279, -7.099280198, -6.05883515, -5.871584358, -5.691132141, -6.613663435, -7.512700986, -8.171027921, -6.199572162, -7.50581625, -7.459336028, -6.567215031, -7.294752487, -7.305125387, -6.880506933, -6.883709966, -9.779389904, -8.573878268, -6.712319229, -6.658912789, -7.340878047, -7.368490357, -8.06941912, -6.629880449, -6.534543505, -6.808915759, -6.33729006, -7.270658819, -9.364402114, -6.96220177, -8.012804757, -6.018913396, -7.66464952, -6.822723392, -6.217358427, -6.762868582, -7.045398712, -6.80763492, -7.223709703, -7.431468653, -5.950995692, -7.623601168, -7.253880807, -7.433415818, -6.780282791, -6.885013813, -7.076144774, -7.104871783, -6.565014377, -7.64311935, -7.138797336, -7.559428463, -6.625381135, -6.933907525, -8.399559879, -9.239355281, -6.8302971, -6.792685949, -7.792958216, -8.628536351, -7.242080635, -6.330425747, -7.143524223, -7.272145235, -6.875087588, -7.56330295, -7.311527528, -6.734807078, -6.781873012, -7.056449799, -7.854850376, -7.398429764, -7.37168088, -7.313379658, -7.931517027, -6.913430423, -7.883150459, -6.600161116, -7.156193994, -6.580469722, -7.364458512, -6.459206844, -8.44423673, -7.074111833, -7.713505957, -7.159374494, -6.784587191, -7.553148691, -8.755918446, -10.022504941, -10.517037618, -6.971673264, -7.797860153, -9.66960311, -8.144043525, -7.410135339, -6.493886208, -7.486616606, -8.45894097, -7.334720056, -10.965678977, -7.982104487, -8.389579308, -8.158215164, -6.702415163, -7.157722433, -7.548986223, -7.227269849, -9.102726083, -8.817769323, -7.925593816, -7.658092535, -7.500874457, -10.929978403, -9.46396548, -9.599028589, -6.672038014, -7.141722544, -8.74595011, -6.729610066, -7.597612895, -7.733594188, -5.881753303, -7.391610599, -6.71159565, -7.655135687, -7.48716807, -6.921691481, -6.661789871, -6.783782526, -7.196239804, -7.659950067, -6.710842568, -7.292978989, -7.876617092, -8.749323077, -8.998519966, -10.22860326, -9.657611453, -7.134021546, -8.122273175, -8.130173637, -7.655987655, -6.599684513, -6.907849426, -7.087461962, -7.462014986, -6.998496602, -8.486009822, -10.164576295, -6.359570166, -8.238663438, -6.619932361, -5.885282875, -6.626719626, -6.752613095, -7.442873472, -6.669945288, -7.228148312, -7.119289019, -6.393266906, -6.198046259, -6.505292903, -7.254447843, -6.918251834, -5.683669721, -6.631585364, -7.18319683, -6.101359723, -7.064925595, -6.115505829, -6.49544145, -7.058021509, -7.834556676, -7.183837887, -6.176589295, -6.184831853, -6.597172337, -7.091257327, -7.46815018, -7.349987847, -7.204860161, -7.239870231, -8.03772547, -5.482595054, -6.443832544, -6.519751484, -6.880698424, -15.487906603, -7.137489973, -7.799901247, -7.780069185, -6.232600058, -7.194546646, -7.823877477, -7.745691707, -7.178741267, -6.878926741, -6.862886795, -7.487621786, -6.455860336, -6.593654973, -6.915599158, -7.64976801, -8.09682986, -7.988688382, -7.73809827, -6.836710965, -7.271696781, -7.477294863, -7.960407194, -6.889442765, -7.798401328, -7.603669869, -9.109734914, -6.645079645, -7.81219801, -6.632708311, -9.039287803, -6.660995978, -7.963156063, -6.656040968, -7.043155454, -7.043261441, -7.054450101, -7.970732208, -5.989588458, -6.970259899, -7.008918972, -7.477237207, -7.663913104, -7.711994624, -7.129902279, -7.177694998, -6.443458558, -6.882949361, -15.487906603, -6.954385353, -6.898672943, -7.465986534, -7.449577869, -7.810045006, -7.469714071, -7.294377419, -6.723456812, -7.045738133, -7.184924149, -7.296708832, -7.467023073, -5.655380834, -6.858840024, -6.782456028, -6.974290334, -5.344583382, -7.077736851, -7.05541647, -7.007737875, -7.740271664, -6.925128988, -8.399144106, -7.553487629, -6.661601088, -8.032538096, -6.389240493, -7.461030786, -10.785689763, -12.58217399, -8.046952898, -6.700530537, -7.865681819, -6.929735289, -8.102639766, -9.110887928, -9.818182273, -8.153229273, -8.585909921, -6.569273392, -7.037556144, -6.57571064, -6.56423436, -8.087348087, -8.182132989, -8.266254089, -7.541697738, -7.24043232, -6.788755624, -6.823033156, -9.369034917, -7.493949506, -7.707601349, -8.068050988, -6.998316486, -7.061119489, -6.723275621, -7.196090754, -7.478878814, -7.064764715, -12.093397955, -7.44241233, -7.101578467, -7.286196905, -6.940192549, -7.477022586, -8.22121987, -7.008693663, -6.933391016, -7.96857214, -6.784209253, -8.133941695, -6.49390689, -6.563300485, -7.565840234, -6.668290671, -6.765465619, -6.765015114, -6.900924394, -7.041668411, -6.366948665, -7.081046643, -6.782860293, -7.309077033, -7.418395696, -6.706646129, -6.493830377, -6.965303933, -6.878154436, -15.487906603, -7.046812722, -7.115306055, -6.49463908, -7.138649686, -8.466438673, -8.322611965, -7.550769357, -7.914470022, -8.693601059, -6.852152358, -7.234778162, -7.148070923, -7.140199837, -6.771773045, -6.45166354, -6.889015735, -7.039906312, -6.701632075, -7.383227686, -9.055286782, -7.071729349, -7.458850623, -7.266241121, -8.145302502, -11.562845779, -7.255742228, -7.451585181, -6.797555596, -7.526986952, -7.452908775, -7.618525741, -6.427554968, -7.886623204, -7.647710211, -10.31752105, -8.238866826, -7.506667673, -7.699033266, -6.546331635, -9.81768172, -6.578325946, -6.847145688, -6.404499831, -6.589967363, -6.769432657, -6.584239199, -6.920394152, -7.482773607, -7.216154569, -6.605106212, -6.798754039, -15.487906603, -15.487906603, -8.344610954, -8.469073572, -7.044442239, -7.57306238, -7.306167032, -7.093941904, -6.915422082, -7.96622762, -6.592258541, -7.303996083, -7.04827923, -6.98670542, -6.999874297, -6.965292723, -7.064646494, -7.770910461, -6.890403278, -6.773998316, -7.145878884, -7.15724338, -8.07954509, -6.030957882, -6.753961427, -6.86910264, -6.127091882, -6.040634345, -7.146440744, -7.456870301, -7.280355769, -7.739017882, -7.129724285, -7.197417438, -7.438292306, -8.304791712, -7.105509331, -7.676309311, -7.288389038, -6.967508731, -7.449701597, -7.124860716, -7.684035473, -7.886827823, -7.724354121, -7.675174388, -7.039590717, -7.405330888, -7.881671448, -7.964438595, -15.487906603, -7.863934134, -7.500966613, -7.558236216, -8.597024158, -7.433606453, -6.320757317, -7.72172208, -7.391695048, -7.566318092, -7.87115677, -7.130842088, -6.990767116, -6.519539099, -7.060048343, -7.155652106, -7.005895869, -6.07154206, -7.732805123, -7.163060154, -7.062913253, -8.670202022, -7.459946833, -8.937370308, -6.704596391, -8.384078063, -7.564691236, -6.889823977, -6.36889526, -6.497950805, -9.79102433, -9.89415614, -7.30664724, -8.118013399, -7.214158733, -7.844164985, -6.799567701, -7.612841207, -6.475550741, -7.654595804, -7.297728675, -7.011765956, -6.391043899, -7.01024674, -6.254609245, -6.701633286, -7.857086018, -9.619366544, -7.453505218, -7.373519346, -6.922515091, -6.698027418, -6.3918402, -7.305537488, -12.152470632, -7.398933584, -8.181644609, -6.793366561, -7.928781367, -8.57354653, -7.672507033, -7.985777386, -6.649696062, -8.362212035, -6.477502982, -6.471914934, -6.723792319, -8.553826265, -6.230353864, -7.505183966, -7.836332849, -7.971014722, -8.283269292, -6.520300021, -7.245506716, -6.774733291, -7.248526016, -7.500090206, -7.040869631, -7.14691171, -8.557467795, -7.404640587, -6.904622709, -6.457011145, -6.840018045, -6.635522659, -6.388994165, -8.055417734, -6.746617638, -6.156578692, -6.754945364, -6.206262897, -7.489064364, -6.906998604, -7.480281309, -6.95627567, -7.951329086, -7.105954299, -7.38083951, -7.003276898, -7.762935963, -7.22658847, -8.275357783, -6.437154441, -7.557270669, -7.615678993, -6.90603623, -6.498626323, -6.783985384, -7.245260298, -6.443030027, -7.257003958, -8.15367558, -7.321931805, -7.145460641, -8.005098407, -6.165604289, -6.659285369, -7.090147629, -6.997061934, -8.578445381, -7.729103418, -7.311042397, -7.751074352, -6.822680926, -6.498017904, -8.511945803, -7.027778334, -7.008944061, -6.584409156, -7.42377723, -7.033385415, -6.450087709, -7.376854638, -7.081381812, -7.035685191, -7.521710474, -7.038371698, -6.935235378, -6.419674358, -7.093574876, -7.3254464, -6.683738553, -7.060635061, -6.813657475, -10.516454119, -6.275556172, -10.238353235, -7.007722586, -6.484722205, -7.274310061, -6.709029657, -6.778393343, -7.07987545, -7.467559819, -7.919684686, -7.781208365, -7.484838832, -7.748299729, -6.388537518, -6.688442746, -6.830845812, -6.906753909, -6.817515465, -7.185108326, -6.912404535, -11.976457443, -8.349243127, -7.504490318, -7.149048789, -6.73853166, -6.898451649, -6.31113018, -5.83983331, -5.918837477, -6.690858672, -6.786385246, -7.476385656, -9.266028532, -9.539936025, -6.448915327, -7.54696892, -6.583905803, -6.908518454, -7.18113696, -7.069609575, -7.077890763, -7.323674158, -7.189860634, -7.32653448, -8.063270131, -7.187501756, -6.682765343, -6.20838044, -7.195114311, -7.90597428, -7.657700334, -6.704088616, -9.961187181, -7.753259411, -6.348380023, -6.881629164, -8.33537581, -6.88681259, -7.214235987, -6.575480063, -6.494648995, -6.880263145, -7.228388963, -6.932280233, -8.139578815, -6.680381322, -7.292904047, -8.410692836, -7.364196342, -6.70320614, -5.458341375, -6.000025849, -7.176725535, -6.644505623, -6.506760172, -6.861145925, -5.947806678, -6.741549142, -6.351990187, -7.143168605, -7.261184882, -5.725243074, -6.754831561, -9.766505728, -6.634495285, -6.825459322, -9.144745447, -7.328896734, -7.279249128, -10.784468395, -10.552166014, -9.864597557, -7.36828454, -5.549481441, -7.009691202, -7.413383005, -7.633778702, -8.548499194, -7.403845879, -7.210370481, -6.124404626, -5.602878066, -6.560504681, -9.87237433, -6.532839837, -6.763701392, -8.730730716, -6.583769723, -7.693845932, -7.275314803, -7.737446971, -6.904602689, -7.772483809, -9.030420966, -9.23560991, -8.445405528, -7.206794089, -7.468372567, -6.516138256, -6.607797642, -6.92094974, -6.050771917, -6.886014616, -5.792600642, -7.301054263, -7.391217624, -6.56876945, -6.551394015, -5.735489089, -6.971426324, -7.388404459, -6.828271647, -6.52056868, -7.28637033, -7.157001625, -7.362074282, -6.060826077, -5.969405331, -6.86779493, -6.961278634, -6.894184403]}], "model_type": "nb", "positive_class_label": "law_and_government", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"jump": [596, 3.453504752], "search": [957, 2.871108936], "developed": [333, 3.537587869], "use": [1129, 1.778520762], "plans": [806, 3.120494723], "land": [612, 3.461601962], "development": [334, 3.092002768], "operation": [765, 3.819439022], "related": [902, 2.474693663], "2014": [25, 3.02151289], "links": [644, 3.339312385], "edit": [366, 3.648813505], "program": [860, 3.075289287], "department": [326, 2.310206974], "defense": [323, 2.990582589], "late": [616, 2.853251319], "months": [713, 2.450740422], "traditional": [1104, 3.332143895], "iraq": [578, 4.560214251], "war": [1155, 2.89850791], "clear": [232, 2.390463929], "risk": [932, 2.936248238], "growing": [498, 3.283353731], "did": [336, 1.86196805], "know": [607, 1.895360134], "shot": [989, 3.520196127], "hit": [523, 3.290179696], "secretary": [960, 3.223930311], "donald": [354, 2.884714588], "asked": [120, 2.438975581], "near": [731, 3.011096129], "term": [1076, 2.822747864], "looking": [656, 2.489961136], "solution": [1008, 3.486294575], "better": [152, 2.226414139], "army": [115, 3.648813505], "special": [1018, 2.511734935], "operations": [766, 3.469765273], "command": [246, 3.891759683], "began": [145, 2.801515644], "using": [1135, 2.133901766], "limited": [641, 3.075289287], "number": [748, 2.168993085], "french": [463, 3.807878199], "anti": [100, 3.38343719], "systems": [1061, 3.243348396], "american": [93, 2.354892464], "previous": [841, 3.042677701], "work": [1182, 1.769498144], "previously": [842, 3.155792505], "named": [724, 3.269840012], "new": [738, 1.402695023], "requirements": [917, 3.842969519], "included": [550, 2.96551862], "plus": [813, 3.303973018], "15": [7, 2.62481208], "second": [958, 2.362989674], "30": [40, 2.53721402], "ability": [49, 2.995671659], "small": [1002, 2.453703387], "arms": [114, 4.130651591], "50": [45, 3.011096129], "performance": [795, 3.406251867], "low": [662, 2.853251319], "moving": [718, 3.31795926], "60": [47, 3.413973913], "hour": [528, 3.503101693], "light": [639, 3.069779631], "information": [562, 2.15568912], "led": [631, 2.713104687], "box": [166, 3.688818839], "field": [429, 3.31795926], "days": [311, 2.274849756], "similar": [995, 2.5633593], "car": [191, 3.332143895], "called": [181, 2.049227889], "ii": [539, 3.785149948], "june": [597, 3.000786759], "2008": [19, 3.453504752], "million": [700, 2.597032516], "firm": [441, 3.346532633], "price": [843, 3.276574044], "training": [1105, 3.290179696], "services": [979, 2.682799337], "2005": [16, 3.796449503], "won": [1178, 2.508595215], "significant": [994, 2.880158771], "technology": [1073, 3.069779631], "year": [1195, 1.786102299], "does": [349, 1.995264894], "claim": [227, 3.192381953], "able": [50, 2.382142106], "uses": [1134, 3.114731019], "seven": [983, 3.230361201], "air": [83, 3.339312385], "effective": [369, 3.390984395], "different": [340, 2.091701411], "times": [1093, 2.138221427], "coming": [245, 2.907810303], "ground": [495, 3.398588995], "range": [881, 3.126291841], "users": [1133, 3.263151024], "receive": [893, 3.249905797], "point": [814, 2.228781004], "12": [4, 2.603905395], "image": [541, 3.453504752], "inside": [563, 3.109000344], "example": [400, 2.277334229], "position": [823, 2.835707009], "computer": [261, 3.591655091], "user": [1132, 3.573305952], "works": [1186, 2.788989384], "open": [764, 2.610825838], "states": [1035, 2.189286905], "false": [415, 3.236833715], "hours": [529, 2.809954513], "starting": [1031, 3.223930311], "2011": [22, 3.217540512], "individual": [558, 3.120494723], "function": [468, 3.546398499], "purpose": [872, 3.310941688], "line": [642, 2.621297138], "areas": [109, 3.223930311], "running": [942, 2.880158771], "result": [925, 2.53721402], "2013": [24, 3.276574044], "took": [1097, 2.560053512], "place": [802, 2.157894192], "archived": [107, 4.423638716], "title": [1094, 3.785149948], "link": [643, 3.429599231], "media": [686, 2.54693857], "official": [759, 2.772528107], "website": [1164, 3.236833715], "april": [106, 3.114731019], "event": [395, 3.332143895], "history": [522, 2.614304102], "world": [1187, 2.073277144], "failure": [412, 3.511612383], "000": [0, 2.289850037], "americans": [94, 3.080829467], "died": [338, 3.658665801], "america": [92, 2.844440689], "moral": [714, 4.213343307], "country": [285, 2.393253331], "particularly": [785, 2.96551862], "military": [699, 3.005928159], "eventually": [397, 3.103302323], "happen": [506, 3.230361201], "critical": [299, 3.325026427], "intelligence": [567, 3.180036117], "reports": [912, 2.990582589], "office": [756, 2.310206974], "process": [854, 2.36570338], "stop": [1040, 2.772528107], "evidence": [398, 2.682799337], "continued": [275, 3.204882116], "men": [692, 3.05885056], "responsible": [923, 3.325026427], "john": [591, 3.000786759], "kennedy": [600, 4.747425793], "decision": [319, 2.697837215], "record": [897, 2.97048141], "left": [632, 2.44778621], "public": [870, 2.04330487], "long": [653, 1.829655061], "material": [680, 3.546398499], "secret": [959, 3.390984395], "held": [515, 2.831368607], "authority": [130, 3.263151024], "great": [493, 2.344197174], "washington": [1156, 2.728608873], "came": [183, 2.560053512], "way": [1160, 1.679372858], "middle": [698, 3.332143895], "century": [202, 3.368511539], "view": [1144, 2.724710233], "reached": [885, 3.332143895], "soon": [1010, 2.945910149], "generally": [475, 3.211191285], "nation": [726, 3.149822338], "president": [835, 2.173467366], "believe": [148, 2.586810962], "young": [1199, 3.032039303], "address": [70, 3.097636585], "united": [1127, 2.390463929], "pay": [792, 2.679074938], "meet": [688, 3.303973018], "support": [1057, 2.424461538], "friend": [465, 3.204882116], "success": [1055, 3.31795926], "force": [452, 2.835707009], "good": [488, 1.995264894], "immediately": [543, 3.092002768], "challenge": [205, 3.180036117], "power": [829, 2.407318261], "send": [968, 3.353805392], "pro": [849, 3.582438436], "government": [491, 2.089637427], "having": [509, 2.330986943], "crisis": [298, 3.494662825], "political": [819, 2.514884544], "concerns": [262, 3.223930311], "make": [669, 1.6081026], "south": [1014, 3.263151024], "felt": [427, 3.249905797], "act": [57, 2.621297138], "death": [313, 3.042677701], "instead": [566, 2.371152984], "published": [871, 2.8488363], "administration": [71, 2.671667497], "shared": [987, 3.325026427], "forces": [454, 3.528854189], "august": [127, 3.256506481], "win": [1175, 3.437504411], "plan": [804, 2.884714588], "november": [747, 3.137987881], "key": [601, 2.671667497], "safe": [945, 3.406251867], "leaders": [626, 3.429599231], "bad": [136, 2.945910149], "situation": [1000, 3.114731019], "got": [490, 2.527583127], "allowed": [88, 2.975468951], "heard": [512, 3.092002768], "man": [672, 2.793147395], "feel": [426, 2.772528107], "deal": [312, 2.675364359], "given": [481, 2.274849756], "conference": [265, 3.658665801], "question": [875, 2.583426864], "stay": [1037, 3.126291841], "build": [175, 2.995671659], "opinion": [767, 3.361131432], "turn": [1116, 2.756333421], "future": [470, 2.660658211], "live": [647, 2.701632286], "learn": [628, 3.053430493], "answer": [99, 2.926678787], "18": [10, 2.818465202], "later": [617, 2.245507798], "told": [1096, 2.144736108], "want": [1152, 1.960238272], "leave": [630, 3.02151289], "ve": [1140, 2.171227723], "things": [1086, 2.15568912], "right": [930, 1.949427355], "home": [525, 2.418714396], "approach": [105, 3.137987881], "fully": [467, 3.167840844], "remain": [907, 3.230361201], "available": [131, 2.600463051], "going": [487, 2.05121005], "presidential": [836, 3.132122761], "election": [374, 2.844440689], "national": [727, 2.292372107], "security": [962, 2.493042802], "night": [740, 3.137987881], "thinking": [1088, 3.192381953], "thing": [1085, 2.43314466], "think": [1087, 2.091701411], "don": [353, 1.789151082], "looks": [657, 3.406251867], "getting": [480, 2.489961136], "hope": [526, 3.192381953], "committed": [250, 3.192381953], "worth": [1188, 3.032039303], "biggest": [154, 3.310941688], "saw": [950, 3.256506481], "thought": [1089, 2.686537659], "kids": [602, 3.796449503], "course": [287, 2.518044104], "start": [1029, 2.393253331], "rest": [924, 3.120494723], "half": [503, 2.866614546], "comes": [244, 2.502345195], "easy": [363, 2.74435723], "hard": [508, 2.560053512], "seen": [963, 2.553474541], "chief": [215, 2.768454782], "robert": [934, 2.926678787], "decided": [318, 3.103302323], "news": [739, 2.330986943], "nearly": [732, 2.788989384], "white": [1170, 2.493042802], "house": [530, 2.344197174], "described": [328, 3.053430493], "space": [1016, 3.204882116], "gave": [473, 2.980481493], "remember": [909, 3.230361201], "crimes": [296, 3.080829467], "forced": [453, 3.290179696], "break": [169, 3.276574044], "democratic": [324, 3.167840844], "committee": [251, 2.985519287], "files": [434, 4.099399048], "self": [965, 2.90314829], "potential": [828, 2.667984252], "effect": [368, 3.053430493], "north": [742, 3.429599231], "including": [552, 1.89705937], "29": [39, 3.429599231], "released": [905, 2.772528107], "problem": [852, 2.560053512], "prevent": [840, 3.17391989], "sure": [1059, 2.407318261], "exactly": [399, 3.011096129], "hand": [504, 2.682799337], "september": [974, 3.297052575], "ll": [650, 2.410155142], "say": [951, 1.993390479], "went": [1168, 2.814200804], "lives": [648, 2.975468951], "post": [826, 2.44778621], "executive": [401, 3.042677701], "longer": [654, 2.682799337], "citizens": [224, 3.469765273], "decisions": [320, 3.230361201], "policies": [817, 3.361131432], "hold": [524, 2.912494152], "obama": [750, 3.437504411], "exercise": [402, 3.741186825], "message": [694, 3.528854189], "civil": [226, 2.985519287], "argued": [111, 3.332143895], "life": [638, 2.320542984], "means": [685, 2.323143765], "values": [1138, 3.668616132], "fight": [430, 3.310941688], "legal": [633, 2.396050536], "worked": [1183, 2.780724875], "close": [237, 2.621297138], "laws": [620, 2.818465202], "surveillance": [1060, 4.011106441], "protect": [865, 3.080829467], "privacy": [847, 3.956298204], "used": [1130, 1.89705937], "word": [1179, 3.204882116], "27": [37, 3.437504411], "issues": [584, 2.694056492], "senate": [967, 3.236833715], "trump": [1111, 2.424461538], "comments": [248, 3.256506481], "campaign": [186, 2.653385452], "certain": [203, 2.716958256], "built": [177, 3.109000344], "created": [292, 2.793147395], "deputy": [327, 3.564256117], "director": [345, 2.780724875], "union": [1126, 3.346532633], "true": [1110, 2.740396829], "create": [291, 2.600463051], "basis": [143, 3.269840012], "doing": [352, 2.413000094], "sense": [970, 2.7523254], "helped": [517, 3.192381953], "recently": [896, 2.724710233], "wrote": [1194, 2.621297138], "book": [163, 3.005928159], "policy": [818, 2.740396829], "currently": [302, 3.167840844], "amendment": [91, 3.773976648], "university": [1128, 2.690290009], "blog": [160, 3.421756054], "let": [635, 2.357584255], "claims": [229, 3.120494723], "kind": [604, 2.671667497], "credit": [294, 3.600957483], "cia": [222, 4.584906864], "black": [159, 3.17391989], "goal": [485, 3.361131432], "early": [359, 2.53078313], "2009": [20, 3.494662825], "law": [619, 2.100000214], "argument": [112, 3.564256117], "gets": [479, 3.143887603], "decide": [317, 3.339312385], "congress": [266, 2.871108936], "area": [108, 2.90314829], "legislation": [634, 3.762926811], "courts": [289, 3.276574044], "ultimately": [1123, 3.263151024], "important": [546, 2.191567407], "constitutional": [271, 3.688818839], "didn": [337, 2.560053512], "wanted": [1153, 2.827048946], "section": [961, 3.223930311], "records": [898, 3.211191285], "federal": [425, 2.274849756], "stand": [1026, 3.243348396], "statement": [1034, 2.682799337], "day": [310, 2.025743443], "state": [1032, 2.075307601], "victims": [1142, 3.891759683], "court": [288, 2.315361625], "cases": [197, 2.614304102], "changes": [209, 2.955666324], "2015": [26, 2.990582589], "taken": [1063, 2.720826733], "criminal": [297, 2.590206551], "trying": [1114, 2.496133995], "positive": [824, 3.610347224], "person": [797, 2.471667942], "saying": [952, 2.649768812], "documents": [348, 3.114731019], "ordered": [772, 3.503101693], "release": [904, 3.053430493], "brought": [172, 3.000786759], "fit": [442, 3.486294575], "look": [655, 2.228781004], "possible": [825, 2.277334229], "years": [1196, 1.705708406], "ago": [80, 2.732522773], "events": [396, 3.192381953], "11": [3, 2.760357572], "especially": [390, 2.671667497], "practice": [832, 3.069779631], "countries": [284, 3.243348396], "candidate": [188, 3.648813505], "track": [1102, 3.445472581], "lot": [660, 2.379383484], "reasons": [892, 3.167840844], "powers": [831, 3.719909426], "wants": [1154, 3.269840012], "step": [1038, 2.884714588], "york": [1198, 2.410155142], "changed": [208, 3.290179696], "issue": [582, 2.573342744], "general": [474, 2.210001109], "james": [586, 3.310941688], "difficult": [341, 2.97048141], "certainly": [204, 3.211191285], "reason": [891, 2.649768812], "thursday": [1092, 3.461601962], "judge": [593, 2.889291255], "date": [308, 3.211191285], "immigration": [544, 3.831135061], "case": [196, 1.978520316], "questions": [876, 2.664314523], "son": [1009, 3.629395419], "ms": [720, 3.719909426], "away": [134, 2.471667942], "authorities": [129, 3.406251867], "accused": [56, 3.256506481], "border": [165, 3.648813505], "contact": [272, 3.339312385], "signed": [993, 3.325026427], "order": [771, 2.34953052], "parents": [783, 3.494662825], "children": [217, 2.950776339], "hundreds": [534, 3.211191285], "little": [646, 2.238304885], "enforcement": [385, 3.048039644], "set": [981, 2.136059264], "thousands": [1090, 2.995671659], "lawyers": [623, 3.243348396], "officials": [760, 2.550201216], "senior": [969, 3.186189983], "health": [511, 2.955666324], "human": [533, 2.776618093], "agency": [77, 3.05885056], "working": [1185, 2.382142106], "families": [416, 3.477995772], "quickly": [877, 2.840064314], "officer": [757, 3.332143895], "fact": [410, 2.357584255], "25": [35, 2.831368607], "knew": [606, 3.223930311], "tried": [1109, 2.862140266], "outside": [777, 2.675364359], "31": [41, 3.564256117], "old": [761, 2.418714396], "officers": [758, 3.486294575], "spent": [1022, 3.02151289], "month": [712, 2.477728567], "500": [46, 3.137987881], "week": [1166, 2.312780978], "help": [516, 2.055186198], "finally": [437, 2.97048141], "talk": [1066, 3.032039303], "minutes": [704, 3.243348396], "southern": [1015, 3.290179696], "city": [225, 2.671667497], "social": [1004, 2.621297138], "tuesday": [1115, 3.437504411], "need": [734, 1.865257527], "attempt": [123, 3.211191285], "visit": [1146, 3.494662825], "maybe": [682, 3.297052575], "interview": [572, 3.103302323], "large": [614, 2.600463051], "face": [408, 2.686537659], "come": [243, 2.129600684], "doesn": [350, 2.269899251], "video": [1143, 3.048039644], "buy": [179, 3.097636585], "school": [954, 2.875623616], "real": [889, 2.38490836], "passed": [788, 3.186189983], "killed": [603, 3.573305952], "chance": [206, 3.223930311], "phone": [799, 3.109000344], "series": [975, 2.990582589], "text": [1081, 3.573305952], "texas": [1080, 3.648813505], "idea": [537, 2.62481208], "calls": [182, 3.167840844], "private": [848, 2.780724875], "workers": [1184, 3.528854189], "clients": [235, 3.629395419], "asking": [121, 3.263151024], "cities": [223, 3.619825968], "child": [216, 3.461601962], "try": [1113, 2.527583127], "attorney": [125, 2.553474541], "network": [737, 3.310941688], "group": [496, 2.360283312], "women": [1177, 2.889291255], "center": [200, 2.950776339], "east": [362, 3.658665801], "aren": [110, 3.143887603], "happened": [507, 3.230361201], "road": [933, 3.511612383], "lawyer": [622, 2.990582589], "client": [234, 3.668616132], "woman": [1176, 3.361131432], "turned": [1117, 2.950776339], "friday": [464, 3.437504411], "family": [417, 2.586810962], "numbers": [749, 3.297052575], "file": [432, 3.461601962], "allow": [87, 2.7523254], "grand": [492, 3.831135061], "international": [570, 2.97048141], "mark": [676, 3.421756054], "hearing": [513, 3.406251867], "earlier": [358, 2.671667497], "today": [1095, 2.398855587], "facebook": [409, 3.310941688], "platform": [807, 3.528854189], "leading": [627, 3.155792505], "charge": [210, 3.097636585], "account": [54, 2.945910149], "data": [306, 2.679074938], "effort": [371, 3.048039644], "room": [937, 3.069779631], "highly": [521, 3.075289287], "access": [52, 2.768454782], "non": [741, 2.805726177], "europe": [393, 3.63905733], "company": [256, 2.543686535], "deep": [321, 3.437504411], "canada": [187, 4.039679813], "france": [459, 3.969721225], "wasn": [1157, 3.037344355], "best": [151, 2.133901766], "bit": [158, 3.011096129], "really": [890, 2.27237144], "influence": [561, 3.353805392], "global": [484, 3.477995772], "change": [207, 2.36570338], "tools": [1099, 3.477995772], "reported": [911, 2.760357572], "claimed": [228, 3.353805392], "problems": [853, 2.917200043], "debate": [314, 3.600957483], "cause": [199, 3.161798529], "africa": [73, 4.322542599], "mr": [719, 2.936248238], "instagram": [564, 4.162912454], "form": [457, 2.679074938], "talking": [1067, 3.353805392], "actually": [63, 2.438975581], "simply": [997, 2.597032516], "probably": [850, 2.720826733], "economic": [364, 3.413973913], "control": [276, 2.664314523], "short": [988, 2.805726177], "internet": [571, 3.290179696], "press": [837, 2.809954513], "points": [815, 3.211191285], "members": [691, 2.701632286], "details": [332, 2.950776339], "taking": [1065, 2.540445041], "emails": [379, 3.819439022], "reading": [887, 3.204882116], "internal": [569, 3.406251867], "business": [178, 2.424461538], "original": [776, 3.080829467], "based": [141, 2.144736108], "model": [706, 3.186189983], "email": [378, 3.192381953], "sent": [971, 2.936248238], "october": [752, 3.283353731], "russian": [944, 3.276574044], "billion": [157, 3.453504752], "friends": [466, 3.092002768], "body": [162, 3.103302323], "opportunity": [768, 3.236833715], "agencies": [76, 3.406251867], "activity": [62, 3.368511539], "huge": [532, 3.276574044], "specific": [1019, 2.764397981], "investigations": [574, 3.591655091], "ask": [119, 2.788989384], "abuse": [51, 3.421756054], "writing": [1191, 3.339312385], "request": [914, 2.990582589], "comment": [247, 3.042677701], "investigation": [573, 2.62833942], "report": [910, 2.459655786], "note": [743, 2.96551862], "additional": [69, 3.005928159], "jail": [585, 3.619825968], "prosecutors": [864, 3.126291841], "letter": [636, 3.276574044], "conduct": [264, 3.236833715], "obstruction": [751, 4.146651933], "justice": [599, 2.38490836], "charges": [212, 2.96551862], "popular": [821, 3.011096129], "voters": [1149, 3.969721225], "read": [886, 2.404489405], "mueller": [721, 3.310941688], "high": [519, 2.15568912], "far": [418, 2.250338725], "democrats": [325, 3.398588995], "isn": [581, 2.590206551], "tool": [1098, 3.503101693], "free": [461, 2.352207898], "begin": [146, 3.31795926], "rule": [939, 3.180036117], "elections": [375, 4.011106441], "voting": [1150, 4.361763312], "gives": [482, 3.204882116], "meaning": [684, 3.361131432], "personal": [798, 2.524393332], "money": [711, 2.393253331], "payments": [793, 3.688818839], "physical": [801, 3.437504411], "tax": [1070, 3.256506481], "fraud": [460, 3.63905733], "decades": [315, 3.132122761], "direct": [343, 3.192381953], "counsel": [283, 3.053430493], "10": [1, 2.114690929], "lead": [624, 2.740396829], "shows": [991, 3.064300165], "constitution": [270, 3.537587869], "paper": [781, 3.461601962], "fair": [413, 3.406251867], "game": [471, 3.375946518], "twitter": [1118, 2.941067525], "separate": [973, 3.042677701], "consider": [268, 2.936248238], "alleged": [86, 3.38343719], "behavior": [147, 3.503101693], "foreign": [456, 2.960580339], "cover": [290, 3.290179696], "setting": [982, 3.445472581], "vote": [1148, 3.619825968], "making": [671, 2.10208572], "likely": [640, 2.396050536], "crime": [295, 2.97048141], "article": [117, 2.646165204], "protection": [866, 3.263151024], "greater": [494, 3.503101693], "attention": [124, 2.990582589], "easily": [361, 3.064300165], "following": [450, 2.502345195], "total": [1100, 3.17391989], "india": [557, 4.213343307], "accounts": [55, 3.469765273], "followed": [449, 3.297052575], "illegal": [540, 3.283353731], "according": [53, 2.061180222], "considered": [269, 3.097636585], "includes": [551, 3.097636585], "water": [1159, 3.353805392], "trade": [1103, 3.564256117], "parts": [786, 3.230361201], "common": [252, 2.875623616], "involved": [577, 2.801515644], "animal": [96, 4.248434627], "include": [549, 2.631879247], "china": [218, 3.658665801], "failed": [411, 3.236833715], "easier": [360, 3.243348396], "established": [391, 3.453504752], "service": [978, 2.590206551], "rules": [940, 2.89850791], "impact": [545, 3.263151024], "police": [816, 2.990582589], "completely": [259, 3.161798529], "2004": [15, 3.807878199], "rate": [882, 3.346532633], "building": [176, 2.893888964], "local": [651, 2.682799337], "population": [822, 3.546398499], "noted": [744, 3.230361201], "major": [667, 2.835707009], "fbi": [421, 3.375946518], "december": [316, 3.17391989], "college": [241, 3.520196127], "students": [1050, 3.785149948], "single": [998, 2.760357572], "threat": [1091, 3.445472581], "needs": [736, 2.818465202], "lost": [659, 2.980481493], "known": [609, 2.427347543], "stone": [1039, 4.039679813], "staff": [1025, 3.016290946], "prosecutor": [863, 3.709438126], "moment": [709, 3.180036117], "bring": [170, 2.89850791], "simple": [996, 2.844440689], "forward": [458, 2.907810303], "agents": [79, 3.361131432], "investigators": [575, 3.730491536], "individuals": [559, 3.290179696], "efforts": [372, 3.05885056], "continue": [274, 2.756333421], "names": [725, 3.494662825], "test": [1078, 3.398588995], "career": [194, 3.437504411], "tour": [1101, 4.361763312], "path": [790, 3.619825968], "agent": [78, 3.610347224], "job": [589, 2.728608873], "san": [948, 3.709438126], "wife": [1171, 3.629395419], "morning": [715, 3.230361201], "makes": [670, 2.37663245], "announced": [98, 3.192381953], "words": [1181, 2.931452066], "financial": [439, 2.985519287], "district": [346, 2.975468951], "attorneys": [126, 3.699075339], "served": [976, 3.361131432], "return": [928, 3.037344355], "clinton": [236, 3.486294575], "william": [1174, 3.469765273], "end": [383, 2.100000214], "head": [510, 2.705441814], "table": [1062, 3.486294575], "offer": [753, 2.97048141], "main": [666, 3.075289287], "george": [476, 3.346532633], "politics": [820, 3.461601962], "entire": [389, 2.917200043], "run": [941, 2.493042802], "bank": [137, 3.346532633], "21": [31, 3.132122761], "london": [652, 3.741186825], "uk": [1122, 3.678666468], "fall": [414, 3.236833715], "testimony": [1079, 3.658665801], "200": [13, 3.38343719], "35": [43, 3.445472581], "brands": [168, 4.303494404], "reach": [884, 3.137987881], "companies": [255, 2.875623616], "powerful": [830, 3.236833715], "19": [11, 3.276574044], "list": [645, 2.603905395], "travel": [1106, 3.406251867], "meeting": [689, 3.198612503], "experts": [406, 3.290179696], "en": [382, 4.5361167], "site": [999, 3.143887603], "remains": [908, 3.097636585], "size": [1001, 3.249905797], "percent": [794, 2.921928184], "british": [171, 3.469765273], "king": [605, 4.025291076], "paul": [791, 3.339312385], "board": [161, 3.230361201], "moved": [716, 3.31795926], "focused": [447, 3.346532633], "january": [588, 3.064300165], "color": [242, 3.842969519], "sold": [1007, 3.762926811], "14": [6, 2.96551862], "target": [1068, 3.361131432], "tell": [1074, 2.844440689], "analysis": [95, 3.573305952], "march": [675, 3.02151289], "articles": [118, 3.600957483], "store": [1042, 3.537587869], "stated": [1033, 3.730491536], "brown": [173, 3.943052978], "explain": [407, 3.429599231], "mind": [702, 2.857685916], "language": [613, 3.263151024], "23": [33, 3.368511539], "care": [193, 2.955666324], "final": [436, 3.161798529], "wouldn": [1189, 3.180036117], "barr": [139, 4.467123828], "native": [728, 4.130651591], "met": [695, 3.31795926], "level": [637, 2.573342744], "database": [307, 3.85494571], "google": [489, 3.332143895], "required": [916, 2.955666324], "adding": [67, 3.256506481], "provided": [868, 2.862140266], "20": [12, 2.480772709], "id": [536, 4.114903234], "al": [84, 4.054278613], "present": [834, 3.069779631], "team": [1072, 2.694056492], "latest": [618, 3.186189983], "task": [1069, 3.591655091], "germany": [478, 4.084131576], "standards": [1028, 3.546398499], "higher": [520, 2.955666324], "standard": [1027, 3.204882116], "instance": [565, 3.368511539], "photo": [800, 3.741186825], "ensure": [388, 3.230361201], "pretty": [839, 3.167840844], "fine": [440, 3.375946518], "code": [238, 3.211191285], "mean": [683, 2.768454782], "guilty": [501, 3.186189983], "trial": [1108, 3.283353731], "primary": [844, 3.453504752], "majority": [668, 3.092002768], "paid": [780, 3.080829467], "ready": [888, 3.103302323], "jury": [598, 3.943052978], "background": [135, 3.751997741], "matter": [681, 2.553474541], "council": [282, 3.688818839], "february": [424, 3.198612503], "drug": [357, 3.85494571], "relationship": [903, 3.325026427], "complex": [260, 3.325026427], "needed": [735, 2.74435723], "difference": [339, 3.346532633], "action": [58, 2.776618093], "agreed": [81, 3.211191285], "hands": [505, 3.297052575], "believed": [149, 3.413973913], "russia": [943, 3.155792505], "sessions": [980, 3.891759683], "organizations": [775, 3.573305952], "leader": [625, 3.461601962], "agreement": [82, 3.421756054], "big": [153, 2.441903841], "strong": [1048, 2.936248238], "capital": [190, 3.555287447], "100": [2, 2.805726177], "society": [1005, 3.310941688], "2000": [14, 3.891759683], "24": [34, 3.016290946], "role": [935, 2.866614546], "actions": [59, 3.075289287], "prison": [846, 3.17391989], "minister": [703, 3.807878199], "student": [1049, 3.867067071], "mission": [705, 3.773976648], "apply": [104, 3.236833715], "successful": [1056, 3.276574044], "written": [1192, 2.889291255], "industry": [560, 3.236833715], "plea": [811, 3.85494571], "stories": [1044, 3.236833715], "expected": [404, 3.180036117], "engine": [386, 4.084131576], "check": [213, 2.748333379], "26": [36, 3.375946518], "republican": [913, 3.269840012], "filed": [433, 3.217540512], "commission": [249, 3.537587869], "finance": [438, 3.688818839], "status": [1036, 3.167840844], "ways": [1161, 2.642574536], "story": [1045, 2.597032516], "2010": [21, 3.353805392], "daily": [305, 3.086400512], "digital": [342, 3.730491536], "card": [192, 4.039679813], "mass": [679, 3.591655091], "content": [273, 3.204882116], "requires": [918, 3.155792505], "understand": [1124, 2.875623616], "follow": [448, 2.780724875], "22": [32, 3.204882116], "violence": [1145, 3.469765273], "players": [810, 4.248434627], "street": [1047, 3.368511539], "planning": [805, 3.573305952], "monday": [710, 3.555287447], "rights": [931, 2.768454782], "watch": [1158, 3.283353731], "despite": [331, 2.875623616], "armed": [113, 3.929980896], "provide": [867, 2.53078313], "response": [922, 2.889291255], "charged": [211, 3.263151024], "housing": [531, 3.842969519], "food": [451, 3.17391989], "recent": [895, 2.524393332], "weeks": [1167, 2.955666324], "organization": [774, 3.126291841], "project": [861, 2.917200043], "convicted": [277, 3.678666468], "speak": [1017, 3.390984395], "quite": [878, 3.011096129], "ones": [762, 3.02151289], "fear": [422, 3.537587869], "results": [926, 2.960580339], "judges": [594, 3.831135061], "religious": [906, 4.303494404], "choice": [220, 3.269840012], "theory": [1084, 3.503101693], "past": [789, 2.480772709], "basic": [142, 3.155792505], "document": [347, 3.555287447], "groups": [497, 2.936248238], "electric": [376, 4.23073505], "yes": [1197, 3.192381953], "experience": [405, 2.671667497], "started": [1030, 2.780724875], "various": [1139, 2.980481493], "creating": [293, 3.249905797], "giving": [483, 3.132122761], "goes": [486, 3.080829467], "father": [420, 3.658665801], "write": [1190, 3.186189983], "share": [986, 2.801515644], "figure": [431, 3.31795926], "california": [180, 3.236833715], "ad": [64, 3.688818839], "dog": [351, 4.179441756], "central": [201, 3.155792505], "places": [803, 3.303973018], "capacity": [189, 3.709438126], "rates": [883, 3.564256117], "increase": [554, 3.069779631], "resources": [921, 3.339312385], "member": [690, 3.186189983], "age": [75, 3.048039644], "usually": [1136, 2.917200043], "sex": [984, 3.719909426], "type": [1119, 2.857685916], "directly": [344, 2.955666324], "mental": [693, 3.730491536], "average": [132, 3.445472581], "understanding": [1125, 3.325026427], "county": [286, 3.63905733], "play": [808, 3.080829467], "2016": [27, 2.489961136], "wednesday": [1165, 3.429599231], "lawsuit": [621, 3.796449503], "reduce": [900, 3.591655091], "compared": [257, 3.445472581], "education": [367, 3.390984395], "ideas": [538, 3.629395419], "race": [879, 3.546398499], "ford": [455, 4.512586202], "professor": [859, 3.361131432], "sources": [1013, 3.469765273], "wall": [1151, 3.453504752], "journal": [592, 3.537587869], "party": [787, 2.835707009], "supreme": [1058, 3.332143895], "allegations": [85, 3.619825968], "sexual": [985, 3.648813505], "probe": [851, 3.831135061], "david": [309, 3.276574044], "dr": [355, 3.969721225], "source": [1012, 3.092002768], "2018": [29, 2.844440689], "millions": [701, 3.31795926], "save": [949, 3.243348396], "page": [778, 2.772528107], "fast": [419, 3.230361201], "michael": [697, 2.995671659], "cohen": [239, 3.867067071], "flynn": [445, 4.303494404], "13": [5, 2.89850791], "wrong": [1193, 2.89850791], "treatment": [1107, 3.688818839], "love": [661, 2.96551862], "offered": [754, 3.303973018], "study": [1052, 3.149822338], "smart": [1003, 3.796449503], "takes": [1064, 2.827048946], "version": [1141, 3.026762246], "addition": [68, 3.011096129], "medical": [687, 3.528854189], "require": [915, 3.109000344], "received": [894, 2.875623616], "period": [796, 3.02151289], "banks": [138, 4.248434627], "heart": [514, 3.429599231], "knowledge": [608, 3.143887603], "class": [230, 3.325026427], "sort": [1011, 3.421756054], "application": [103, 3.751997741], "activities": [61, 3.361131432], "art": [116, 3.688818839], "appears": [102, 3.297052575], "impossible": [547, 3.486294575], "interesting": [568, 3.546398499], "necessary": [733, 3.005928159], "german": [477, 4.039679813], "taxes": [1071, 3.831135061], "option": [769, 3.398588995], "larger": [615, 3.217540512], "improve": [548, 3.353805392], "existing": [403, 3.38343719], "nature": [730, 3.211191285], "studies": [1051, 3.477995772], "economy": [365, 3.730491536], "elements": [377, 3.917077491], "28": [38, 3.461601962], "property": [862, 3.346532633], "40": [44, 3.069779631], "2017": [28, 2.797322766], "scale": [953, 3.528854189], "sales": [947, 3.867067071], "estate": [392, 3.867067071], "growth": [499, 3.573305952], "benefits": [150, 3.375946518], "effects": [370, 3.785149948], "jobs": [590, 3.762926811], "cost": [280, 2.985519287], "income": [553, 3.629395419], "stores": [1043, 4.322542599], "issued": [583, 3.223930311], "quality": [873, 3.256506481], "market": [677, 3.149822338], "communities": [253, 3.668616132], "raised": [880, 3.269840012], "movement": [717, 3.453504752], "images": [542, 3.730491536], "notes": [745, 3.398588995], "spend": [1021, 3.276574044], "research": [919, 2.764397981], "safety": [946, 3.346532633], "17": [9, 2.995671659], "2012": [23, 3.180036117], "july": [595, 3.143887603], "complete": [258, 3.005928159], "review": [929, 3.011096129], "choose": [221, 3.114731019], "truth": [1112, 3.453504752], "independent": [555, 3.204882116], "gun": [502, 4.069093698], "player": [809, 4.402585307], "weapons": [1162, 4.054278613], "value": [1137, 2.884714588], "subject": [1054, 2.975468951], "designed": [330, 3.126291841], "avoid": [133, 3.037344355], "current": [301, 2.638996715], "island": [580, 3.997120199], "active": [60, 3.486294575], "base": [140, 3.528854189], "2006": [17, 3.785149948], "2007": [18, 3.610347224], "employees": [381, 3.469765273], "prime": [845, 3.842969519], "management": [674, 3.413973913], "provides": [869, 3.249905797], "storage": [1041, 4.248434627], "2019": [30, 3.180036117], "connection": [267, 3.486294575], "manafort": [673, 4.146651933], "sign": [992, 3.042677701], "added": [66, 2.720826733], "sentence": [972, 3.629395419], "hotel": [527, 3.956298204], "funds": [469, 3.891759683], "core": [278, 3.730491536], "culture": [300, 3.38343719], "modern": [708, 3.310941688], "resistance": [920, 4.039679813], "natural": [729, 3.445472581], "association": [122, 3.573305952], "european": [394, 3.668616132], "method": [696, 3.63905733], "focus": [446, 3.032039303], "labor": [610, 4.054278613], "african": [74, 4.179441756], "learning": [629, 3.610347224], "index": [556, 4.23073505], "costs": [281, 3.243348396], "lower": [663, 3.120494723], "tend": [1075, 3.477995772], "florida": [443, 3.969721225], "investment": [576, 3.741186825], "community": [254, 2.926678787], "useful": [1131, 3.413973913], "pressure": [838, 3.477995772], "drive": [356, 3.361131432], "cut": [304, 3.276574044], "living": [649, 3.064300165], "west": [1169, 3.564256117], "pre": [833, 3.730491536], "cash": [198, 3.85494571], "particular": [784, 2.926678787], "red": [899, 3.477995772], "freedom": [462, 3.486294575], "advantage": [72, 3.421756054], "chinese": [219, 3.904338465], "terms": [1077, 2.97048141], "typically": [1121, 3.390984395], "multiple": [722, 2.866614546], "lack": [611, 3.192381953], "los": [658, 3.917077491], "regular": [901, 3.503101693], "style": [1053, 3.528854189], "org": [773, 4.130651591], "budget": [174, 3.582438436], "types": [1120, 3.346532633], "online": [763, 2.875623616], "guide": [500, 3.353805392], "novel": [746, 4.303494404], "strategy": [1046, 3.511612383], "wikipedia": [1173, 5.095732487], "wiki": [1172, 5.565736117], "egypt": [373, 5.38341456], "options": [770, 3.223930311], "professional": [858, 3.332143895], "mail": [665, 4.039679813], "camera": [184, 4.162912454], "server": [977, 4.054278613], "16": [8, 2.950776339], "select": [964, 3.867067071], "allows": [89, 3.120494723], "devices": [335, 3.831135061], "energy": [384, 3.629395419], "scientific": [956, 4.084131576], "flow": [444, 3.956298204], "science": [955, 3.413973913], "author": [128, 3.198612503], "click": [233, 3.582438436], "pages": [779, 3.546398499], "offers": [755, 3.375946518], "clean": [231, 3.773976648], "empire": [380, 4.423638716], "correct": [279, 3.831135061], "film": [435, 3.929980896], "posts": [827, 3.751997741], "sports": [1023, 3.917077491], "app": [101, 3.741186825], "books": [164, 3.469765273], "customers": [303, 3.678666468], "shown": [990, 3.494662825], "female": [428, 3.956298204], "features": [423, 3.406251867], "machine": [664, 3.678666468], "production": [856, 3.610347224], "models": [707, 3.943052978], "helps": [518, 3.421756054], "web": [1163, 3.437504411], "design": [329, 3.453504752], "software": [1006, 3.785149948], "collection": [240, 3.796449503], "cameras": [185, 4.266453133], "battery": [144, 4.636200158], "conditions": [263, 3.445472581], "speed": [1020, 3.469765273], "sell": [966, 3.619825968], "add": [65, 2.990582589], "jan": [587, 4.284802271], "query": [874, 4.747425793], "32": [42, 3.751997741], "isbn": [579, 4.445144921], "retrieved": [927, 4.162912454], "marketing": [678, 4.146651933], "engineering": [387, 4.248434627], "roman": [936, 5.138292102], "product": [855, 3.390984395], "products": [857, 3.310941688], "ice": [535, 4.213343307], "thanks": [1082, 3.503101693], "978": [48, 4.808050415], "animals": [97, 4.248434627], "default": [322, 3.956298204], "pardon": [782, 4.662868405], "cars": [195, 3.983326877], "theme": [1083, 4.489596684], "amazon": [90, 3.796449503], "bike": [155, 4.584906864], "brand": [167, 3.63905733], "games": [472, 4.213343307], "chevrolet": [214, 6.194344776], "rover": [938, 6.076561741], "wordpress": [1180, 4.718438256], "bikes": [156, 4.872588936], "volvo": [1147, 5.971201225], "plugin": [812, 5.095732487], "sql": [1024, 5.329347339], "mysql": [723, 5.565736117]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_online_communities.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_online_communities.json deleted file mode 100644 index 0222b82..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_online_communities.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.690285948, "feature_log_probs": [-6.84280312, -8.199925614, -6.602211956, -7.264737208, -7.291635528, -7.321889528, -7.717516197, -7.566988882, -7.287940016, -7.733895376, -7.587380753, -7.310233576, -7.692745805, -7.182614426, -7.636436442, -8.312828086, -8.429617816, -8.056047552, -7.651050831, -7.464448747, -7.249934026, -7.762792084, -7.568273161, -7.527827511, -7.835571033, -7.517641141, -7.572347956, -7.789942727, -7.787050564, -8.007460121, -7.382853153, -7.692160292, -8.226798259, -8.141910346, -8.220507154, -8.153316934, -7.326745095, -8.143370877, -8.032877798, -8.144453583, -7.337125897, -7.508184966, -7.898794795, -7.635313167, -7.404468458, -6.829886813, -6.733103742, -7.046381111, -5.941898855, -6.581892842, -7.796128942, -7.296237384, -7.702015118, -6.847764094, -7.683785965, -7.237327859, -7.696651541, -6.574061448, -6.738033043, -6.184704044, -6.983479284, -7.026822597, -7.564772968, -7.565006252, -6.979312256, -6.491881287, -7.769043143, -7.519550859, -7.204378289, -7.404257472, -7.377419424, -7.422406308, -7.050237312, -7.693543605, -8.098986713, -7.174261494, -7.172020765, -7.807881465, -7.826976262, -6.986541105, -7.456293425, -7.597947216, -8.082064656, -8.063267943, -8.010772521, -6.765215697, -8.62593935, -8.559834505, -7.507345541, -7.087902506, -7.391272738, -8.080538016, -7.451575132, -5.913359144, -7.2298135, -7.48119483, -8.052869161, -7.934195519, -7.951223136, -7.421596411, -6.377088562, -7.993502149, -8.217506567, -7.487571654, -7.916252606, -6.996857677, -7.818419522, -6.664085868, -6.706559572, -6.507433568, -7.179039417, -7.174269373, -7.974619235, -6.622612605, -5.940785254, -8.09827891, -7.041614942, -7.055720248, -6.78885944, -7.181463065, -7.58632115, -6.875588867, -7.309599333, -7.423377416, -6.962915222, -7.231761973, -7.568068019, -6.74760454, -7.594588644, -7.67848365, -7.437317197, -7.623895368, -7.74089595, -7.693694928, -7.532349136, -7.237625604, -7.812734809, -7.488668329, -6.132441613, -6.409840148, -6.835598499, -7.749871131, -7.404670589, -8.661421132, -8.794930116, -7.376428153, -6.970696916, -6.988342374, -7.957142884, -5.412781101, -7.124378244, -6.783836608, -6.800639691, -6.42641431, -7.922101885, -7.227356084, -7.133348946, -7.872714668, -7.034880083, -7.627663816, -7.538827852, -7.23939813, -7.896300248, -6.269396844, -6.792643617, -7.497911647, -7.532501867, -7.158685077, -7.92679752, -6.700996051, -6.674249574, -6.976176486, -7.282710406, -5.991965885, -7.139687397, -6.466612515, -6.607384218, -7.527808436, -7.99964595, -7.404270628, -7.163968555, -7.744446145, -7.528082262, -7.935295477, -7.277669018, -8.267024649, -7.614159453, -7.288638962, -7.906741786, -8.463023061, -7.106660641, -7.773662668, -7.437430367, -7.23984015, -7.832436636, -7.837014346, -8.559602363, -7.25895824, -7.728511557, -7.740326904, -7.26485932, -6.779588858, -7.491411022, -7.227277553, -7.621659004, -7.04626781, -7.024045807, -7.665092168, -7.693134763, -5.763169058, -6.942701473, -6.539109813, -7.699293152, -8.054043916, -7.610080626, -6.78996415, -7.857540496, -7.680948692, -7.885992894, -7.266080394, -6.05404175, -7.406688511, -7.243200417, -7.320201999, -8.71587523, -6.787687906, -7.677095662, -7.656981304, -7.34778051, -7.692454882, -6.822579125, -6.971943224, -7.404444601, -7.795282925, -6.657008316, -6.256039298, -7.291264813, -7.399360991, -6.873333657, -6.228400998, -6.950410478, -6.275401563, -7.703594006, -8.059048959, -7.548721421, -7.463866064, -8.068211466, -7.271595934, -7.742486595, -8.335713251, -6.657618874, -7.270368181, -7.356389868, -7.075773045, -7.180117886, -7.930262072, -7.44916006, -6.96283961, -5.049002137, -7.665250645, -7.323287228, -7.438394136, -6.470916104, -7.05860376, -7.495959171, -7.094003426, -7.787214626, -7.679501354, -7.929191068, -8.095107949, -7.277759681, -7.059018937, -8.5697536, -7.589173838, -6.05422565, -6.917509261, -6.809149772, -7.354721846, -7.5701994, -7.663448989, -7.197001639, -7.258747947, -7.186274288, -7.30648808, -6.817385791, -7.935684933, -7.17917613, -7.827500125, -7.174897813, -6.080468051, -7.964681136, -6.717104533, -5.95017259, -6.168676266, -6.774424521, -7.775741765, -7.504787011, -7.483831839, -7.447931265, -7.386005462, -7.89207963, -7.793514165, -7.212747945, -7.273067835, -7.168710052, -7.535680467, -7.252048826, -6.736777813, -7.412358759, -7.694644777, -7.245062572, -7.785710031, -7.893434791, -7.803158941, -7.662123065, -7.531482461, -6.721273489, -6.79255899, -7.701957577, -6.534361074, -7.310777446, -6.798015402, -7.21887153, -7.085688932, -7.389486152, -7.374090111, -7.178332227, -8.27353755, -6.737554184, -6.620750466, -6.701349895, -7.320960508, -5.634301622, -7.998116966, -6.787238758, -7.326217933, -8.007182737, -7.396169327, -7.565790998, -7.169054733, -6.913760279, -6.900099907, -6.492110721, -8.595599429, -8.422620753, -7.084983492, -7.970754984, -7.771155606, -7.448035089, -7.357075509, -7.60979481, -6.064836487, -7.172643809, -7.921373965, -7.424534304, -6.872032975, -8.139008824, -7.173188199, -6.249413338, -7.229855811, -7.568250514, -7.458683168, -7.52524144, -7.320038024, -7.433619113, -8.012416111, -8.004882654, -7.082425403, -7.808781215, -8.269960746, -7.299074798, -7.327089743, -7.630279544, -8.309902263, -7.130764629, -6.431057113, -7.44879526, -7.517311029, -7.467694752, -8.02122134, -6.749333247, -7.52330485, -7.413216057, -7.693272115, -8.130044541, -7.526377864, -7.920771527, -7.630805002, -7.168950759, -4.662137763, -7.048099293, -7.507516914, -7.111570664, -7.37869307, -6.538419197, -7.095127896, -7.521945993, -7.712052876, -7.079808023, -6.527884417, -6.54007329, -8.128361172, -6.163517934, -7.306049912, -6.88418105, -6.463156585, -7.411885547, -7.55055168, -7.560783459, -7.660485031, -7.451657044, -7.46728233, -6.759942585, -7.15687367, -8.494703714, -8.093672713, -7.499344389, -8.256898711, -7.089944289, -7.810110938, -7.594974373, -7.004304749, -7.445144157, -6.332547203, -5.980619211, -6.622272587, -7.888117352, -7.851623304, -7.697927499, -7.285464306, -7.42105715, -6.824894761, -7.699124088, -7.195166, -8.290239401, -6.292383584, -6.447853024, -5.771828228, -7.941790752, -6.908124659, -7.49374738, -8.000040835, -7.081567278, -7.669669997, -7.209119189, -7.791080495, -7.567849823, -7.483366151, -7.61044216, -7.413045778, -7.796978903, -7.116096085, -6.651296563, -7.234244639, -7.538424822, -7.303975645, -7.339780932, -8.036104387, -7.451800049, -7.597268524, -7.299779685, -6.431952043, -7.58594479, -6.23532909, -5.43821603, -6.781483454, -8.349301877, -6.183949414, -7.826244506, -7.962827189, -6.426559818, -6.766259822, -6.986501285, -7.40317494, -7.086708304, -7.405568611, -7.318081593, -7.570015643, -7.658963862, -7.43111032, -7.381179892, -7.295614157, -7.328114981, -6.92963883, -7.029305756, -6.712471926, -7.29618593, -6.727676354, -7.415670806, -7.831058214, -7.469918617, -7.555044374, -7.683583318, -6.162231506, -7.398497165, -7.292004253, -7.230044764, -7.398767135, -7.484139131, -7.604452831, -7.281407418, -7.829730272, -7.29640391, -7.510626359, -7.431441041, -7.308570456, -7.734874803, -7.610954469, -7.247829683, -7.965047059, -7.294752519, -7.33187813, -7.576894495, -7.054534984, -7.456174046, -6.901052842, -6.850541336, -7.628551103, -6.090461684, -6.266261748, -7.628389991, -7.529638687, -7.676781336, -6.628259795, -7.294625082, -6.913398169, -7.701739117, -7.454544298, -7.14205631, -8.062887243, -7.119244194, -7.680923526, -7.876972588, -7.987558681, -8.794930116, -7.46025767, -7.600317603, -7.051567272, -7.67581956, -6.918769196, -6.478394808, -6.227433461, -7.937195668, -7.371421572, -5.07851726, -7.486637737, -7.265094347, -7.378985532, -6.737706364, -7.026276833, -6.683684914, -7.107373408, -8.30021769, -6.399016161, -7.602313235, -8.053439405, -7.493109399, -6.938299482, -6.744208362, -7.540016604, -7.461860417, -7.256682054, -7.588766771, -6.951606034, -7.995210618, -6.887271353, -7.745345128, -7.855413904, -7.68528688, -7.840721579, -7.552236562, -7.040926306, -7.335846393, -7.76608262, -6.964481881, -7.753484505, -5.949957907, -7.637259778, -7.492152671, -7.740354377, -8.149614351, -7.652395195, -7.284712591, -7.686011163, -7.864184064, -7.83917081, -6.99260009, -6.987655018, -7.45190666, -7.46561449, -8.263903865, -7.359581105, -7.465573094, -6.855486244, -7.788747873, -7.454462629, -7.223995674, -7.980767565, -7.131276221, -8.271606531, -8.110562238, -6.478502808, -7.188786785, -7.237391467, -7.920077222, -6.435868574, -7.900920815, -6.749361394, -6.638043397, -7.550820795, -7.605025382, -7.000740296, -6.006280092, -5.995579525, -6.160811447, -6.158055067, -7.323892738, -6.69315714, -6.766697177, -7.544671714, -7.364604724, -7.967144949, -5.905282261, -7.450625656, -6.852743387, -7.332466672, -6.649159488, -7.112402246, -6.320649804, -6.649112659, -7.024348955, -7.536602167, -7.380054263, -6.330204427, -7.415725047, -6.376641746, -7.637959809, -7.958803017, -7.853797447, -7.601010363, -7.338170297, -7.432768614, -7.412415049, -5.775992041, -6.805939044, -6.724814622, -7.807043247, -7.772635317, -7.499282653, -7.843040825, -7.495778114, -7.969653303, -7.135018507, -7.375791524, -7.033359453, -6.048195932, -7.92088171, -6.892830033, -6.913307303, -7.237511253, -6.851153416, -8.794930116, -7.201009061, -7.937078133, -6.906612484, -5.158867119, -8.411383266, -8.498045802, -7.66010799, -6.851381192, -7.477812925, -6.832388834, -8.263331721, -7.035707042, -7.559200163, -7.598998786, -7.020607375, -6.415168356, -6.42720937, -7.086424401, -6.428062428, -7.60608561, -8.180811665, -7.657348157, -7.979413863, -6.771512551, -7.228415382, -7.223113802, -7.445573396, -6.738155141, -7.881903976, -7.465063854, -8.194717818, -7.949613998, -7.359211843, -6.975980409, -6.844247362, -7.002063365, -8.645520417, -7.723746138, -8.406316, -7.177101211, -8.5969749, -7.69504703, -7.571493568, -8.040473549, -7.670350582, -7.953428135, -7.853335028, -7.66728525, -7.957252995, -6.155980388, -7.713572706, -7.307769471, -7.488928691, -6.283859526, -6.973506372, -6.582940609, -5.667982525, -6.222973844, -7.247299749, -7.053077164, -7.546456883, -7.52350463, -8.099634312, -8.409504433, -7.121861141, -7.625939915, -7.471205842, -8.325241297, -7.886551139, -6.547015433, -7.098251161, -8.288299263, -7.627736788, -7.004194651, -7.707554621, -7.26128067, -7.953485917, -7.783456414, -8.688601701, -6.743126955, -7.723995069, -7.12767946, -6.049296678, -6.583884777, -7.582447477, -7.187820049, -7.086096719, -7.052530089, -7.306189163, -7.650976228, -7.33329339, -7.749443001, -7.736666367, -7.486008573, -5.546903643, -6.433552486, -7.457286596, -8.105180809, -7.249967485, -7.616984581, -8.118687558, -7.163211966, -7.385894225, -7.153622445, -7.134436417, -6.909785911, -7.037838438, -7.949384728, -6.239328018, -6.455318888, -7.850656503, -6.888774152, -6.330111826, -5.997007443, -6.989866591, -7.764604525, -7.646642468, -6.850951652, -7.056340445, -7.340518431, -7.877939228, -6.926287435, -6.886658239, -5.721889597, -6.64836712, -7.397322204, -7.097488759, -7.871267614, -7.483538326, -6.258561372, -6.635340136, -7.426807509, -8.179163507, -7.983280144, -7.990900629, -6.685367766, -6.998596261, -7.295345101, -6.862568751, -7.571553216, -7.493482123, -7.796415376, -6.659828204, -8.794930116, -7.949973678, -7.447289134, -7.077529697, -5.307557938, -7.007840543, -6.602938173, -5.506858666, -7.005968905, -7.450835029, -7.372881771, -7.91361403, -7.84323018, -7.740253262, -7.429952198, -7.701180884, -8.269791032, -7.725801899, -7.024002809, -7.614265841, -8.058630957, -8.040218589, -7.014106208, -6.829297565, -6.846400973, -6.940596614, -7.679305604, -7.229170582, -6.509994463, -8.545775036, -6.948419455, -7.312181683, -5.799669685, -6.700539081, -7.877826515, -7.332079831, -7.574552177, -7.11594657, -8.079188146, -8.436719445, -7.119533699, -7.741530809, -7.288261427, -6.804230243, -7.199888945, -7.254650602, -7.368613511, -7.637767449, -7.721275738, -7.591610163, -7.537794499, -6.964959178, -8.260314349, -7.023885686, -6.706320234, -7.022851504, -7.101768957, -7.207153244, -8.464057621, -7.687653973, -7.232703102, -7.707259726, -6.735292115, -6.346925986, -6.792773648, -6.550346836, -6.942878154, -7.539502136, -6.493480118, -7.837378778, -6.226470244, -7.031535508, -7.496634845, -7.396791749, -7.615634078, -7.187083976, -7.170276128, -7.387758216, -7.767899677, -7.903375385, -7.421870708, -7.441253238, -6.962549167, -6.867343455, -7.071654887, -7.719957143, -6.917706081, -6.978219529, -7.517449667, -7.172713635, -7.273182044, -7.706062362, -7.329060242, -7.640205774, -7.905355218, -7.53421563, -6.988439099, -7.392210602, -7.276725213, -7.252508457, -7.203205705, -7.543586677, -7.533775579, -6.887850313, -7.985957419, -7.603731532, -7.600814784, -7.702392241, -6.263032477, -8.248452814, -8.281463054, -8.400370799, -7.85160839, -7.275447163, -7.688461777, -6.510525535, -7.55202962, -7.310069474, -6.983666293, -7.274099688, -7.667356623, -7.816247833, -7.307428429, -6.966585962, -7.466283832, -6.551170123, -7.155100111, -7.592354049, -7.124312535, -7.421952751, -7.987290745, -8.601406054, -7.633647094, -7.307656828, -6.027430756, -7.22971028, -7.633453872, -7.52256204, -7.273680797, -7.360794605, -7.296067242, -6.95505994, -7.011643536, -7.019774448, -7.684646171, -6.652037921, -7.391411735, -7.23762021, -7.308341739, -7.075629098, -7.846306193, -7.963518424, -7.643940983, -7.279475927, -6.506951828, -6.652332503, -6.570188377, -7.583025911, -6.842728684, -7.478448444, -8.069052605, -5.695347715, -6.756843897, -7.006655672, -6.010453588, -7.773850342, -7.195777495, -7.344211334, -7.656575487, -7.166097806, -6.928708898, -7.472526857, -7.015681391, -6.721575978, -6.829835338, -6.842269221, -5.630153903, -6.217865084, -8.058122768, -7.190900478, -7.603399936, -7.941467419, -7.749019705, -6.900670809, -7.815617836, -7.535516192, -4.769644402, -7.178652077, -8.333541384, -7.540384216, -7.360875329, -7.435291388, -7.813788231, -7.075009732, -8.249851638, -7.217412756, -7.739626053, -6.815872138, -7.812533006, -7.85931453, -7.04951649, -7.579501284, -7.360803477, -8.622393436, -8.305809121, -8.254696554, -7.617786537, -7.7238535, -6.375169714, -6.810367803, -7.13089718, -7.804041332, -8.085885338, -7.173271313, -7.255360791, -6.716017048, -7.330748422, -7.407302732, -7.473542137, -6.265565812, -6.820877925, -7.561455038, -7.458333136, -6.894592854, -7.621404361, -7.85513898, -7.626494968, -7.820364298, -6.999389198, -7.101902896, -7.501023621, -7.639808531, -7.26665888, -7.15913635, -7.275007378, -7.445555306, -6.90310239, -6.416707147, -7.732833233, -7.024355537, -7.633019442, -8.611927775, -7.148206729, -7.189800452, -7.433970514, -7.35572581, -7.309242401, -6.822743956, -7.039604245, -7.157411476, -8.770222771, -7.006266649, -7.725106929, -7.344013278, -7.158205788, -6.839722138, -7.343875987, -7.316679327, -7.543321996, -7.453558059, -7.236601456, -7.439454449, -7.797221031, -6.388781042, -7.33944408, -7.151917743, -7.371284663, -8.018639147, -8.490254639, -6.606688913, -6.230708583, -6.210002564, -7.158858182, -7.193443925, -7.513120125, -7.584762765, -6.682211308, -5.888453781, -7.471549347, -6.690364157, -7.245262011, -6.74625716, -7.234306529, -7.378237216, -6.64556172, -6.661022638, -6.660513387, -6.872514144, -7.434935229, -8.478564975, -8.794930116, -7.198281502, -7.742722327, -6.431335325, -7.991751954, -8.6892018, -7.486128429, -8.589761131, -7.610329627, -8.095242023, -7.081854888, -7.648646439, -8.29850682, -7.317004444, -6.571894619, -6.96015622, -6.658760685, -7.170611848, -7.79280076, -6.553646288, -6.71000272, -5.28268215, -8.076151185, -6.808923287, -7.19157535, -7.735173162, -7.73006903, -7.101832987, -7.910858015, -7.132635737, -8.188454597, -7.334572263, -7.5558458, -7.027056736, -6.641215325, -7.061233125, -6.510495301, -5.592629321, -6.66981932, -7.012597829, -6.135362442, -7.313895716, -5.303511141, -7.437282537, -6.192489714, -7.32312544, -7.210607587, -6.730937102, -7.581324654, -7.664681221, -7.454224995, -5.834734389, -7.064334963, -6.368046828, -6.659807704, -6.869951492, -7.449192509, -7.701003681, -7.20582677, -7.020665981, -7.278921267, -7.795322477, -5.658231968, -7.282473371, -7.11678247, -7.575871091, -7.447909227, -8.229819518, -5.930429534, -6.709354586, -6.258668213, -6.04698811, -6.916092694, -6.917312102, -7.305160733, -7.754807048, -7.387358927, -7.595921349, -7.620878521, -7.49383533, -7.513293806, -6.812203443, -6.935455188, -7.339385316, -5.994066098, -7.153395618, -6.315925454, -7.569919411, -7.06084373, -6.949746832, -6.480956892, -7.124892715, -7.484098092, -6.748592494, -6.989669585, -7.492420317, -7.399812923, -7.074467471, -6.480027265, -6.725364571, -7.24267861, -7.470553601, -7.433870992, -7.145318471, -7.641554658]}, {"log_prior": -0.696016623, "feature_log_probs": [-6.259907936, -8.197255214, -6.342131959, -6.784116939, -6.980467629, -6.760849773, -7.26020423, -7.140001258, -6.939934981, -7.133282266, -7.249912374, -7.149792394, -7.331417956, -6.633710368, -7.4706262, -7.534015685, -7.585531955, -7.600853659, -7.633367808, -7.268838235, -7.420215657, -7.080134147, -7.199693751, -7.112433381, -6.741425239, -6.926073944, -6.749145049, -7.309182033, -7.638776203, -7.382339281, -7.109706112, -7.125029635, -7.667583932, -7.384624378, -7.595413631, -7.481903574, -6.763617526, -7.503995596, -7.197195032, -7.305988526, -6.900252452, -7.380045019, -7.273575031, -7.445821744, -7.131987181, -6.727491866, -6.943610184, -6.670160599, -6.932895663, -7.578566161, -7.257751917, -7.247353099, -7.468957247, -7.555163565, -7.567096282, -7.304091199, -7.450274197, -6.700018181, -7.247711979, -6.856258005, -7.205194636, -7.536395627, -7.400074962, -7.259085647, -7.500840141, -8.225128456, -7.305111744, -7.242363527, -7.911666422, -7.354376471, -7.829245611, -6.824845821, -6.888864426, -7.577988104, -7.127001151, -8.247527067, -7.032145242, -7.441477722, -7.488943886, -7.011274468, -7.446768054, -6.781530515, -6.975413842, -6.606205689, -7.376427468, -8.076276871, -6.808686182, -6.634899413, -7.333752091, -7.259314954, -7.807886345, -7.365161522, -7.635820897, -6.633418242, -7.460471049, -6.785878515, -6.841916779, -7.278489276, -7.456537123, -7.264209465, -7.252612857, -7.505692903, -7.809724948, -6.839176313, -7.146490897, -7.070123707, -6.797248356, -7.132265208, -7.768952303, -7.096229091, -7.064888636, -7.610182204, -7.592930814, -7.302463555, -7.759155268, -7.51427149, -6.788958345, -7.608946297, -6.641924697, -7.103004582, -7.158664254, -6.594140886, -7.944457978, -7.655019981, -7.011474732, -7.477233939, -7.635745427, -6.409777151, -7.136828881, -7.508213892, -7.430087979, -7.051591447, -7.288349466, -7.62951109, -7.159295765, -6.973969093, -7.505298182, -7.473552545, -6.126575988, -6.344669111, -6.405881541, -7.497685521, -7.362687067, -6.113068785, -6.5417437, -7.360568437, -8.666171231, -6.884866603, -6.78918188, -6.734138664, -8.09415578, -7.980951604, -7.43871865, -7.865180291, -7.340469382, -6.696933523, -8.006104153, -6.228117498, -6.083360894, -6.575966733, -7.69239657, -7.189738923, -6.911506395, -7.460350306, -7.778364495, -7.348996567, -7.156432262, -7.847636955, -7.002344567, -8.260047697, -6.756390185, -6.927367232, -6.878284735, -6.582503009, -7.578663027, -7.419933, -8.035014642, -6.57562176, -7.126225358, -8.174154597, -6.605708535, -7.206468193, -6.852038887, -6.573060297, -6.956270608, -6.089199489, -6.876393516, -7.244493399, -6.905825144, -6.735658971, -6.64286522, -7.063012642, -7.758038773, -7.679074482, -7.231689836, -6.67964883, -7.194474108, -6.863006666, -7.316290802, -7.40916316, -7.445015364, -6.592169642, -7.402915757, -7.021591837, -7.545382609, -7.72250692, -8.14240202, -7.152543295, -7.384984475, -7.886913339, -8.529749344, -6.884081926, -6.86534343, -6.729299251, -7.456342673, -7.017063229, -6.42634422, -7.14163091, -7.081582033, -7.062771573, -7.027691662, -7.455589538, -7.635143149, -7.002283226, -7.371160226, -6.873348764, -7.497023894, -7.116195658, -7.039478691, -7.659741909, -6.600579936, -6.724364835, -7.271092171, -7.374777389, -7.674203444, -7.676490945, -6.858433738, -7.393215624, -7.516124228, -7.069502942, -6.595396213, -6.342728824, -7.428782583, -7.461573065, -7.233194576, -7.354037397, -7.381221074, -7.101538851, -7.192054453, -7.190714393, -7.717626248, -7.48245263, -7.504826712, -7.736094234, -6.92405345, -7.305826578, -7.708214226, -7.5219269, -7.080924726, -7.716042955, -7.213989104, -6.743022181, -7.666948885, -8.073723951, -7.574321267, -7.647624954, -7.195442411, -6.886258723, -7.152551827, -6.743604745, -7.336524407, -6.746377502, -7.021168931, -7.240469645, -6.689647585, -7.108772573, -7.32151839, -7.378238109, -6.823778654, -7.074063063, -7.063180445, -7.216407627, -7.637086198, -7.336761056, -7.215086764, -7.308557164, -7.142071958, -7.133406316, -7.986535743, -5.724565722, -6.716215879, -7.564363629, -8.238521779, -6.129328554, -6.760958236, -7.14277881, -7.070240764, -7.529748503, -7.608600468, -7.359499964, -7.244403514, -7.167074122, -7.373191427, -7.501294946, -8.287153624, -7.436620608, -7.835330622, -6.375544574, -6.87110829, -7.344911622, -7.27401203, -7.412855515, -7.238582714, -6.982546558, -7.02846015, -6.909521337, -6.436585875, -6.613539555, -7.166257659, -6.353239029, -7.084928254, -7.24183392, -7.39717231, -7.458271532, -7.747120351, -7.635430745, -7.265793389, -7.08221213, -6.442587083, -6.677101589, -6.721107838, -7.790258071, -5.86775514, -7.169294432, -7.199080445, -6.856955762, -7.117792471, -7.58922752, -7.351990738, -6.73871403, -7.230166747, -7.042479542, -6.77148883, -7.318293668, -7.445495846, -6.636052885, -7.136470798, -7.153925225, -7.191709245, -7.279916141, -7.670301967, -7.037299742, -7.731242393, -7.293662251, -7.873371298, -6.525162069, -6.67976202, -7.845523184, -8.318140141, -8.182192731, -7.171703373, -7.297010293, -7.684761183, -7.610046121, -7.2552115, -7.421386103, -7.23555392, -6.881370045, -6.947814029, -7.069890581, -7.275516103, -7.088386726, -7.210400116, -7.191084391, -7.233165499, -6.482077336, -7.53543118, -7.481819203, -7.345354238, -7.051581745, -6.643267874, -7.31858349, -7.759288312, -7.389395585, -7.542534185, -7.339462215, -7.348989616, -7.346407108, -7.004494543, -7.342218736, -6.861042165, -7.254053459, -6.715191691, -7.624115136, -7.374019767, -6.816085098, -7.045128952, -7.217755693, -7.024502386, -7.143438516, -6.97063001, -7.297712119, -7.992930858, -7.922056975, -8.283045221, -6.547344544, -6.965536767, -7.451615422, -7.38832995, -7.182626889, -7.175344746, -7.274830473, -7.082698581, -7.48191849, -6.960541344, -7.346652588, -7.081846921, -6.622584761, -7.579630435, -7.187667694, -7.062225885, -7.003675705, -7.327778994, -7.099440317, -8.155673496, -6.928508956, -6.114606171, -7.327772031, -7.403798333, -6.800256641, -7.840803492, -8.414567019, -7.269719697, -7.396898385, -6.929764799, -6.434484605, -7.578312195, -7.155511317, -7.428891277, -7.190446402, -6.844411266, -7.348598758, -6.715290251, -7.538169504, -6.10909302, -6.656149357, -7.169356028, -6.846569005, -7.421675447, -7.931206022, -7.256318322, -7.232278726, -6.868009342, -7.430484605, -6.871338272, -7.297750844, -7.361731823, -7.212811484, -7.153315191, -7.308224115, -7.233509195, -6.357485452, -7.428514183, -6.104571234, -6.078480216, -6.719694378, -6.66816674, -6.46840566, -7.368359062, -7.263872984, -6.552097262, -7.389883894, -7.574168065, -7.490259019, -7.352931042, -7.946106928, -7.211615211, -7.477750872, -7.020050143, -6.839470802, -7.338431942, -7.565934867, -7.47711773, -6.707463797, -8.475872989, -8.521169989, -7.536517101, -6.904710821, -6.782913653, -6.379730364, -7.553936658, -7.540524254, -6.985970384, -6.327435195, -7.600523309, -7.269956307, -6.263354781, -7.103082967, -7.161867621, -6.700174851, -7.265362986, -7.110693084, -6.019210328, -7.205347731, -7.525585977, -7.944675997, -7.185367487, -7.052014114, -6.66003307, -6.570144338, -7.30982621, -6.528597103, -7.657927897, -7.980322464, -7.554265859, -6.92699896, -7.184087632, -7.469936649, -6.733404393, -7.022716928, -7.542100904, -7.544616256, -7.324597939, -6.59392895, -7.179073785, -6.970924651, -7.329610381, -7.151304997, -6.558047124, -7.069184732, -7.126381331, -7.555718453, -7.577499703, -7.070210545, -7.370186539, -7.22511054, -7.343203644, -7.021795174, -7.740201172, -8.566973383, -8.576029036, -6.407414708, -6.910047566, -8.161429781, -8.00989079, -7.507169581, -7.482674475, -8.111824004, -6.749252071, -7.588882658, -7.328093403, -7.965035055, -7.189170074, -7.028227467, -7.492759572, -7.058564253, -7.504193835, -8.77753552, -6.719741062, -7.038554165, -6.977912544, -7.106350753, -7.169528628, -6.80073788, -6.928242056, -7.710880314, -7.492969618, -7.423149974, -7.338856467, -7.263691058, -7.588080457, -7.044397739, -8.294043469, -7.222728359, -6.813948546, -7.343137509, -6.236803568, -7.060719761, -6.786097777, -7.477650182, -6.996144054, -6.811951368, -6.731658624, -7.147197717, -7.468596811, -7.092160137, -6.955779523, -7.31997934, -7.810224237, -7.558355848, -6.84836538, -6.981082574, -7.810568953, -6.887245748, -7.334871366, -6.796760361, -7.141302287, -7.229877884, -6.781147646, -7.103069802, -7.126905522, -6.592460751, -7.644485039, -6.635305656, -7.250374731, -6.070242639, -6.422959739, -6.773947863, -8.021159654, -7.539297368, -7.173099897, -6.852053347, -7.462384173, -8.125653671, -7.346681424, -6.698983699, -7.759399607, -6.420785215, -6.745455508, -8.749708117, -7.072589036, -6.856431012, -6.196105961, -6.898332825, -7.517502944, -7.618661654, -6.154745939, -7.052884038, -6.398838421, -6.67060508, -7.244908872, -7.518531861, -7.434867491, -6.454410084, -7.71012509, -6.439782798, -6.877393908, -7.144003294, -7.156436155, -7.432259475, -7.176884171, -7.169930427, -7.731898867, -5.830976019, -6.68566361, -6.640797625, -7.230075589, -6.595477655, -7.484026389, -7.215699254, -7.685062662, -7.18775435, -7.453623387, -6.672376843, -8.576826973, -7.601757135, -7.151902667, -7.641131406, -7.971128684, -7.153988486, -7.054695499, -7.799687377, -7.087961149, -7.138755945, -6.75157517, -7.165133213, -6.939571827, -6.833080161, -7.39182862, -7.513973539, -7.717436399, -7.00000143, -7.212248587, -6.77804124, -7.744299946, -7.76149196, -7.647231829, -7.801047727, -7.806678682, -8.24473568, -8.575195793, -7.086790837, -7.500619189, -7.414527376, -7.056866134, -6.780369192, -6.724843501, -6.772196793, -7.585904935, -6.837316816, -7.180548481, -6.598865569, -6.76695776, -6.971198336, -7.020760714, -6.266425478, -6.897503577, -7.140958363, -7.24835366, -7.134825659, -6.869633565, -6.996912676, -7.420759075, -7.127790812, -7.47179086, -6.687631287, -6.812804851, -7.124996926, -7.231880099, -7.144917671, -7.388546746, -6.008922693, -7.048144994, -6.956408944, -7.492099158, -7.016247656, -8.302090478, -7.82885972, -5.689278737, -7.110111625, -7.372310507, -7.947205542, -6.848635108, -6.873680569, -7.365001876, -7.178778267, -7.132098002, -7.220299436, -7.693705662, -6.561812674, -7.478427941, -6.452746314, -7.123062254, -7.422015239, -7.613919501, -6.878554104, -7.665773468, -7.152205087, -7.164740106, -7.504692004, -6.565053015, -6.628574215, -7.31287725, -7.088523127, -6.843306648, -6.748399935, -7.715953386, -7.639892968, -7.271212, -7.01561154, -6.582053616, -7.728886244, -7.035460712, -7.138310993, -7.345932418, -7.276835228, -6.80587795, -7.237646729, -7.311885964, -7.158184431, -7.229499199, -7.366523757, -6.974869654, -7.243357932, -8.045425647, -6.868552111, -6.856911806, -6.60591913, -6.907459727, -6.702277786, -6.519395482, -6.931983524, -6.773340005, -7.055886004, -6.84816394, -7.476569205, -7.992353161, -6.973968659, -7.269158629, -7.549003337, -7.897035044, -7.158557592, -7.269821122, -8.234745943, -7.9748757, -8.104162345, -6.575807994, -7.088366012, -6.813041695, -7.096095058, -7.324500186, -7.135546927, -7.725692961, -6.695741572, -6.948597864, -6.992121553, -7.180773569, -7.173852619, -7.648175731, -7.230729557, -6.650470937, -6.997581202, -7.046702976, -7.173097804, -7.094752238, -7.422624114, -7.173306793, -7.474990572, -6.758689807, -6.779777792, -8.044144382, -8.370279493, -7.511362437, -7.128404506, -6.59347127, -7.062540751, -7.053778507, -7.607114962, -7.508940513, -8.112450302, -7.137323823, -6.768010596, -7.110233224, -7.052179716, -7.47309848, -6.9174629, -7.474682262, -7.72397768, -7.069120906, -6.866959797, -6.925793533, -7.083322231, -6.51433337, -7.067756874, -7.160710155, -6.895296189, -7.2505439, -7.806320387, -8.218211555, -6.923977477, -6.928724939, -7.314699031, -8.082068095, -7.217664931, -6.584853832, -7.039571031, -7.476925486, -7.214780162, -6.928355555, -7.903188544, -7.043261724, -7.863700935, -7.345010181, -7.245584528, -7.5526117, -7.479717924, -7.003105672, -7.143414673, -7.01689058, -7.036803356, -7.482241085, -7.141681576, -7.016022717, -6.924360013, -7.003754052, -7.016402471, -7.534330501, -7.376142046, -6.309535731, -7.839743396, -7.336495415, -7.02404513, -7.246338329, -6.455321564, -7.25212358, -6.296801177, -7.08326595, -7.339675092, -7.625151297, -7.507133591, -7.125087423, -7.112869035, -7.405231292, -7.314769447, -7.053434064, -7.651024715, -7.860638256, -6.905793299, -7.180829726, -7.49154423, -7.481056253, -7.657397659, -7.260129524, -7.357337756, -8.355353132, -6.923713122, -7.465155557, -7.671960186, -7.418588559, -7.30424818, -7.513411041, -6.67595124, -6.788457923, -7.468270124, -7.775104152, -7.360421762, -7.071230365, -7.015209305, -6.891267, -6.995099106, -7.086300866, -7.244266308, -7.577740051, -6.200705899, -6.919081386, -7.069634966, -7.045753658, -7.251041021, -6.683163951, -7.282741705, -8.617523732, -7.418540597, -7.234573633, -6.73833593, -6.944225687, -7.407132412, -7.402485653, -7.292139403, -6.989039938, -7.384514397, -6.390369276, -7.299885004, -7.164177296, -7.843167323, -6.765700182, -6.516867559, -7.117493312, -7.418634023, -7.233365316, -6.645983003, -6.73896239, -7.341141758, -7.428030886, -7.402278848, -6.682043691, -7.676076807, -6.877669264, -7.344005521, -6.698692165, -7.323655077, -7.603458796, -8.057680295, -6.943545882, -7.695818904, -7.895797219, -7.501899379, -7.294180718, -6.713097227, -6.733931807, -6.614873974, -6.890289542, -6.366370359, -7.420240889, -7.68843257, -7.245674966, -7.337681612, -7.017434958, -7.494213851, -8.012499813, -7.690967583, -7.255813882, -6.705344093, -7.662559678, -7.615508755, -7.216951315, -7.13227126, -7.399118307, -7.127367972, -6.849112353, -7.019903365, -6.705957958, -6.877194738, -7.376527976, -7.376718612, -6.832781949, -7.099223563, -7.1869312, -7.463149064, -6.445889891, -7.085184235, -6.942651092, -6.792652131, -6.841896951, -7.140888673, -7.297688731, -7.253043414, -7.297997202, -7.346020233, -6.990040757, -7.20956544, -6.666692957, -6.918020272, -7.074408043, -7.537756486, -6.775412447, -7.160096066, -7.424128311, -7.21543058, -7.068686022, -6.632416719, -7.263605135, -7.47095749, -7.098361541, -6.579263712, -6.805618657, -7.255624437, -6.629153237, -6.791279051, -7.407339833, -7.161868104, -6.835971782, -7.535111255, -7.093143793, -6.866125901, -7.231004467, -6.665924541, -7.425240324, -7.835679327, -7.606159387, -7.000430968, -7.380690515, -7.209613443, -7.246431328, -6.697986058, -7.202728434, -7.104498512, -7.238777123, -8.606531277, -7.278602886, -7.316644952, -7.542743257, -6.767689654, -6.656110779, -6.750955644, -8.373255648, -6.689630959, -7.218565746, -7.632186836, -7.992916076, -7.164323309, -6.948996664, -6.913854001, -7.255798985, -7.41963662, -7.313523739, -7.006301736, -6.415154947, -7.375958695, -7.309473751, -6.736622698, -7.006562819, -8.212943435, -8.275901934, -7.289874312, -6.758635674, -7.07973369, -6.821532174, -7.454779852, -7.868063165, -7.058392865, -7.171778143, -7.428823052, -6.989533522, -7.044703787, -6.637862795, -6.32158563, -6.310819515, -7.02383711, -6.870229646, -7.639069092, -7.428363109, -6.576347917, -8.751658716, -7.352776849, -7.345804869, -7.190144816, -6.76759124, -6.68374085, -7.039337514, -7.350087322, -7.098476016, -7.981032492, -7.874121163, -7.335765289, -7.094953204, -7.558935644, -7.375043181, -7.010775119, -7.486587284, -6.908409481, -7.158239975, -6.500448466, -7.258520546, -7.32705284, -6.999514098, -7.050404715, -7.395623961, -6.469758019, -7.620384464, -6.729264509, -6.930311099, -8.072137718, -6.829924177, -7.230397364, -8.228137631, -8.116209242, -7.248422551, -8.561409694, -6.493945291, -6.941450608, -7.370388924, -7.196407894, -6.958334641, -7.262263423, -7.296228549, -6.939819441, -6.646652132, -7.517134701, -7.320212943, -7.885484371, -8.335179191, -7.940281369, -5.8202957, -6.23306973, -7.219857845, -6.909222447, -8.267417749, -7.044080318, -7.118337167, -6.318046304, -6.944527683, -7.670753231, -6.714735216, -7.290021359, -7.522921477, -7.1286125, -6.177768583, -6.913088162, -6.599215986, -7.993798234, -6.894463305, -7.749872054, -7.333277288, -7.039673986, -7.675501974, -7.642938055, -7.336587002, -6.100210767, -6.870398901, -7.532904751, -7.210554843, -7.109432906, -6.342702414, -5.939815412, -6.962699626, -6.838447425, -6.845116538, -7.876819099, -6.704778426, -7.390831012, -7.023777424, -6.993691593, -6.776910231, -7.309678171, -7.271297543, -7.228223208, -6.568828016, -6.732899891, -7.542105659, -6.582076077, -6.985716864, -5.945488591, -7.384991264, -6.750333799, -7.005022141, -5.992771792, -6.980698162, -7.670498004, -7.004658555, -6.882364117, -7.1527284, -7.221964134, -7.288649535, -6.009367402, -6.023875922, -7.165914737, -6.81222154, -6.933990479, -7.745787781, -8.77753552]}], "model_type": "nb", "positive_class_label": "online_communities", "positive_class_id": 0, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"linkedin": [613, 3.462958866], "following": [425, 2.296661751], "blog": [149, 2.347679525], "post": [809, 1.928534313], "unless": [1127, 3.314828674], "written": [1190, 3.010973742], "member": [670, 3.636912173], "community": [239, 2.662352533], "thoughts": [1079, 3.390052095], "company": [241, 2.29404737], "hear": [490, 3.374547909], "lot": [633, 1.982500895], "game": [444, 2.943764993], "business": [173, 2.245630271], "networking": [716, 3.626961842], "tool": [1089, 2.720621441], "level": [603, 2.593108121], "care": [187, 3.032596206], "looking": [629, 2.164440116], "job": [563, 2.871444331], "delete": [304, 3.924594246], "need": [711, 1.658673137], "going": [461, 1.967320338], "exactly": [374, 2.830436307], "don": [332, 1.559973762], "look": [628, 1.846820761], "professional": [836, 3.100418803], "spend": [1005, 2.899748107], "15": [8, 2.71662942], "minutes": [687, 2.97939217], "doing": [330, 2.268272747], "drop": [337, 3.265348617], "basic": [128, 3.071598364], "profile": [837, 2.708692871], "set": [961, 2.047676968], "power": [814, 2.834910588], "tips": [1084, 2.871444331], "use": [1132, 1.501563], "information": [541, 2.12178494], "long": [626, 1.917723397], "user": [1135, 2.350438147], "uses": [1138, 2.862185006], "research": [901, 2.677561952], "tell": [1060, 2.476891256], "million": [685, 2.720621441], "members": [671, 2.9742242], "200": [14, 3.413768622], "question": [858, 2.654833701], "social": [991, 1.882508491], "network": [715, 2.579121879], "doesn": [329, 2.087224265], "mean": [662, 2.782496845], "average": [119, 2.989808931], "isn": [558, 2.26573145], "contact": [257, 3.27226906], "settings": [963, 3.366885036], "future": [442, 2.596635462], "opportunities": [746, 3.479908424], "general": [447, 2.786761244], "good": [463, 1.725889283], "life": [605, 2.22105901], "strategy": [1028, 3.000335344], "make": [643, 1.446376584], "sure": [1042, 2.009634343], "things": [1075, 1.879054256], "come": [230, 2.13061502], "effort": [349, 3.043585328], "high": [496, 2.28624499], "way": [1163, 1.493322812], "let": [601, 2.019506091], "having": [487, 2.255630354], "search": [939, 2.442989705], "source": [998, 2.923962365], "control": [261, 2.778250554], "present": [820, 3.198657242], "place": [786, 2.072471627], "want": [1157, 1.570049414], "know": [576, 1.674004448], "manager": [650, 3.657114881], "right": [913, 1.763572717], "important": [523, 2.029476264], "consider": [254, 2.654833701], "presence": [819, 3.454590616], "single": [980, 2.446024608], "day": [293, 1.963560935], "posting": [811, 3.130094571], "think": [1076, 1.89469315], "key": [571, 2.610870577], "point": [800, 2.255630354], "needs": [713, 2.708692871], "break": [165, 3.112183644], "non": [723, 2.899748107], "talk": [1052, 2.753144633], "secret": [942, 3.550734477], "projects": [841, 3.636912173], "working": [1183, 2.48950972], "ask": [109, 2.572201436], "say": [930, 2.091479591], "news": [719, 2.565328557], "sites": [982, 2.744914134], "regularly": [886, 3.438061315], "stories": [1024, 3.060298809], "thing": [1074, 2.216216385], "happens": [481, 3.179487326], "public": [848, 2.778250554], "new": [718, 1.379324446], "story": [1025, 2.651095379], "couple": [270, 3.094587882], "weeks": [1169, 3.286255302], "making": [645, 2.139523765], "guy": [477, 3.688205468], "entire": [364, 2.948777535], "column": [229, 4.052427617], "does": [328, 1.976781147], "generally": [448, 3.279237729], "product": [833, 2.621681494], "happen": [480, 3.106283922], "especially": [367, 2.452122188], "makes": [644, 2.141763407], "link": [612, 2.534972095], "directly": [323, 2.885496085], "personal": [771, 2.430941366], "page": [756, 2.123985161], "shows": [974, 2.825981957], "completely": [245, 3.142215931], "person": [770, 2.299282984], "points": [801, 3.11811838], "adding": [61, 3.032596206], "pages": [757, 2.817132342], "reason": [876, 2.582600143], "understand": [1122, 2.596635462], "facebook": [389, 2.066215089], "seeing": [945, 3.185836554], "similar": [977, 2.486340146], "media": [665, 2.128400179], "names": [704, 3.382269955], "real": [873, 2.159863449], "talking": [1053, 2.953815329], "bad": [124, 2.786761244], "ve": [1146, 1.719989561], "seen": [946, 2.480030976], "share": [966, 2.062065706], "master": [656, 3.731222853], "certain": [197, 2.621681494], "didn": [317, 2.544988873], "school": [934, 3.065932627], "night": [722, 3.258475738], "creative": [277, 3.359280437], "title": [1085, 3.322101433], "really": [875, 1.967320338], "stand": [1011, 3.251649772], "hard": [483, 2.413136742], "thought": [1078, 2.681400728], "idea": [515, 2.48950972], "reading": [871, 2.774022218], "party": [763, 3.173178157], "photos": [775, 2.720621441], "fit": [420, 3.166908544], "bar": [125, 3.421800794], "turn": [1112, 2.589593179], "sort": [996, 3.198657242], "awesome": [122, 3.550734477], "reality": [874, 3.523583488], "head": [488, 2.958878631], "choice": [214, 3.251649772], "clear": [219, 2.696904915], "age": [71, 3.054696553], "10": [2, 2.027474261], "50": [40, 2.890224226], "14": [7, 3.060298809], "years": [1194, 1.999859094], "old": [741, 2.467530814], "relevant": [891, 2.876106344], "easily": [341, 2.600175288], "rule": [921, 3.617109546], "12": [5, 2.757285426], "young": [1197, 3.359280437], "lead": [591, 2.890224226], "negative": [714, 3.742272689], "additional": [63, 3.016335686], "data": [289, 2.344928492], "easy": [342, 2.091479591], "likely": [607, 2.361549373], "enter": [363, 3.405800452], "work": [1181, 1.733313222], "love": [635, 2.387010437], "simple": [978, 2.307188164], "extremely": [386, 3.351733231], "subject": [1036, 3.438061315], "starting": [1015, 2.880790194], "wants": [1159, 3.049125508], "bring": [166, 2.958878631], "twitter": [1116, 2.291439807], "message": [677, 2.786761244], "child": [212, 3.993587117], "networks": [717, 3.060298809], "words": [1180, 2.830436307], "apply": [98, 3.421800794], "software": [992, 3.374547909], "skills": [985, 3.776174241], "example": [375, 2.01554569], "environment": [366, 3.59769146], "experience": [380, 2.263196594], "worked": [1182, 3.359280437], "knows": [579, 3.550734477], "developed": [312, 3.454590616], "platform": [791, 2.625311262], "lists": [616, 3.646962509], "short": [971, 2.413136742], "depending": [305, 3.148332158], "games": [445, 3.799431103], "safe": [925, 3.698787577], "start": [1013, 1.982500895], "end": [355, 2.185298346], "used": [1133, 1.901723056], "specific": [1002, 2.439963984], "interesting": [550, 2.736750823], "pieces": [782, 3.578643265], "basis": [129, 3.366885036], "conversation": [262, 2.995058287], "education": [346, 3.847633205], "went": [1171, 3.027146602], "art": [106, 3.550734477], "industry": [537, 3.000335344], "include": [525, 2.480030976], "got": [465, 2.476891256], "potential": [813, 2.728653613], "list": [615, 2.18062544], "creating": [276, 2.538299885], "little": [617, 2.093614063], "getting": [452, 2.233269174], "situation": [983, 3.607353371], "ll": [622, 1.843487425], "asked": [110, 2.862185006], "encourage": [354, 3.569253525], "easier": [340, 2.693006274], "worth": [1186, 2.704748092], "edit": [345, 3.279237729], "expert": [382, 3.646962509], "keeping": [570, 3.293322469], "date": [291, 3.032596206], "keywords": [572, 3.860055725], "record": [883, 3.541601993], "saying": [931, 3.071598364], "writing": [1189, 2.890224226], "probably": [829, 2.401440702], "help": [493, 1.785312704], "offers": [737, 2.91907238], "published": [850, 3.038075672], "works": [1184, 2.430941366], "articles": [108, 3.192226352], "given": [454, 2.693006274], "write": [1188, 2.799664649], "engine": [360, 3.607353371], "simply": [979, 2.392757579], "ideas": [516, 2.953815329], "useful": [1134, 2.677561952], "instead": [548, 2.13061502], "website": [1166, 2.499079171], "try": [1109, 2.228367203], "advantage": [67, 3.112183644], "groups": [471, 3.11811838], "meet": [669, 3.198657242], "cool": [264, 3.390052095], "learn": [593, 2.455184978], "check": [211, 2.253120942], "friends": [437, 2.358759971], "join": [565, 3.154486024], "request": [897, 3.81126556], "connections": [253, 3.479908424], "based": [127, 2.087224265], "common": [236, 2.673737855], "questions": [859, 2.586090548], "gender": [446, 4.164544915], "add": [59, 2.218634766], "better": [139, 1.867057539], "saw": [929, 3.293322469], "did": [316, 2.204211439], "complete": [244, 2.97939217], "companies": [240, 2.843919658], "great": [467, 1.939463384], "email": [351, 2.555107003], "low": [636, 2.92887638], "send": [950, 2.765618807], "select": [947, 3.054696553], "type": [1118, 2.449068751], "messages": [678, 3.11811838], "receive": [878, 3.198657242], "fully": [438, 3.359280437], "forget": [428, 3.446291814], "enjoy": [361, 3.154486024], "change": [201, 2.32050394], "stay": [1019, 2.91420619], "update": [1128, 3.049125508], "activity": [55, 3.166908544], "calendar": [179, 4.435419869], "event": [370, 3.192226352], "trying": [1110, 2.614461246], "friend": [436, 3.049125508], "group": [470, 2.538299885], "active": [53, 2.82154736], "security": [944, 3.514694541], "google": [464, 2.461338843], "connect": [250, 2.880790194], "huge": [510, 2.866803952], "hit": [500, 3.106283922], "taking": [1051, 2.673737855], "appear": [94, 3.094587882], "ensure": [362, 3.300439937], "case": [190, 2.404351912], "money": [695, 2.662352533], "started": [1014, 2.353204401], "year": [1193, 2.095753102], "increasing": [532, 3.523583488], "number": [731, 2.085103374], "users": [1137, 2.076664505], "asking": [111, 3.173178157], "buffer": [169, 4.114947974], "sharing": [969, 2.582600143], "features": [400, 2.534972095], "tend": [1063, 3.344242559], "read": [868, 2.132834776], "best": [138, 1.780614183], "generate": [449, 3.626961842], "engagement": [358, 3.112183644], "digital": [321, 3.094587882], "followers": [424, 3.000335344], "november": [730, 4.007975855], "2012": [19, 3.479908424], "team": [1056, 2.81273673], "energy": [356, 3.799431103], "customer": [283, 3.382269955], "decided": [299, 3.359280437], "build": [170, 2.427951827], "small": [988, 2.304546154], "days": [294, 2.398537942], "account": [48, 2.449068751], "lives": [620, 3.11811838], "allowing": [78, 3.497150231], "access": [46, 2.632610564], "accounts": [49, 2.97939217], "lots": [634, 3.329427474], "different": [319, 1.867057539], "apps": [100, 2.958878631], "devices": [315, 3.617109546], "related": [887, 2.666133256], "content": [258, 2.078767555], "allows": [79, 2.618064853], "conversations": [263, 3.514694541], "hour": [507, 3.300439937], "december": [297, 3.885373533], "positive": [807, 3.382269955], "focused": [422, 3.198657242], "today": [1086, 2.342185006], "step": [1020, 2.712653272], "plans": [790, 3.578643265], "options": [749, 2.82154736], "visual": [1155, 3.523583488], "quick": [860, 2.91420619], "create": [274, 2.045638231], "free": [435, 2.128400179], "latest": [587, 3.043585328], "version": [1147, 2.817132342], "article": [107, 2.54835022], "icon": [513, 3.872634507], "schedule": [933, 3.471397735], "audience": [114, 2.753144633], "plan": [788, 2.839404977], "ahead": [73, 3.336807581], "won": [1177, 2.398537942], "special": [1001, 3.010973742], "thanks": [1069, 3.142215931], "driving": [336, 3.667371381], "project": [840, 3.173178157], "founder": [433, 3.405800452], "tweets": [1115, 3.657114881], "february": [401, 4.147737797], "2015": [22, 3.429898004], "marketing": [655, 2.71662942], "feel": [405, 2.243145797], "big": [140, 2.162149164], "challenge": [199, 3.59769146], "launch": [588, 3.569253525], "open": [745, 2.325880297], "science": [935, 3.446291814], "improve": [524, 2.9742242], "performance": [769, 3.329427474], "analytics": [85, 3.397895273], "beginning": [133, 3.390052095], "early": [339, 2.632610564], "compared": [242, 3.265348617], "thousands": [1080, 3.224802522], "fans": [394, 3.374547909], "strategies": [1027, 3.646962509], "000": [0, 2.480030976], "major": [641, 2.91420619], "bit": [147, 2.558502592], "built": [172, 2.765618807], "app": [93, 2.625311262], "particularly": [761, 3.185836554], "pretty": [823, 2.724629463], "months": [697, 2.795344988], "ago": [72, 2.765618807], "tweet": [1114, 3.462958866], "index": [533, 4.083199276], "2014": [21, 3.569253525], "building": [171, 2.71662942], "using": [1139, 1.727369668], "discover": [324, 3.413768622], "instance": [546, 3.094587882], "fast": [396, 2.995058287], "tried": [1103, 3.382269955], "focus": [421, 2.662352533], "maybe": [660, 2.795344988], "avoid": [120, 3.032596206], "learned": [594, 3.421800794], "influencers": [540, 3.898276937], "reach": [867, 2.769811686], "field": [410, 3.265348617], "known": [578, 2.744914134], "took": [1088, 2.894974829], "resources": [903, 3.258475738], "shares": [968, 3.471397735], "away": [121, 2.268272747], "posts": [812, 2.353204401], "feedback": [403, 3.541601993], "learning": [595, 3.286255302], "experiences": [381, 3.488492168], "answers": [90, 3.646962509], "methods": [682, 3.75344599], "tools": [1090, 2.618064853], "strong": [1029, 2.958878631], "inside": [542, 3.238136053], "details": [310, 2.984586987], "dashboard": [288, 3.823241751], "customers": [284, 3.077296385], "benefits": [137, 3.366885036], "close": [223, 2.885496085], "eye": [387, 3.488492168], "total": [1093, 3.300439937], "sent": [953, 3.366885036], "management": [649, 3.421800794], "opportunity": [747, 3.112183644], "subscribers": [1037, 4.253098313], "growth": [474, 3.130094571], "press": [822, 3.569253525], "piece": [781, 3.112183644], "web": [1165, 2.518497257], "2011": [18, 3.764745545], "17": [10, 3.27226906], "quickly": [861, 2.673737855], "later": [586, 2.56190975], "begin": [132, 3.27226906], "pay": [766, 2.774022218], "form": [429, 2.544988873], "guest": [475, 4.147737797], "blogging": [152, 3.588122009], "method": [681, 3.344242559], "eventually": [372, 3.258475738], "led": [597, 3.413768622], "feature": [399, 2.632610564], "comments": [235, 2.575655671], "posted": [810, 3.336807581], "comment": [234, 3.005640396], "guide": [476, 3.077296385], "27": [33, 3.75344599], "happy": [482, 3.286255302], "service": [959, 2.544988873], "model": [691, 3.071598364], "chats": [210, 4.457892725], "attention": [113, 2.625311262], "plus": [799, 3.054696553], "true": [1105, 2.757285426], "internet": [553, 2.834910588], "weight": [1170, 3.657114881], "topics": [1092, 3.397895273], "overall": [754, 3.224802522], "updates": [1129, 3.077296385], "process": [832, 2.575655671], "august": [115, 3.979402482], "report": [895, 3.130094571], "seo": [954, 3.860055725], "images": [519, 2.736750823], "wrong": [1191, 3.088790765], "feeling": [406, 3.279237729], "setting": [962, 3.251649772], "2013": [20, 3.497150231], "publishing": [851, 3.471397735], "connection": [252, 3.405800452], "org": [751, 3.938017266], "03": [1, 4.715721835], "review": [911, 3.413768622], "topic": [1091, 3.11811838], "voice": [1156, 3.731222853], "examples": [376, 3.344242559], "brand": [163, 2.778250554], "finding": [418, 3.060298809], "sign": [975, 2.885496085], "perfect": [768, 2.880790194], "quality": [856, 2.853010629], "heard": [491, 3.359280437], "valuable": [1141, 3.27226906], "offer": [735, 2.625311262], "means": [664, 2.204211439], "necessary": [710, 3.329427474], "feels": [407, 3.550734477], "approach": [99, 3.054696553], "book": [158, 2.80400305], "quite": [862, 2.712653272], "recently": [881, 2.708692871], "structure": [1030, 3.847633205], "putting": [855, 3.307608426], "rest": [906, 3.005640396], "fall": [391, 3.351733231], "moment": [694, 3.060298809], "hope": [503, 3.185836554], "sell": [949, 3.588122009], "visitors": [1154, 3.421800794], "wasn": [1160, 3.322101433], "activities": [54, 3.688205468], "provide": [845, 2.518497257], "results": [908, 2.625311262], "natural": [706, 3.329427474], "run": [923, 2.43694739], "successful": [1039, 3.088790765], "ones": [743, 2.732694023], "wouldn": [1187, 3.390052095], "recommend": [882, 3.166908544], "chat": [209, 3.344242559], "launched": [589, 3.541601993], "modern": [693, 3.359280437], "messaging": [679, 3.872634507], "instant": [547, 3.938017266], "longer": [627, 2.677561952], "addition": [62, 2.995058287], "daily": [286, 2.969082801], "nearly": [709, 3.173178157], "sense": [952, 2.689122774], "primary": [826, 3.709482866], "default": [302, 3.413768622], "communication": [237, 3.541601993], "yes": [1195, 2.989808931], "thinking": [1077, 2.899748107], "line": [611, 2.681400728], "evidence": [373, 3.860055725], "choose": [215, 2.531655342], "influence": [538, 3.688205468], "aren": [105, 2.708692871], "states": [1017, 3.336807581], "mind": [686, 2.600175288], "conditions": [249, 3.787735063], "gone": [462, 3.462958866], "picture": [779, 3.043585328], "red": [884, 3.514694541], "essential": [368, 3.657114881], "server": [958, 3.787735063], "truly": [1106, 3.397895273], "variety": [1144, 3.351733231], "ways": [1164, 2.270820519], "room": [918, 3.08302706], "channel": [205, 3.764745545], "definitely": [303, 3.205129757], "fun": [439, 2.834910588], "culture": [279, 3.438061315], "powerful": [815, 2.948777535], "leads": [592, 3.636912173], "cases": [191, 3.244870085], "decide": [298, 3.300439937], "core": [266, 3.438061315], "believe": [135, 2.81273673], "require": [898, 3.238136053], "constantly": [256, 3.588122009], "stop": [1022, 3.005640396], "address": [64, 3.08302706], "practice": [816, 3.27226906], "able": [45, 2.213803839], "comes": [231, 2.301911107], "chance": [200, 2.989808931], "watch": [1161, 3.142215931], "channels": [206, 3.626961842], "length": [600, 3.709482866], "jump": [568, 3.454590616], "difficult": [320, 2.92887638], "imagine": [520, 3.421800794], "goes": [460, 2.839404977], "discussion": [325, 3.578643265], "respond": [904, 3.454590616], "sound": [997, 3.359280437], "drive": [335, 2.9742242], "takes": [1050, 2.696904915], "original": [752, 3.043585328], "lose": [631, 3.471397735], "medium": [668, 3.799431103], "speed": [1004, 3.438061315], "20": [13, 2.544988873], "world": [1185, 2.005712769], "sales": [927, 3.258475738], "popular": [804, 2.401440702], "sale": [926, 3.872634507], "times": [1081, 2.243145797], "considered": [255, 3.397895273], "impact": [522, 3.293322469], "light": [606, 3.124088547], "stuff": [1034, 3.08302706], "costs": [268, 3.667371381], "return": [910, 3.192226352], "hundreds": [512, 3.344242559], "miss": [688, 3.523583488], "risk": [915, 3.523583488], "haven": [486, 3.142215931], "matter": [659, 2.71662942], "11": [4, 2.853010629], "25": [31, 3.038075672], "40": [38, 3.322101433], "100": [3, 2.693006274], "numbers": [732, 3.027146602], "bigger": [141, 3.497150231], "category": [193, 3.569253525], "deal": [296, 3.088790765], "13": [6, 3.166908544], "context": [259, 3.731222853], "teams": [1057, 3.924594246], "screen": [938, 3.238136053], "second": [940, 2.502289447], "problem": [830, 2.607292756], "black": [148, 3.488492168], "playing": [796, 3.698787577], "remember": [892, 2.736750823], "muscle": [702, 4.715721835], "memory": [672, 4.052427617], "previous": [824, 3.382269955], "week": [1168, 2.596635462], "series": [957, 3.148332158], "space": [1000, 2.880790194], "16": [9, 3.173178157], "platforms": [792, 3.010973742], "online": [744, 2.2357292], "available": [118, 2.395643584], "called": [180, 2.419036464], "expect": [378, 3.043585328], "actually": [57, 2.301911107], "far": [395, 2.410199882], "cause": [194, 3.351733231], "required": [899, 3.27226906], "behavior": [134, 3.559951132], "problems": [831, 3.238136053], "separate": [955, 3.366885036], "effect": [347, 3.344242559], "direct": [322, 3.054696553], "leave": [596, 2.757285426], "push": [854, 3.550734477], "usually": [1140, 2.65858605], "live": [618, 2.600175288], "cut": [285, 3.488492168], "wide": [1173, 3.244870085], "boards": [156, 4.216730669], "object": [733, 4.164544915], "individual": [535, 2.989808931], "file": [412, 3.390052095], "advice": [69, 3.366885036], "slow": [987, 3.514694541], "provides": [847, 3.071598364], "answer": [89, 2.848454813], "limit": [609, 3.471397735], "hot": [506, 3.523583488], "calls": [181, 3.578643265], "smaller": [989, 3.231447065], "kind": [574, 2.538299885], "30": [36, 2.60372769], "hours": [508, 2.782496845], "cost": [267, 3.065932627], "seconds": [941, 3.677734168], "understanding": [1123, 3.532552158], "play": [793, 2.830436307], "helps": [495, 2.871444331], "value": [1142, 2.56190975], "ground": [469, 3.698787577], "employees": [353, 4.007975855], "involved": [556, 3.265348617], "actual": [56, 3.336807581], "late": [585, 3.307608426], "design": [307, 2.817132342], "follow": [423, 2.36996457], "events": [371, 3.231447065], "announced": [88, 3.607353371], "virtual": [1152, 4.007975855], "human": [511, 2.853010629], "apple": [95, 3.823241751], "buying": [178, 3.709482866], "significant": [976, 3.265348617], "tech": [1058, 3.479908424], "food": [426, 3.336807581], "services": [960, 2.765618807], "heart": [492, 3.359280437], "travel": [1101, 3.709482866], "language": [581, 3.397895273], "messenger": [680, 4.350262061], "credit": [278, 3.569253525], "certainly": [198, 3.397895273], "development": [313, 3.173178157], "text": [1068, 2.786761244], "engage": [357, 3.148332158], "computer": [247, 3.413768622], "super": [1040, 3.429898004], "changing": [204, 3.344242559], "recent": [880, 2.740824149], "products": [835, 2.890224226], "amazon": [81, 4.052427617], "microsoft": [683, 4.290838641], "order": [750, 2.413136742], "offering": [736, 3.607353371], "researchers": [902, 3.835363112], "explore": [383, 3.617109546], "local": [623, 3.130094571], "businesses": [174, 3.359280437], "course": [271, 2.398537942], "billion": [145, 3.569253525], "concept": [248, 3.488492168], "format": [430, 3.742272689], "shared": [967, 2.862185006], "straight": [1026, 3.59769146], "action": [51, 2.9639677], "moving": [699, 3.279237729], "finally": [416, 3.021726534], "dead": [295, 3.742272689], "looks": [630, 2.894974829], "felt": [408, 3.471397735], "blue": [154, 3.720293782], "win": [1174, 3.397895273], "rules": [922, 3.224802522], "browser": [167, 3.657114881], "current": [280, 2.736750823], "image": [518, 2.558502592], "blogs": [153, 3.293322469], "visit": [1153, 3.130094571], "emails": [352, 3.81126556], "rss": [920, 4.234749174], "reader": [869, 3.607353371], "july": [567, 3.951622918], "lets": [602, 3.258475738], "favorite": [398, 2.909363566], "added": [60, 2.786761244], "mobile": [689, 2.989808931], "views": [1151, 3.657114881], "style": [1035, 3.136136885], "allow": [76, 2.689122774], "view": [1150, 2.651095379], "categories": [192, 3.75344599], "save": [928, 2.890224226], "tag": [1047, 3.636912173], "feeds": [404, 3.59769146], "feed": [402, 3.000335344], "url": [1131, 3.329427474], "pinterest": [785, 3.607353371], "pin": [783, 4.253098313], "automatically": [117, 3.094587882], "clients": [222, 3.523583488], "training": [1099, 3.688205468], "october": [734, 3.81126556], "click": [220, 2.442989705], "install": [545, 3.787735063], "application": [96, 3.617109546], "ready": [872, 3.065932627], "option": [748, 2.92887638], "button": [175, 2.969082801], "identify": [517, 3.413768622], "tip": [1083, 3.532552158], "custom": [282, 3.413768622], "main": [640, 2.81273673], "display": [326, 3.279237729], "mark": [652, 3.307608426], "area": [103, 3.000335344], "section": [943, 3.065932627], "items": [561, 3.541601993], "created": [275, 2.579121879], "left": [598, 2.582600143], "manage": [648, 3.265348617], "bloggers": [151, 3.646962509], "office": [738, 3.677734168], "device": [314, 3.646962509], "relationships": [889, 3.251649772], "solution": [994, 3.397895273], "provided": [846, 3.329427474], "track": [1096, 3.100418803], "mentioned": [675, 3.446291814], "connected": [251, 3.405800452], "brands": [164, 3.279237729], "individuals": [536, 3.488492168], "interests": [551, 3.421800794], "currently": [281, 2.92887638], "york": [1196, 3.322101433], "publish": [849, 3.497150231], "biggest": [142, 3.038075672], "largest": [584, 3.607353371], "2019": [26, 3.366885036], "john": [564, 3.646962509], "multiple": [701, 2.71662942], "competition": [243, 3.75344599], "included": [526, 3.224802522], "advanced": [66, 3.488492168], "requires": [900, 3.258475738], "board": [155, 3.293322469], "interested": [549, 2.909363566], "particular": [760, 2.899748107], "promote": [842, 3.314828674], "program": [839, 3.397895273], "description": [306, 3.541601993], "various": [1145, 2.817132342], "insights": [543, 3.636912173], "tags": [1048, 4.022574654], "collection": [226, 3.787735063], "final": [415, 3.471397735], "box": [161, 3.192226352], "plugin": [797, 3.872634507], "id": [514, 4.181639349], "pick": [778, 3.300439937], "shown": [973, 3.479908424], "entry": [365, 3.951622918], "themes": [1071, 4.067695089], "plugins": [798, 3.96541624], "issues": [560, 3.043585328], "support": [1041, 2.669928327], "theme": [1070, 3.720293782], "types": [1119, 2.843919658], "standard": [1012, 3.244870085], "official": [739, 3.667371381], "profiles": [838, 3.382269955], "properties": [843, 4.131208495], "purpose": [853, 3.382269955], "private": [828, 3.148332158], "remove": [893, 3.454590616], "note": [726, 2.736750823], "changes": [203, 3.000335344], "photo": [774, 2.830436307], "location": [624, 3.166908544], "characters": [208, 3.720293782], "practices": [817, 3.776174241], "forward": [432, 3.322101433], "personality": [772, 3.924594246], "site": [981, 2.331285715], "steps": [1021, 3.160677994], "log": [625, 3.569253525], "upload": [1130, 3.657114881], "position": [806, 3.479908424], "scale": [932, 3.446291814], "bio": [146, 4.114947974], "background": [123, 3.646962509], "near": [708, 3.523583488], "city": [216, 3.244870085], "state": [1016, 3.043585328], "term": [1064, 2.938777451], "music": [703, 3.657114881], "home": [502, 2.579121879], "reply": [894, 4.067695089], "links": [614, 2.662352533], "character": [207, 3.75344599], "lower": [637, 3.479908424], "copy": [265, 3.322101433], "traffic": [1098, 2.943764993], "hashtags": [485, 3.898276937], "privacy": [827, 3.81126556], "24": [30, 3.000335344], "amazing": [80, 3.336807581], "normal": [724, 3.667371381], "middle": [684, 3.413768622], "man": [647, 3.344242559], "needed": [712, 2.995058287], "began": [131, 3.366885036], "month": [696, 2.791043906], "places": [787, 3.185836554], "figure": [411, 3.185836554], "size": [984, 3.027146602], "female": [409, 3.938017266], "woman": [1175, 3.938017266], "women": [1176, 3.166908544], "college": [227, 3.764745545], "men": [673, 3.397895273], "larger": [583, 3.185836554], "unique": [1124, 2.862185006], "half": [478, 3.100418803], "male": [646, 4.131208495], "self": [948, 2.808360356], "american": [83, 3.244870085], "result": [907, 2.830436307], "majority": [642, 3.413768622], "continue": [260, 3.08302706], "grow": [472, 3.065932627], "advertising": [68, 3.523583488], "marketers": [654, 3.823241751], "parts": [762, 3.322101433], "ability": [44, 2.880790194], "likes": [608, 3.11811838], "hand": [479, 2.799664649], "extra": [385, 3.192226352], "cover": [273, 3.293322469], "menu": [676, 3.75344599], "gives": [455, 2.857587296], "helpful": [494, 3.344242559], "including": [528, 2.32050394], "existing": [377, 3.265348617], "taken": [1049, 3.032596206], "tab": [1044, 3.720293782], "videos": [1149, 3.136136885], "role": [917, 3.479908424], "regular": [885, 3.198657242], "testing": [1067, 3.688205468], "response": [905, 3.211644438], "sending": [951, 3.698787577], "according": [47, 2.621681494], "study": [1033, 3.043585328], "soon": [995, 2.943764993], "pre": [818, 3.578643265], "notice": [728, 3.258475738], "includes": [527, 2.91420619], "matches": [658, 3.898276937], "success": [1038, 2.984586987], "paid": [758, 3.322101433], "video": [1148, 2.596635462], "download": [334, 3.148332158], "buttons": [176, 3.872634507], "despite": [309, 3.390052095], "past": [765, 2.589593179], "generation": [450, 3.720293782], "goal": [458, 3.154486024], "readers": [870, 3.094587882], "possible": [808, 2.342185006], "goals": [459, 3.550734477], "large": [582, 2.511982576], "function": [440, 3.479908424], "relationship": [888, 3.130094571], "campaign": [184, 3.742272689], "notes": [727, 3.446291814], "analysis": [84, 3.799431103], "dark": [287, 3.872634507], "actions": [52, 3.588122009], "increased": [531, 3.569253525], "19": [12, 3.344242559], "living": [621, 3.279237729], "outside": [753, 3.179487326], "smart": [990, 3.382269955], "affiliate": [70, 4.504412741], "ads": [65, 3.497150231], "running": [924, 2.843919658], "relatively": [890, 3.421800794], "traditional": [1097, 3.238136053], "test": [1066, 3.238136053], "ad": [58, 3.578643265], "january": [562, 3.823241751], "spent": [1007, 3.148332158], "fact": [390, 2.470641236], "target": [1054, 3.106283922], "owners": [755, 3.688205468], "deep": [301, 3.421800794], "paper": [759, 3.776174241], "store": [1023, 3.192226352], "base": [126, 3.505883911], "buy": [177, 2.933814662], "house": [509, 3.307608426], "family": [392, 2.899748107], "pictures": [780, 3.532552158], "phone": [773, 3.021726534], "increase": [530, 2.786761244], "websites": [1167, 3.27226906], "fine": [419, 3.421800794], "showing": [972, 3.286255302], "boost": [160, 3.514694541], "gets": [451, 2.80400305], "niche": [721, 3.667371381], "growing": [473, 3.130094571], "gain": [443, 3.390052095], "dating": [292, 3.787735063], "told": [1087, 3.077296385], "match": [657, 3.454590616], "girl": [453, 4.052427617], "fan": [393, 3.657114881], "reasons": [877, 3.065932627], "decision": [300, 3.454590616], "kids": [573, 3.847633205], "theory": [1072, 3.823241751], "rates": [866, 3.677734168], "efforts": [350, 3.523583488], "studies": [1032, 3.541601993], "hosting": [505, 4.083199276], "giving": [456, 2.995058287], "coming": [232, 2.938777451], "functions": [441, 3.847633205], "race": [863, 4.147737797], "political": [803, 4.007975855], "clean": [218, 3.698787577], "came": [182, 2.9639677], "purchase": [852, 3.541601993], "youtube": [1198, 3.505883911], "wanted": [1158, 3.016335686], "2008": [15, 3.979402482], "door": [333, 4.022574654], "players": [795, 4.007975855], "60": [42, 3.488492168], "investment": [555, 3.823241751], "economic": [343, 4.413440963], "irc": [557, 5.534032158], "march": [651, 3.636912173], "june": [569, 3.872634507], "word": [1178, 3.08302706], "received": [879, 3.374547909], "code": [225, 3.130094571], "brain": [162, 3.898276937], "air": [74, 3.677734168], "career": [188, 3.742272689], "white": [1172, 3.244870085], "center": [195, 3.329427474], "wordpress": [1179, 3.374547909], "blogger": [150, 3.872634507], "act": [50, 3.366885036], "country": [269, 3.329427474], "systems": [1043, 3.27226906], "files": [413, 3.578643265], "nice": [720, 3.185836554], "market": [653, 2.885496085], "force": [427, 3.607353371], "government": [466, 3.872634507], "anti": [91, 4.022574654], "limited": [610, 3.049125508], "range": [864, 3.173178157], "pins": [784, 4.578520713], "card": [186, 3.911349019], "highly": [498, 3.08302706], "magazine": [639, 3.898276937], "2018": [25, 3.532552158], "communities": [238, 3.688205468], "changed": [202, 3.251649772], "2010": [17, 4.022574654], "history": [499, 3.060298809], "database": [290, 3.951622918], "score": [937, 4.271790446], "areas": [104, 3.429898004], "percent": [767, 3.160677994], "april": [101, 4.03738974], "sports": [1009, 3.898276937], "external": [384, 3.847633205], "mode": [690, 3.799431103], "45": [39, 3.764745545], "higher": [497, 2.871444331], "18": [11, 3.049125508], "designed": [308, 2.943764993], "health": [489, 3.397895273], "machine": [638, 3.588122009], "face": [388, 3.005640396], "trust": [1108, 3.390052095], "username": [1136, 4.131208495], "north": [725, 4.022574654], "terms": [1065, 2.923962365], "benefit": [136, 3.479908424], "engaging": [359, 3.488492168], "21": [27, 3.488492168], "22": [28, 3.636912173], "develop": [311, 3.497150231], "host": [504, 3.636912173], "23": [29, 3.626961842], "faster": [397, 3.413768622], "mention": [674, 3.497150231], "26": [32, 3.860055725], "rate": [865, 3.265348617], "28": [34, 3.75344599], "29": [35, 3.860055725], "35": [37, 3.742272689], "wrote": [1192, 3.27226906], "color": [228, 3.559951132], "effective": [348, 3.065932627], "hashtag": [484, 4.164544915], "greater": [468, 3.471397735], "turned": [1113, 3.397895273], "medicine": [667, 4.504412741], "template": [1061, 4.234749174], "nature": [707, 3.413768622], "budget": [168, 3.698787577], "shop": [970, 4.007975855], "interview": [554, 3.872634507], "national": [705, 3.405800452], "allowed": [77, 3.429898004], "reports": [896, 3.709482866], "author": [116, 3.016335686], "immediately": [521, 3.286255302], "america": [82, 3.667371381], "typically": [1120, 3.258475738], "knowledge": [577, 3.397895273], "specifically": [1003, 3.421800794], "beautiful": [130, 3.646962509], "planning": [789, 3.59769146], "physical": [777, 3.550734477], "table": [1045, 3.607353371], "car": [185, 3.588122009], "rights": [914, 3.872634507], "lost": [632, 3.359280437], "php": [776, 4.350262061], "password": [764, 4.370881348], "complex": [246, 3.488492168], "earlier": [338, 3.279237729], "hold": [501, 3.322101433], "issue": [559, 3.094587882], "templates": [1062, 4.435419869], "rich": [912, 3.698787577], "price": [825, 3.314828674], "books": [159, 3.397895273], "century": [196, 3.911349019], "technology": [1059, 3.005640396], "university": [1126, 3.192226352], "instagram": [544, 2.933814662], "algorithm": [75, 3.938017266], "round": [919, 3.911349019], "values": [1143, 3.764745545], "500": [41, 3.286255302], "2016": [23, 3.322101433], "body": [157, 3.231447065], "client": [221, 3.835363112], "production": [834, 4.216730669], "expensive": [379, 3.626961842], "knew": [575, 3.59769146], "influencer": [539, 4.504412741], "treatment": [1102, 4.578520713], "status": [1018, 3.286255302], "estate": [369, 4.370881348], "novel": [729, 4.350262061], "trump": [1107, 4.528510293], "president": [821, 3.742272689], "policy": [802, 3.720293782], "financial": [417, 3.646962509], "land": [580, 3.823241751], "tumblr": [1111, 4.370881348], "legal": [599, 3.885373533], "global": [457, 3.688205468], "tables": [1046, 4.413440963], "frame": [434, 4.083199276], "class": [217, 3.617109546], "children": [213, 3.523583488], "older": [742, 3.677734168], "levels": [604, 3.688205468], "meaning": [663, 3.523583488], "students": [1031, 3.96541624], "difference": [318, 3.148332158], "80": [43, 3.471397735], "domain": [331, 4.007975855], "cars": [189, 4.098947633], "sex": [964, 4.147737797], "associated": [112, 3.559951132], "south": [999, 4.007975855], "september": [956, 3.979402482], "distance": [327, 4.03738974], "law": [590, 3.720293782], "spending": [1006, 3.657114881], "uk": [1121, 3.938017266], "film": [414, 4.290838641], "camera": [183, 3.979402482], "api": [92, 4.03738974], "forum": [431, 4.370881348], "tour": [1094, 4.578520713], "journal": [566, 3.993587117], "income": [529, 4.114947974], "water": [1162, 3.550734477], "2017": [24, 3.421800794], "sport": [1008, 4.413440963], "models": [692, 3.742272689], "united": [1125, 3.731222853], "animals": [87, 4.370881348], "skin": [986, 4.253098313], "sold": [993, 3.847633205], "tinder": [1082, 4.504412741], "mountain": [698, 4.504412741], "property": [844, 4.253098313], "trip": [1104, 4.253098313], "2009": [16, 4.083199276], "retrieved": [909, 4.715721835], "archived": [102, 4.874786529], "cluster": [224, 4.946245493], "applications": [97, 4.052427617], "shape": [965, 4.052427617], "command": [233, 4.253098313], "scientific": [936, 4.253098313], "player": [794, 4.181639349], "mr": [700, 4.457892725], "international": [552, 3.787735063], "query": [857, 4.457892725], "txt": [1117, 6.29617221], "court": [272, 4.413440963], "animal": [86, 4.457892725], "trans": [1100, 5.29764338], "road": [916, 3.742272689], "livejournal": [619, 6.044857782], "zynga": [1199, 6.45032289], "therapy": [1073, 4.715721835], "oil": [740, 4.6044962], "sql": [1010, 4.874786529], "bike": [143, 4.631164447], "tax": [1055, 4.658563421], "medical": [666, 4.199031091], "economy": [344, 4.874786529], "porsche": [805, 5.60302503], "toyota": [1095, 6.29617221], "indigenous": [534, 5.844187086], "bikes": [144, 4.983985821], "mbti": [661, 6.45032289]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_people_and_society.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_people_and_society.json deleted file mode 100644 index 3e048b4..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_people_and_society.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.706704292, "feature_log_probs": [-6.138047735, -6.130639292, -6.559843152, -6.658906722, -6.567924016, -6.701028762, -6.7247193, -6.599145184, -6.684982214, -6.77850428, -6.731668097, -6.81691803, -6.540229469, -6.966857784, -7.006156174, -6.99600577, -7.014917496, -6.995062141, -6.930670176, -6.923391778, -6.849675524, -6.92991174, -6.86583016, -6.845495766, -6.757933976, -6.818200956, -6.691667419, -6.682100326, -6.698549318, -6.635130562, -6.722379488, -6.823539678, -6.832844964, -6.926838485, -6.789137002, -6.695370469, -6.878695469, -6.906104366, -6.946684464, -6.897220287, -6.590908617, -6.930131218, -6.890083106, -6.901464836, -6.797870225, -6.640237714, -6.874366855, -7.066422419, -6.711401557, -6.488473197, -6.496635282, -6.465600235, -6.500792168, -6.958356934, -6.843731983, -6.76600426, -6.951548729, -6.521892906, -6.413497626, -6.963284216, -7.130810062, -7.05888564, -7.06002632, -6.70154892, -6.719808976, -7.135642211, -6.899920257, -6.676859637, -6.86559397, -6.661067497, -6.8274331, -6.662037552, -6.873645826, -6.932167889, -6.389532533, -6.371557191, -6.736695208, -6.87175743, -6.797732844, -6.911190671, -7.013995267, -6.678140145, -6.763112776, -6.755363701, -6.762304103, -6.671149735, -7.000212099, -6.700419473, -6.666553011, -6.842035213, -6.91120243, -6.727422665, -7.064313331, -6.904539987, -6.71388927, -6.43082048, -6.724968506, -6.888086315, -6.560455479, -6.636967843, -7.025448873, -6.375352977, -6.821074055, -6.891804454, -6.881059141, -7.095906476, -7.096523158, -6.769242639, -6.607493425, -6.081230817, -6.3466902, -6.384270733, -6.203620298, -7.103194678, -7.074733649, -7.13338372, -7.135642211, -6.52868197, -6.612350331, -6.300697322, -6.849431254, -6.297739624, -6.263132277, -6.492813846, -6.960394929, -6.623983355, -6.814558135, -6.896369554, -6.614316198, -6.621202191, -6.598159547, -6.324792897, -6.384694081, -6.864534461, -6.446590318, -6.684222307, -6.649201792, -6.937598926, -7.084482489, -6.257956382, -6.691251158, -6.607248097, -6.522397398, -6.804743259, -6.789905334, -7.105067061, -6.777457086, -6.875043319, -6.828884698, -6.652653153, -6.78233536, -6.505114044, -6.722385116, -6.862415724, -6.420794644, -7.135642211, -6.845161555, -6.730402358, -6.843210866, -6.950910885, -6.78925127, -6.63386126, -7.123275362, -7.099549329, -7.094047984, -6.543243812, -7.009046024, -6.704717586, -6.709787082, -6.487003234, -6.66290723, -6.504897125, -6.748504425, -7.085280953, -6.76125061, -6.515045628, -6.538139779, -6.750939313, -6.67308461, -6.995970779, -6.753900883, -6.335027668, -6.001113978, -6.660394754, -6.849527169, -7.135642211, -6.721222281, -6.856056459, -6.447280666, -6.740014317, -6.483268817, -6.427251009, -6.694909829, -6.640709461, -6.546358012, -6.728807877, -6.379181545, -6.726401998, -6.758614205, -6.870885128, -7.000642742, -6.806752603, -7.103946268, -6.724758051, -6.725734208, -5.984299434, -6.537768733, -6.77225277, -6.886545628, -6.208357416, -6.555422814, -6.651980084, -6.767484643, -6.874756089, -6.862704052, -6.755647444, -6.483566003, -7.0363255, -6.809620582, -6.865077674, -6.765824755, -6.454467354, -6.510055769, -6.829957933, -6.323757763, -6.802420502, -7.125645581, -6.456637428, -6.444473964, -6.991761121, -6.55854618, -6.015472946, -7.135642211, -6.623753333, -6.763312837, -6.960918696, -7.020563732, -6.450283271, -6.959836672, -7.004480849, -6.531826359, -6.905939208, -6.777505233, -6.949461834, -6.976634911, -6.942246519, -6.342283126, -6.695354853, -6.956004791, -6.697793492, -6.761741271, -6.64690539, -7.130791623, -7.131187649, -6.903264545, -6.95185145, -6.722837528, -6.82628483, -6.749220155, -6.714706143, -6.351184422, -6.518085894, -6.903744449, -6.897294146, -6.610345273, -6.350821153, -6.66144403, -7.023487508, -6.599252273, -6.5709387, -6.942648581, -6.498449251, -6.86368796, -6.848744386, -6.554009397, -6.788671759, -6.95201877, -6.900595821, -6.867925302, -6.784955882, -6.578336385, -6.826690968, -6.716492255, -6.741574481, -6.70015641, -6.627053384, -6.270324799, -6.885697064, -6.607110854, -6.360871201, -6.940783082, -6.724894375, -6.722142395, -6.67867129, -6.567733531, -6.166769644, -6.499145818, -7.079249876, -7.013598913, -6.733468368, -6.818283668, -6.417116231, -6.663834326, -6.810475398, -6.933708706, -6.941008052, -6.303719819, -6.11545565, -6.334274796, -6.434798099, -6.696430837, -6.261302189, -6.82040619, -6.462237014, -6.897711975, -6.632729056, -6.959785781, -6.607937783, -6.684691755, -6.546068139, -7.063623311, -6.835542093, -6.51601005, -6.572796296, -6.530276526, -6.40281705, -6.649631487, -6.272540165, -6.78942155, -7.125841144, -6.32781443, -6.645160331, -6.823379241, -7.135642211, -7.010485287, -6.624013077, -6.761775511, -6.135577627, -7.107841713, -7.121125414, -6.392979534, -6.598568876, -6.583122893, -6.799367422, -7.01828499, -7.022049444, -7.110746543, -7.025463234, -6.477286969, -6.620789108, -6.507459763, -6.773077213, -6.600101858, -6.829877077, -6.762090741, -6.506312793, -6.703130773, -6.78431641, -6.879957162, -6.955131148, -7.135642211, -7.086779892, -6.824563826, -6.915369091, -7.131555471, -6.540202339, -6.937268908, -6.373705487, -6.673541572, -6.55814506, -6.758874636, -6.807352104, -6.932855235, -7.135642211, -6.488239214, -6.983939904, -6.712408297, -6.786864787, -6.846754281, -7.100912749, -7.131741683, -6.414673387, -6.796389076, -6.894936608, -6.78676706, -6.883392826, -6.805056364, -6.625551182, -6.76499337, -6.569129389, -6.163844562, -6.863147543, -6.612109302, -7.135642211, -7.129298651, -6.949924265, -6.856361357, -6.811592405, -7.001271617, -6.640644745, -6.852932318, -6.835221128, -6.665053133, -6.594130397, -6.915088901, -6.774700012, -6.95506231, -6.542393735, -6.690742473, -6.793802248, -6.50892945, -6.852086314, -7.097364686, -7.134878092, -6.432400466, -6.51332375, -6.680146755, -7.132180723, -7.119838559, -6.425750245, -6.358555514, -6.592984223, -6.573731513, -6.652246903, -6.791170945, -6.467446768, -6.311922724, -6.617076545, -7.006318968, -6.811381347, -6.770317384, -6.007517527, -6.571219858, -6.295657316, -6.702414319, -6.329602154, -6.425556099, -6.74295592, -6.295454023, -6.431365084, -6.576659957, -6.664354554, -6.788259986, -6.742409153, -6.692972289, -6.928889297, -6.008553738, -6.453448412, -6.497939585, -6.977859101, -6.645014943, -6.880184536, -6.27313177, -6.621729746, -7.081152483, -7.11286476, -6.769345964, -6.656264013, -6.759734863, -6.874776335, -6.540778623, -6.589191278, -6.76262287, -6.875430384, -6.645681762, -6.904398073, -7.079443321, -6.980196431, -6.85649778, -6.409825395, -6.708216094, -7.135642211, -6.630866102, -6.47852601, -6.794780556, -6.810078716, -6.192435237, -6.626210395, -6.608677661, -6.994445642, -6.88242948, -6.698347329, -6.701880515, -7.135642211, -6.954499273, -7.001249793, -6.695872012, -7.079330415, -6.930219326, -6.722312659, -6.757798538, -7.120747481, -6.796336178, -6.745543328, -6.060440508, -6.739036283, -6.661600477, -6.93676005, -5.823212114, -6.631513737, -7.135642211, -6.493616636, -6.691602088, -6.908117884, -7.010643283, -6.565863563, -6.929118819, -6.347093868, -6.921734515, -6.587940407, -6.7176697, -6.503800132, -6.801577667, -6.752064792, -6.518005116, -6.567015719, -6.55576572, -6.615935651, -6.917739564, -6.86778285, -7.111839416, -6.632308681, -6.782642562, -6.523550585, -6.914223923, -6.823614778, -6.750191652, -6.786677033, -6.750879469, -6.677010305, -6.589300885, -7.027330982, -7.132185045, -6.445245072, -6.624150123, -6.583771067, -6.817299138, -6.613570824, -6.642446337, -6.764503603, -6.790704801, -6.466648084, -6.749008361, -6.59498385, -6.605324984, -6.633820606, -6.508169682, -6.675231241, -6.88706769, -6.942416787, -7.039916884, -6.596663822, -6.925994782, -7.060107422, -6.899994043, -6.527110428, -6.317161734, -6.680995983, -6.530309842, -6.786809163, -7.057348435, -6.821688499, -6.849265209, -6.678050925, -6.815993559, -6.407181458, -7.068136486, -6.566353981, -6.569707438, -6.730687711, -6.523827649, -6.476400105, -6.552906767, -6.49999525, -6.677481007, -6.902059493, -6.777183861, -6.50816198, -6.685679097, -6.636938556, -7.120001884, -6.70911994, -6.685339424, -6.713686012, -6.692659162, -6.801503614, -6.613928059, -6.321582045, -6.692253437, -6.314415157, -6.933925398, -6.329615364, -6.656174659, -6.783088845, -6.679312265, -6.635749346, -7.021318795, -6.93037543, -6.921849292, -6.677005733, -6.775533172, -6.92862545, -7.119253846, -7.090043722, -6.665206691, -6.623712689, -6.42716751, -6.583815364, -7.123512944, -6.897445223, -6.788774413, -6.703652816, -6.654425033, -6.628208177, -6.781839593, -6.694135715, -6.641586473, -6.26412557, -6.845240441, -7.008243643, -6.579977881, -6.751140967, -6.836939693, -6.563887548, -6.418957998, -6.58133439, -6.834166678, -6.788416224, -6.413771036, -6.834349466, -6.644365298, -6.5651139, -6.516977924, -6.536205372, -6.733706245, -6.693199308, -6.758532714, -6.737542892, -6.924595573, -6.370825445, -6.370384801, -6.42735382, -6.594505755, -6.265049974, -6.958591785, -6.999252418, -7.094866995, -6.553066645, -6.553175528, -6.739454514, -6.765905158, -6.66311646, -6.579230325, -6.671279471, -6.53537741, -6.469053411, -6.911116038, -6.512023175, -6.659598324, -6.364559266, -6.465130737, -6.919733677, -6.688053766, -6.884587832, -6.969945246, -6.619002031, -7.05113752, -7.001260532, -6.912344701, -6.627565303, -6.656505024, -6.671834743, -6.997817503, -6.56719867, -6.72783674, -6.399814103, -6.603524404, -6.507339281, -6.661900448, -6.916064898, -6.762025864, -6.617894155, -6.767719419, -6.827560911, -6.551303644, -6.950811395, -6.77254837, -6.849054037, -6.867262899, -6.497088436, -6.673510065, -6.810836177, -6.802551526, -6.516459617, -6.432564418, -6.894524506, -6.751283917, -6.611186289, -6.810814124, -6.674403221, -6.659847433, -6.767829188, -6.860116512, -6.383528181, -6.668536932, -6.735494543, -6.789579213, -6.556926533, -6.780532229, -6.453130768, -6.276697758, -6.344143142, -6.78914847, -6.7213205, -6.951252484, -6.482318796, -6.801689011, -6.563595039, -6.520574846, -6.624051899, -6.714987364, -6.935781754, -6.79338686, -6.494964332, -7.081721913, -7.122313668, -6.987853364, -6.292633347, -7.115265587, -7.133962983, -7.106095301, -7.129134842, -6.646774451, -6.484218872, -6.85911872, -6.405019268, -6.624714908, -7.135642211, -6.565447553, -6.417904795, -6.584603236, -6.742282616, -6.866256532, -6.744686395, -6.607174398, -5.914449952, -6.211888657, -6.442817305, -6.402698035, -6.739262007, -6.163372527, -6.683072667, -6.48942251, -6.802623671, -6.833131061, -6.09464274, -6.556114403, -6.310206134, -6.706579377, -7.04931311, -6.083183165, -6.686108208, -6.740659673, -6.933035291, -6.244107259, -6.071390066, -6.649311892, -6.608858823, -6.59772709, -6.42651031, -6.720678935, -6.878036697, -6.992030577, -6.519043678, -7.021243585, -7.041968219, -6.89033905, -7.00767445, -6.796776609, -6.545580706, -6.53822995, -6.850343036, -6.230382605, -6.687987649, -6.131866399, -6.532343968, -6.603474075, -6.141755582, -6.556521453, -6.582002536, -6.654248817, -6.813262253, -6.782126125, -6.701982983, -6.170608815, -6.180237363, -6.656648156, -6.724696452, -6.718974254, -7.135642211]}, {"log_prior": -0.679771409, "feature_log_probs": [-6.604732676, -6.468408856, -6.921652462, -6.73465652, -6.690732095, -6.7804747, -6.773573624, -6.759773467, -6.828686739, -6.789576668, -6.738715811, -6.837559433, -6.728369437, -7.007927247, -7.051022293, -7.025079471, -6.984942974, -6.952512831, -6.867243851, -6.88885824, -6.948789482, -6.822555278, -6.886582919, -6.832869337, -6.843225579, -6.813805186, -6.821597942, -6.759240383, -6.804959841, -6.882625511, -6.768153722, -6.893601147, -6.883991486, -6.855229532, -6.933998657, -6.84315964, -6.928923881, -6.924910373, -6.885680429, -6.88404152, -6.756111412, -6.962342648, -7.014648522, -7.012476183, -6.939927051, -6.946668548, -7.011535162, -6.912460854, -6.727433839, -6.67002812, -6.870739806, -6.667033949, -6.966684014, -6.652300377, -6.637121222, -6.603253944, -6.677814521, -6.661121068, -6.965128002, -6.779660108, -6.35153212, -6.708247223, -6.369268031, -6.67663014, -6.613908509, -6.741645158, -6.988306621, -6.809689005, -6.860498151, -6.904283928, -6.560881253, -6.086946513, -6.353561915, -6.791000627, -7.0616896, -7.019853688, -6.827751747, -6.627309462, -6.800264545, -6.930618627, -6.749279454, -6.752392789, -6.792901538, -6.747339789, -6.735704532, -6.671075801, -6.951445375, -6.551769242, -6.767640622, -6.907662508, -6.975679913, -6.580264089, -6.622010906, -6.944729774, -6.654129661, -6.944465769, -6.785805044, -6.695691607, -6.634202056, -6.77766284, -6.939442033, -6.598655236, -6.780714879, -6.704531112, -6.684303443, -6.616269902, -6.462225239, -6.511611773, -6.878550569, -6.434949806, -6.424703161, -6.700842814, -7.143009302, -6.506700255, -6.695423409, -6.136045635, -6.595053231, -6.926588479, -6.388754691, -6.94970186, -6.791759745, -6.487316761, -6.490544593, -6.727577901, -6.719253892, -6.542693231, -6.731354228, -6.856830918, -6.736865838, -6.790080968, -6.929305306, -6.749653107, -6.997190207, -6.879536513, -6.619931009, -6.695071292, -6.908679871, -6.531397869, -6.836425965, -6.989881498, -7.083464872, -6.604296071, -6.813029813, -6.93996379, -6.847483596, -6.942203136, -6.779210363, -6.841657416, -6.643684534, -6.765261927, -6.822395108, -6.293064048, -6.862041319, -6.756754537, -6.879723495, -6.920465658, -6.640263814, -6.34726337, -6.952103789, -6.89851958, -6.780802681, -6.693089881, -7.091805239, -6.801669666, -7.045104719, -6.521490229, -6.909944268, -6.881000475, -6.731224717, -6.958879222, -6.905230415, -7.077696544, -6.843870059, -6.735909635, -6.773628553, -6.533795523, -6.656948095, -6.703082974, -6.695463966, -6.449373636, -6.194899771, -7.009169254, -6.932319922, -6.872220236, -6.865124556, -7.131316993, -6.752472387, -6.760062981, -6.971569748, -6.761650809, -6.632005774, -6.939508396, -6.718796095, -6.497116856, -6.702192039, -6.900574825, -6.581442189, -6.84333008, -6.847475012, -6.917153412, -6.531577011, -6.204367337, -6.83240481, -6.855808964, -6.540904517, -6.879025222, -7.144274555, -6.90269516, -6.942386747, -6.068873054, -6.711697309, -6.8406115, -6.934865897, -6.965587077, -6.748162014, -6.776900947, -6.938149407, -6.643443529, -6.856497188, -6.728334158, -6.768339943, -6.55129628, -6.608075482, -6.778243242, -6.438021187, -6.662855652, -6.780505672, -6.433625838, -6.515600921, -6.966642535, -6.478483309, -5.975969676, -6.67963637, -6.679920069, -6.795722465, -6.856119362, -6.889551864, -6.696306821, -6.878969914, -6.982314226, -6.440673519, -6.675329592, -6.662448094, -6.553586067, -6.583633281, -6.950287426, -6.631325864, -6.716238769, -6.784193724, -6.936118883, -6.877217442, -6.752167205, -6.466792329, -6.793540659, -6.904231593, -6.675429992, -6.875377924, -6.849561632, -6.806412929, -6.86816234, -6.646058907, -6.413351643, -6.648578125, -6.887534407, -6.703326952, -6.869706587, -6.593770479, -6.812970713, -6.423892396, -6.722465345, -6.559365495, -7.047778888, -6.954285291, -6.895101087, -6.03810981, -6.471947427, -6.530275445, -6.657890814, -6.325967938, -6.948840373, -6.943320877, -6.804360272, -6.890439424, -6.41331733, -6.768743636, -6.854147393, -6.810717495, -6.848243847, -6.759049303, -6.734292294, -6.853548225, -6.784949318, -6.551059756, -6.901021343, -6.627777238, -6.898279584, -7.043971791, -5.590691385, -5.406920653, -6.781425301, -6.844478669, -6.672688654, -6.745200663, -6.605235619, -6.42980044, -6.783453863, -6.511666852, -6.332465025, -7.018445895, -6.777838589, -6.539294107, -6.54070155, -6.853216157, -6.477204284, -6.576755058, -6.825636777, -6.419615266, -6.857149609, -6.802940216, -6.830271489, -6.23013979, -6.579512377, -6.615796202, -6.587391261, -6.854344162, -6.481058865, -6.840874079, -6.258587158, -6.722471079, -6.766472428, -6.616176999, -6.815506194, -6.784009284, -6.868985232, -6.855705526, -6.337725604, -6.797570226, -6.646726282, -6.786230524, -6.559990001, -6.83153736, -6.513829321, -6.692611296, -6.737243951, -6.804150669, -6.439994568, -6.689641255, -6.035049795, -6.859422066, -6.899170431, -6.360646998, -6.733313228, -6.800430864, -6.853978448, -6.911220122, -6.629390658, -6.84233849, -7.025103981, -6.853267774, -6.437478149, -6.690035502, -5.456571651, -6.801424337, -6.650122158, -7.158007589, -6.961754852, -6.860674648, -6.767429145, -6.88269162, -6.566097205, -6.971168345, -6.83269341, -6.757308516, -7.081798534, -6.652578953, -6.615251956, -6.743358062, -6.692897923, -6.941233416, -6.382270756, -6.619453606, -6.679280356, -6.93812262, -6.77088231, -6.963764409, -6.948012047, -6.861302664, -6.829720482, -6.668745226, -6.664880572, -6.192484379, -6.776864754, -6.647988992, -6.915317856, -6.948872222, -6.751866067, -6.410176035, -6.305189871, -6.875264022, -6.779794684, -6.939925318, -6.825855974, -6.682575934, -6.642225031, -6.814336728, -6.775948035, -6.715448908, -6.48637855, -6.676779751, -6.847719573, -6.80042734, -6.833988046, -6.224188257, -6.592687645, -6.558507065, -6.783140402, -6.840873151, -6.240641807, -6.234936196, -5.613001218, -6.894158568, -6.589719884, -6.880173399, -6.994588902, -6.989648357, -6.585342582, -6.605658623, -6.419891492, -6.783538294, -6.481579597, -6.519845109, -6.460729934, -6.836346068, -6.478616939, -6.793900676, -6.572084567, -6.831305382, -6.876024525, -6.64025501, -6.271193444, -6.826956734, -6.943482737, -7.042468885, -6.896048424, -6.834574175, -6.895601822, -6.139725208, -6.617576285, -6.57091979, -6.288140503, -6.365739534, -6.787814589, -7.067218581, -7.070513173, -6.676385293, -6.841236485, -6.628748634, -6.808781508, -6.594951598, -6.729384522, -6.510426509, -6.631206789, -6.796668481, -6.631928602, -6.002976957, -6.619066806, -6.880485139, -6.718693874, -6.845758615, -6.836177548, -6.215588139, -6.023359567, -6.712104572, -6.907614287, -6.748974909, -6.517044699, -6.667709572, -6.804731025, -6.895381648, -6.326677683, -6.605719397, -7.00739825, -6.742189328, -7.064225742, -6.996479204, -6.500253805, -6.657144232, -6.58732183, -6.097473401, -6.859970715, -6.796336114, -6.771170443, -6.900608617, -6.907661814, -6.200340812, -6.814597976, -6.525994138, -6.411205918, -6.121214232, -6.764934582, -7.125427067, -6.889875066, -6.443919787, -6.60698062, -6.853707968, -6.905827466, -6.913553639, -6.74829518, -6.948131212, -6.905708432, -6.908764242, -6.666118263, -6.915238818, -6.797775642, -6.770780135, -6.753133097, -7.006442391, -6.660131709, -6.702993523, -6.900571973, -6.689595427, -6.801944201, -6.728784673, -6.897978232, -6.605153274, -6.861485789, -6.803662207, -6.860843523, -6.841177987, -6.571746844, -6.904679529, -6.989035139, -6.260184512, -6.431477307, -6.891323705, -6.85683143, -6.903695662, -6.038617503, -6.441833437, -7.153147081, -6.631512717, -6.583695945, -6.824081997, -6.817657442, -6.843442942, -7.105775535, -6.641489113, -6.920598065, -6.85659975, -6.559232588, -6.866706181, -6.843469256, -6.558136914, -6.919474558, -6.142458695, -6.783365168, -6.788833638, -6.77208252, -6.493688006, -6.670314245, -6.866982812, -6.37662001, -6.563367214, -6.825975516, -6.731264535, -7.069830545, -6.418856678, -6.818312729, -6.691682734, -6.764386685, -6.59360543, -7.048130964, -6.743098352, -7.061835529, -6.830480034, -6.824049964, -6.861110632, -6.629883371, -6.750544205, -6.8423175, -6.103446118, -6.645993115, -6.651727114, -6.926576695, -6.869452874, -6.754542634, -6.998409804, -6.552224754, -6.69910258, -6.63422576, -6.729067765, -6.401233382, -6.792312245, -6.816418094, -6.763423027, -6.824060689, -6.797586943, -6.949280045, -6.90448439, -6.691327456, -6.633329528, -6.516654478, -6.899040111, -6.684587824, -6.695925882, -6.716909732, -6.55061035, -6.799737941, -6.827995344, -6.82787444, -6.834415769, -6.847208564, -6.773752136, -6.675476698, -6.479078523, -6.90262676, -6.993493693, -6.34086396, -6.344093092, -6.791085444, -6.994030051, -6.766446023, -7.112721346, -6.816512453, -6.883806224, -6.964833217, -6.839218781, -6.861332724, -6.270929209, -6.710594624, -6.634872482, -6.813294483, -6.936798705, -6.837771203, -6.965628469, -6.769036232, -5.807304257, -6.542745534, -6.943994919, -6.936872771, -7.16532045, -6.95160793, -6.963984688, -6.677485296, -5.927693383, -6.173576633, -6.523767051, -6.765308071, -6.770003718, -6.905367142, -6.882679274, -6.852055162, -6.615822087, -6.607129072, -6.90952174, -6.877451217, -6.711796567, -7.071974941, -6.690959697, -6.627444069, -6.262880377, -6.503748813, -6.864994774, -6.686709688, -6.870841646, -6.744594692, -6.871723533, -6.727650348, -6.761296748, -6.86342843, -6.82723548, -6.79879015, -6.670101823, -7.034312411, -6.999480714, -6.479647886, -6.755901564, -6.416778747, -6.50945259, -6.857666347, -6.821100584, -6.568387367, -6.658747899, -6.690150537, -6.698414092, -6.477949797, -6.831648766, -6.716522107, -6.689463421, -6.54468014, -6.923873272, -6.349185644, -6.62786012, -6.549785598, -6.763163326, -6.65047324, -6.961478863, -7.024072389, -6.829338634, -6.807728745, -6.750999008, -6.598943847, -6.581772701, -6.842206726, -6.64460635, -6.367318196, -6.714818113, -6.884053234, -6.898526317, -6.488396056, -6.08555892, -6.175216196, -6.449631715, -6.555214824, -6.283002547, -6.594798568, -6.991369958, -6.490691376, -6.643534422, -6.799556981, -7.011674768, -6.917596534, -6.651632876, -6.823733832, -5.801015639, -5.627047379, -6.649408082, -6.969951905, -6.796496636, -6.594574553, -6.588333482, -6.534136115, -6.627218602, -6.83263929, -6.750635311, -6.57227836, -6.635694763, -6.965556059, -6.767409154, -6.905208573, -6.950029188, -6.566509633, -6.660159167, -6.588718033, -6.510674706, -6.362705866, -6.505569724, -7.031136067, -7.033210147, -6.943763542, -6.711018525, -6.818381023, -6.903732087, -6.79564636, -6.86978242, -6.314757195, -6.971662606, -6.873704531, -6.756896298, -6.626518549, -6.102312611, -6.768815141, -6.710588743, -6.943186019, -6.909636513, -6.138561625, -6.490301699, -7.072810668, -6.920474292, -6.698387034, -6.913023813, -6.827939956, -6.784758443, -6.430498563, -6.884446834, -6.944385377, -6.871768441, -6.993223188, -6.341445091, -5.778379125, -6.829648227, -6.5694294, -7.129777196, -6.548925532, -6.024265184, -6.615992015, -6.783796575, -6.18700282, -6.84061703, -6.693512787, -6.761508269, -6.833145982, -6.707292472, -6.746396582, -6.477889055, -6.309975204, -6.841243019, -6.668525539, -6.619975307, -6.707744967]}], "model_type": "nb", "positive_class_label": "people_and_society", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"parents": [524, 3.29693536], "children": [157, 2.759700975], "self": [636, 2.177416387], "really": [591, 2.046186491], "need": [494, 1.735091145], "room": [623, 2.969558689], "middle": [468, 3.183858216], "school": [630, 2.58633573], "tell": [704, 2.545652153], "fear": [270, 2.990072229], "body": [121, 2.475110095], "child": [156, 3.043276265], "special": [669, 2.814683109], "work": [784, 1.655616716], "ve": [755, 1.923041513], "seen": [635, 2.478210873], "worth": [788, 2.751504208], "kids": [388, 3.50783029], "low": [440, 2.806025046], "esteem": [252, 4.192319408], "perfect": [534, 3.054265387], "situation": [656, 3.005738346], "short": [648, 2.472018902], "way": [765, 1.492347727], "having": [323, 2.121535929], "external": [263, 3.177588603], "makes": [447, 2.175120175], "learn": [407, 2.380644629], "make": [446, 1.499324499], "experience": [261, 2.110725012], "better": [110, 1.910640999], "feel": [274, 1.989364155], "cultural": [200, 2.868267355], "great": [311, 2.042162341], "look": [435, 1.955653098], "good": [307, 1.810222252], "doing": [230, 2.258800991], "hard": [322, 2.34740057], "lives": [429, 2.415031971], "trying": [736, 2.441621425], "lead": [405, 2.715428151], "built": [130, 2.854599717], "focus": [283, 2.516190121], "help": [327, 1.813412047], "does": [227, 1.923041513], "actually": [57, 2.261297871], "lower": [441, 3.059805567], "difficult": [225, 2.66551376], "past": [529, 2.339259412], "building": [129, 2.854599717], "research": [606, 2.375026636], "shows": [649, 2.896176143], "approach": [78, 2.915224338], "new": [498, 1.487723441], "book": [122, 2.506559228], "key": [387, 2.723333331], "isn": [374, 2.391976195], "try": [735, 2.350129085], "instead": [369, 2.159192648], "love": [439, 2.302119865], "answer": [76, 3.016320455], "according": [51, 2.350129085], "state": [677, 2.258800991], "life": [419, 1.739532307], "doesn": [228, 2.112877866], "form": [288, 2.45974881], "kind": [389, 2.406323643], "center": [146, 2.793176904], "believe": [107, 2.420879941], "develop": [219, 3.021653801], "think": [711, 1.834397482], "saw": [627, 2.995267046], "friend": [291, 3.093707119], "project": [572, 2.88212439], "maybe": [457, 2.979762859], "didn": [222, 2.50975923], "called": [134, 2.125893234], "experiences": [262, 2.859134872], "easier": [234, 2.801723964], "let": [414, 2.234169204], "times": [715, 2.119364375], "finding": [281, 2.944494721], "states": [678, 2.426762311], "practice": [561, 2.625141304], "mindfulness": [471, 4.093879335], "studies": [688, 2.910428166], "young": [798, 2.66551376], "age": [63, 2.723333331], "based": [101, 2.110725012], "improve": [351, 2.920043625], "performance": [535, 3.15289599], "online": [514, 2.723333331], "resources": [609, 3.005738346], "ideas": [343, 2.954445052], "create": [196, 2.325836392], "role": [621, 2.767965485], "model": [473, 3.070978868], "learning": [408, 2.94945751], "reading": [588, 2.772123495], "attention": [91, 2.658051038], "feeling": [275, 2.680608386], "students": [687, 3.456971872], "led": [409, 2.88212439], "consider": [186, 2.639634312], "ways": [766, 2.165987691], "build": [128, 2.772123495], "desire": [217, 3.14077463], "adults": [59, 3.473638925], "did": [221, 2.040156322], "know": [390, 1.726267558], "years": [795, 1.73214129], "old": [511, 2.323173275], "action": [55, 2.727309479], "friends": [292, 2.552318845], "getting": [301, 2.380644629], "community": [180, 2.296925049], "allows": [69, 3.005738346], "provide": [574, 2.727309479], "deep": [215, 2.920043625], "human": [341, 2.394829264], "race": [585, 3.276028676], "care": [141, 2.63599132], "systems": [696, 3.255550144], "books": [123, 2.896176143], "history": [335, 2.350129085], "choice": [160, 2.859134872], "effective": [242, 3.032406593], "act": [54, 2.692080787], "comes": [176, 2.263801001], "view": [758, 2.692080787], "nature": [490, 2.896176143], "art": [84, 3.248816112], "music": [482, 3.171358053], "away": [98, 2.35560855], "environment": [250, 3.059805567], "animals": [75, 3.786854299], "night": [501, 3.099470824], "increase": [356, 2.934642424], "high": [330, 2.112877866], "identify": [345, 2.63599132], "values": [753, 3.159012217], "important": [350, 1.910640999], "able": [49, 2.229314825], "question": [581, 2.539029613], "creating": [198, 2.94945751], "article": [85, 2.522662635], "greater": [312, 3.005738346], "science": [631, 3.070978868], "original": [521, 2.868267355], "outside": [522, 2.596770607], "largest": [400, 3.276028676], "indigenous": [361, 3.134768606], "city": [165, 2.684417914], "north": [503, 2.979762859], "mexico": [467, 3.786854299], "united": [743, 2.658051038], "living": [430, 2.409218001], "small": [659, 2.207757104], "communities": [179, 2.832227419], "likely": [421, 2.366658387], "used": [746, 1.884575232], "culture": [201, 2.465865037], "population": [552, 3.00048899], "society": [661, 2.569182651], "year": [794, 1.974240994], "10": [1, 1.923041513], "000": [0, 2.389131242], "20": [12, 2.389131242], "50": [45, 2.755594193], "area": [81, 2.801723964], "size": [657, 3.190167385], "european": [255, 3.255550144], "native": [488, 3.116963981], "american": [71, 2.484441422], "non": [502, 2.383465505], "account": [52, 3.082278423], "long": [433, 1.827893394], "cultures": [202, 3.525374599], "true": [732, 2.400559938], "washington": [763, 3.400732154], "university": [744, 2.539029613], "uses": [749, 3.03782666], "data": [205, 2.832227419], "recent": [594, 2.565787062], "older": [512, 3.262329831], "americans": [72, 3.03782666], "little": [426, 2.110725012], "world": [787, 1.748474245], "large": [399, 2.582881495], "author": [94, 2.759700975], "century": [148, 2.910428166], "ability": [48, 2.859134872], "ancient": [73, 3.688414227], "today": [717, 2.130269609], "late": [401, 2.944494721], "government": [310, 2.814683109], "site": [655, 3.190167385], "complex": [184, 3.021653801], "traditional": [722, 2.759700975], "order": [517, 2.34467948], "result": [612, 2.475110095], "using": [750, 2.062447012], "water": [764, 3.116963981], "evidence": [258, 3.065376612], "including": [355, 2.100029723], "run": [624, 2.63599132], "highly": [332, 3.027015744], "women": [779, 2.284054858], "popular": [551, 2.767965485], "successful": [692, 2.995267046], "region": [598, 3.608371519], "30": [40, 2.519421141], "style": [690, 3.116963981], "groups": [314, 2.703686333], "far": [269, 2.333868564], "river": [619, 3.846043171], "idea": [342, 2.339259412], "thought": [713, 2.377831687], "man": [450, 2.438631886], "place": [541, 2.03018615], "ll": [431, 2.036156317], "lost": [437, 2.896176143], "early": [233, 2.441621425], "continue": [189, 2.780491744], "near": [492, 3.093707119], "local": [432, 2.797441303], "related": [599, 2.617972815], "south": [663, 3.087976444], "economic": [238, 3.448741373], "benefits": [108, 3.116963981], "sense": [637, 2.465865037], "story": [684, 2.628744912], "food": [286, 2.939556439], "week": [769, 2.711498873], "thoughts": [714, 3.065376612], "words": [783, 2.500189779], "actions": [56, 3.111098862], "means": [460, 2.09366703], "speak": [667, 3.054265387], "affirmations": [60, 4.563882964], "begin": [103, 2.915224338], "word": [781, 2.684417914], "meaning": [459, 2.819040414], "potential": [557, 2.859134872], "reality": [590, 3.065376612], "level": [415, 2.565787062], "positive": [554, 2.719372929], "org": [518, 3.448741373], "brain": [125, 3.269155796], "play": [544, 2.88212439], "negative": [497, 2.954445052], "turn": [738, 2.535734717], "belief": [105, 3.51656397], "influence": [366, 3.190167385], "real": [589, 2.286615679], "energy": [247, 3.311119995], "say": [628, 1.939214372], "force": [287, 3.14077463], "future": [294, 2.481321295], "live": [427, 2.152443466], "35": [43, 3.369960495], "change": [151, 2.032172248], "choose": [161, 2.643290623], "mind": [470, 2.447627449], "given": [302, 2.429716523], "step": [681, 2.810344708], "spirit": [672, 3.448741373], "marriage": [454, 3.440578063], "day": [209, 1.864201013], "needed": [495, 2.650643597], "11": [3, 2.621550636], "business": [131, 2.673032592], "12": [4, 2.447627449], "13": [5, 2.676813315], "happiness": [320, 3.400732154], "14": [6, 2.7313015], "15": [7, 2.45974881], "job": [381, 2.7313015], "16": [8, 2.784702277], "17": [9, 2.832227419], "18": [10, 2.784702277], "habits": [316, 3.416480511], "ones": [513, 2.788930613], "19": [11, 2.920043625], "family": [268, 2.289183074], "21": [31, 3.076612685], "22": [32, 3.011015403], "23": [33, 3.105267941], "24": [34, 3.048755731], "25": [35, 2.767965485], "26": [36, 3.222324497], "27": [37, 3.235482581], "single": [654, 2.614407749], "coming": [177, 2.669266109], "28": [38, 3.255550144], "29": [39, 3.262329831], "31": [41, 3.332781492], "heart": [326, 3.087976444], "32": [42, 3.377565095], "simply": [653, 2.366658387], "personal": [538, 2.487571315], "needs": [496, 2.572589809], "click": [169, 3.440578063], "emotional": [243, 3.190167385], "facebook": [265, 3.248816112], "bring": [126, 2.810344708], "news": [499, 2.751504208], "support": [693, 2.291757078], "free": [289, 2.299519084], "website": [768, 3.171358053], "peoples": [532, 3.282949118], "rights": [618, 2.610855347], "face": [264, 2.555668932], "multiple": [481, 3.016320455], "relationship": [600, 2.7313015], "home": [337, 2.258800991], "places": [542, 2.969558689], "created": [197, 2.669266109], "social": [660, 2.159192648], "central": [147, 3.111098862], "knowledge": [391, 3.093707119], "share": [647, 2.614407749], "main": [443, 2.872865065], "types": [740, 3.03782666], "source": [662, 2.900904285], "understanding": [742, 2.739333672], "levels": [416, 3.122863703], "best": [109, 1.888011661], "natural": [489, 3.043276265], "areas": [82, 2.920043625], "development": [220, 2.900904285], "common": [178, 2.465865037], "congo": [185, 5.687813061], "tribe": [730, 3.786854299], "india": [358, 4.078375148], "problems": [569, 2.845590647], "national": [486, 2.654340459], "access": [50, 2.819040414], "products": [571, 3.416480511], "trust": [734, 3.282949118], "men": [464, 2.444619928], "certain": [149, 2.478210873], "country": [193, 2.516190121], "user": [747, 3.667794939], "use": [745, 1.691731752], "follow": [284, 2.639634312], "usually": [751, 2.684417914], "taking": [700, 2.478210873], "don": [231, 1.646112232], "probably": [567, 2.565787062], "simple": [652, 2.500189779], "mean": [458, 2.600273238], "allow": [67, 2.747430882], "aware": [97, 3.027015744], "relationships": [601, 2.910428166], "health": [325, 2.565787062], "start": [675, 2.172829223], "right": [617, 1.821431336], "thing": [709, 2.18433683], "daily": [204, 2.793176904], "thinking": [712, 2.639634312], "control": [190, 2.500189779], "language": [397, 2.63599132], "hand": [319, 2.723333331], "point": [546, 2.161452536], "value": [752, 2.863690688], "bad": [99, 2.776298866], "emotions": [244, 3.490588483], "saying": [629, 2.87748401], "stay": [680, 3.021653801], "big": [111, 2.325836392], "hold": [336, 2.806025046], "things": [710, 1.836030136], "power": [558, 2.336560355], "space": [665, 2.763824692], "task": [702, 3.318288485], "god": [305, 3.730973841], "minutes": [472, 3.165166083], "end": [246, 2.03815432], "motivation": [479, 3.67805144], "journal": [383, 3.146816944], "skills": [658, 3.215809816], "list": [425, 2.380644629], "person": [537, 2.014437793], "animal": [74, 3.821945619], "different": [224, 1.803873024], "goal": [303, 2.964495387], "goals": [304, 3.116963981], "takes": [699, 2.727309479], "stop": [682, 2.719372929], "challenge": [150, 3.165166083], "open": [515, 2.484441422], "process": [570, 2.372229432], "fact": [266, 2.207757104], "talk": [701, 2.7313015], "happy": [321, 2.94945751], "sure": [694, 2.386294361], "complete": [183, 2.896176143], "matter": [456, 2.535734717], "points": [547, 3.070978868], "present": [562, 2.506559228], "check": [154, 2.819040414], "read": [587, 2.331183998], "ago": [64, 2.684417914], "specific": [670, 2.699802833], "speaking": [668, 3.059805567], "decision": [214, 3.093707119], "success": [691, 2.801723964], "making": [448, 2.03815432], "born": [124, 3.027015744], "understand": [741, 2.415031971], "study": [689, 2.673032592], "wrong": [792, 2.806025046], "lack": [395, 3.03782666], "religious": [603, 3.318288485], "political": [549, 2.823416789], "win": [776, 3.67805144], "public": [577, 2.453669764], "term": [705, 2.462802247], "achieve": [53, 3.111098862], "guide": [315, 2.995267046], "moment": [475, 2.739333672], "avoid": [96, 2.900904285], "higher": [331, 2.7313015], "longer": [434, 2.695934356], "content": [188, 3.128798439], "stories": [683, 2.934642424], "current": [203, 2.763824692], "remember": [604, 2.776298866], "marketing": [453, 3.870735783], "line": [422, 2.793176904], "rest": [611, 2.88212439], "come": [175, 2.018351692], "want": [760, 1.742504078], "problem": [568, 2.462802247], "beliefs": [106, 3.473638925], "information": [367, 2.468937236], "results": [613, 2.711498873], "party": [528, 3.222324497], "set": [643, 2.159192648], "clear": [168, 2.593280202], "example": [260, 2.062447012], "review": [616, 3.146816944], "general": [299, 2.684417914], "physical": [540, 2.772123495], "course": [194, 2.453669764], "quality": [579, 3.082278423], "offer": [509, 2.859134872], "wisdom": [777, 4.20971115], "100": [2, 2.763824692], "days": [210, 2.559030279], "entire": [249, 2.88212439], "america": [70, 2.810344708], "land": [396, 2.94945751], "canada": [137, 3.392950014], "colonial": [173, 3.698885526], "white": [773, 2.63599132], "market": [452, 3.134768606], "class": [167, 3.087976444], "anti": [77, 3.15289599], "nations": [487, 3.318288485], "behavior": [104, 3.048755731], "issues": [377, 2.66551376], "organization": [519, 3.202906411], "individual": [362, 2.868267355], "industry": [365, 3.269155796], "pride": [566, 3.465270675], "pdf": [531, 3.720162925], "asked": [88, 2.767965485], "color": [174, 3.269155796], "questions": [582, 2.707584974], "members": [463, 2.763824692], "following": [285, 2.516190121], "aren": [83, 2.827812401], "type": [739, 2.654340459], "cause": [144, 3.032406593], "going": [306, 2.052253244], "note": [505, 2.845590647], "movement": [480, 2.995267046], "group": [313, 2.271348207], "policy": [548, 3.29693536], "left": [410, 2.582881495], "working": [785, 2.328506621], "straight": [685, 2.995267046], "similar": [651, 2.562402964], "reasons": [593, 2.845590647], "various": [754, 2.845590647], "violence": [759, 3.222324497], "range": [586, 3.059805567], "available": [95, 2.7313015], "events": [257, 3.087976444], "include": [352, 2.462802247], "strong": [686, 2.784702277], "individuals": [363, 2.88212439], "ask": [87, 2.535734717], "nation": [485, 3.082278423], "video": [757, 3.14077463], "leaders": [406, 3.242127124], "deal": [211, 2.845590647], "campaign": [136, 3.51656397], "published": [578, 2.772123495], "features": [271, 3.171358053], "months": [478, 2.915224338], "nearly": [493, 2.934642424], "half": [318, 2.735309522], "price": [565, 3.377565095], "powerful": [559, 2.759700975], "major": [444, 2.707584974], "changes": [152, 2.910428166], "generally": [300, 2.900904285], "psychological": [575, 3.608371519], "terms": [706, 2.639634312], "possible": [555, 2.317868222], "road": [620, 3.473638925], "helps": [328, 3.03782666], "transition": [726, 3.698885526], "started": [676, 2.512969506], "inside": [368, 2.939556439], "gender": [298, 2.661775438], "sexuality": [646, 3.400732154], "church": [163, 4.004267176], "christianity": [162, 4.589200772], "table": [697, 3.570631191], "came": [135, 2.493860644], "woman": [778, 2.680608386], "lesbian": [412, 3.248816112], "told": [718, 2.52591467], "southern": [664, 3.490588483], "gay": [297, 2.94945751], "looking": [436, 2.406323643], "transgender": [725, 2.969558689], "recently": [595, 2.632361552], "easy": [237, 2.453669764], "lgbt": [417, 3.709467636], "bisexual": [115, 3.543232217], "considered": [187, 2.715428151], "families": [267, 3.29693536], "identities": [346, 3.304002528], "sexual": [645, 2.886786403], "fit": [282, 3.016320455], "won": [780, 2.596770607], "identity": [347, 2.579439151], "writing": [790, 2.886786403], "felt": [277, 2.920043625], "second": [633, 2.432679488], "religion": [602, 3.741902912], "college": [172, 3.222324497], "event": [256, 3.255550144], "blog": [119, 3.36241329], "homosexuality": [339, 3.883314566], "2019": [30, 3.159012217], "mental": [465, 3.059805567], "2011": [22, 3.385227968], "references": [597, 3.248816112], "page": [523, 2.964495387], "lot": [438, 2.163717543], "feelings": [276, 3.190167385], "associated": [89, 3.128798439], "head": [324, 2.680608386], "report": [605, 2.924886249], "total": [720, 3.202906411], "sex": [644, 2.801723964], "names": [484, 3.424448681], "got": [309, 2.610855347], "changing": [153, 2.886786403], "birth": [114, 3.304002528], "write": [789, 2.910428166], "written": [791, 3.054265387], "title": [716, 3.385227968], "included": [353, 2.868267355], "function": [293, 3.589323324], "add": [58, 2.868267355], "plan": [543, 3.099470824], "section": [634, 3.325508733], "month": [477, 2.891470252], "company": [182, 2.66551376], "million": [469, 2.920043625], "hair": [317, 3.51656397], "close": [170, 2.788930613], "taken": [698, 2.806025046], "psychology": [576, 3.752952748], "issue": [376, 2.836662016], "includes": [354, 2.823416789], "bit": [117, 2.836662016], "buy": [132, 3.222324497], "international": [371, 3.111098862], "works": [786, 2.600273238], "test": [707, 3.209337301], "allowed": [68, 3.122863703], "education": [241, 3.005738346], "media": [461, 2.50975923], "figure": [279, 3.171358053], "link": [423, 3.202906411], "majority": [445, 3.032406593], "car": [139, 3.456971872], "death": [212, 3.209337301], "known": [392, 2.352865064], "retrieved": [614, 3.688414227], "index": [357, 4.175224974], "php": [539, 4.885466588], "image": [348, 3.070978868], "languages": [398, 3.775425604], "2016": [27, 2.836662016], "2017": [28, 3.005738346], "female": [278, 2.959457593], "jump": [385, 3.165166083], "search": [632, 2.854599717], "series": [639, 2.959457593], "property": [573, 3.698885526], "treaty": [728, 4.282470505], "indian": [359, 3.416480511], "team": [703, 3.076612685], "legal": [411, 3.128798439], "modern": [474, 2.832227419], "western": [772, 3.235482581], "binary": [113, 3.534263547], "male": [449, 2.896176143], "despite": [218, 2.920043625], "english": [248, 3.340107532], "historical": [334, 3.235482581], "identified": [344, 3.215809816], "links": [424, 3.177588603], "edit": [240, 3.408575332], "lesbians": [413, 3.810111162], "trans": [724, 3.159012217], "queer": [580, 3.318288485], "orientation": [520, 3.637641901], "ethnic": [253, 3.83392181], "recognition": [596, 3.325508733], "began": [102, 2.87748401], "tribes": [731, 3.720162925], "cross": [199, 3.570631191], "navajo": [491, 4.885466588], "law": [403, 2.850085036], "number": [507, 2.231739069], "reservation": [608, 4.539190351], "indo": [364, 6.055537841], "al": [66, 3.962302977], "took": [719, 2.676813315], "york": [797, 2.806025046], "2006": [17, 3.552282052], "difference": [223, 2.886786403], "2009": [20, 3.440578063], "wrote": [793, 2.810344708], "heterosexual": [329, 3.908956996], "homosexual": [338, 4.033254713], "lived": [428, 3.165166083], "war": [762, 3.177588603], "cases": [143, 3.111098862], "status": [679, 3.128798439], "masculine": [455, 4.004267176], "french": [290, 3.798415122], "especially": [251, 2.403437638], "black": [118, 2.854599717], "lgbtq": [418, 3.730973841], "2010": [21, 3.377565095], "particular": [525, 2.763824692], "san": [626, 3.50783029], "california": [133, 3.525374599], "east": [235, 3.385227968], "40": [44, 3.005738346], "2012": [23, 3.235482581], "tribal": [729, 3.948697325], "spanish": [666, 4.20971115], "later": [402, 2.375026636], "case": [142, 2.438631886], "laws": [404, 3.311119995], "post": [556, 2.465865037], "bodies": [120, 3.332781492], "researchers": [607, 3.400732154], "2004": [15, 3.688414227], "canadian": [138, 4.033254713], "film": [280, 3.50783029], "particularly": [526, 2.780491744], "2018": [29, 3.134768606], "80": [46, 3.36241329], "doi": [229, 3.990082541], "july": [384, 3.340107532], "indians": [360, 4.125628033], "ed": [239, 3.698885526], "isbn": [372, 3.821945619], "march": [451, 3.099470824], "2015": [26, 2.974647759], "archived": [80, 3.810111162], "2014": [25, 3.082278423], "machine": [442, 3.67805144], "august": [93, 3.432480852], "association": [90, 3.534263547], "october": [508, 3.432480852], "press": [564, 3.15289599], "978": [47, 4.018655913], "pp": [560, 3.883314566], "2005": [16, 3.667794939], "2007": [18, 3.525374599], "2003": [14, 3.730973841], "june": [386, 3.190167385], "2000": [13, 3.67805144], "theory": [708, 3.499172227], "web": [767, 3.482077794], "services": [642, 3.228881897], "john": [382, 3.215809816], "december": [213, 3.473638925], "september": [638, 3.465270675], "david": [208, 3.448741373], "2008": [19, 3.385227968], "february": [272, 3.385227968], "november": [506, 3.51656397], "west": [771, 3.248816112], "games": [296, 3.688414227], "player": [545, 4.158417856], "game": [295, 3.248816112], "january": [378, 3.392950014], "survey": [695, 3.465270675], "president": [563, 3.111098862], "trump": [733, 3.858313263], "wanted": [761, 2.920043625], "eastern": [236, 3.741902912], "african": [62, 3.657642568], "census": [145, 4.301518699], "jewish": [379, 4.340739413], "israel": [375, 4.424121022], "jews": [380, 4.5150928], "africa": [61, 3.883314566], "british": [127, 3.490588483], "countries": [192, 3.183858216], "parts": [527, 2.896176143], "quite": [584, 2.859134872], "images": [349, 3.332781492], "dysphoria": [232, 4.381561407], "significant": [650, 2.801723964], "discrimination": [226, 3.490588483], "medical": [462, 3.289917788], "europe": [254, 3.490588483], "office": [510, 3.228881897], "mexican": [466, 4.818775214], "trade": [721, 3.67805144], "april": [79, 3.432480852], "bike": [112, 4.641844505], "band": [100, 4.192319408], "chinese": [159, 4.301518699], "version": [756, 3.059805567], "2013": [24, 3.099470824], "politics": [550, 3.304002528], "percent": [533, 2.915224338], "date": [207, 3.369960495], "attraction": [92, 3.922029078], "civil": [166, 3.709467636], "light": [420, 2.859134872], "court": [195, 3.465270675], "populations": [553, 3.775425604], "northern": [504, 3.534263547], "standard": [674, 3.262329831], "period": [536, 3.14077463], "citation": [164, 4.048069799], "travel": [727, 3.525374599], "return": [615, 3.228881897], "quickly": [583, 2.920043625], "en": [245, 4.109627692], "reason": [592, 2.614407749], "hispanic": [333, 5.074708588], "bisexuality": [116, 4.446099928], "design": [216, 3.311119995], "money": [476, 2.628744912], "exactly": [259, 2.900904285], "training": [723, 3.29693536], "federal": [273, 3.432480852], "wikipedia": [775, 4.920557908], "response": [610, 3.248816112], "users": [748, 3.598802068], "yes": [796, 3.054265387], "asia": [86, 4.063107676], "house": [340, 2.836662016], "service": [641, 2.984904259], "options": [516, 3.146816944], "pay": [530, 3.016320455], "china": [158, 4.175224974], "ainu": [65, 5.854867145], "went": [770, 2.984904259], "cost": [191, 3.215809816], "database": [206, 4.320936785], "intelligence": [370, 3.922029078], "running": [625, 3.082278423], "roll": [622, 4.36094212], "spend": [671, 3.032406593], "zionism": [799, 5.161719965], "companies": [181, 3.242127124], "wiki": [774, 5.308323439], "islam": [373, 4.956925552], "niger": [500, 5.950177325], "tuareg": [737, 6.461002949], "kurds": [394, 5.950177325], "kurdish": [393, 5.854867145], "m\u0101ori": [483, 6.055537841], "card": [140, 4.141888554], "google": [308, 3.456971872], "code": [171, 3.499172227], "sports": [673, 3.730973841], "chicano": [155, 5.950177325], "server": [640, 4.446099928], "wordpress": [782, 4.818775214]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_pets_and_animals.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_pets_and_animals.json deleted file mode 100644 index 1cd206a..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_pets_and_animals.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.701730924, "feature_log_probs": [-6.386495737, -6.335231598, -6.709132058, -6.701049507, -6.637694674, -6.792269651, -6.807749148, -6.72843824, -6.775556562, -6.850802464, -6.799923195, -6.868504251, -6.616084257, -6.967300087, -6.988629769, -6.965605517, -6.954659586, -6.959374384, -6.856564438, -6.848051402, -6.879774639, -6.826032881, -6.777813561, -6.781446641, -6.851594318, -6.690979349, -6.837944283, -6.689786932, -6.638356258, -6.876727503, -6.895862688, -6.833085762, -6.850544766, -6.732084104, -6.894054285, -6.893425271, -6.906677608, -6.911967464, -6.652892343, -6.87945224, -6.83336473, -6.738938285, -6.81578711, -7.062528808, -6.754343595, -6.547380589, -6.593262625, -6.580823923, -6.595312255, -6.807382126, -6.758303038, -6.484604446, -6.79551866, -6.447892515, -6.66884768, -6.93647932, -6.818928929, -6.62252742, -6.722017364, -6.769745511, -6.918257917, -6.800483112, -6.575415304, -6.819789892, -6.667772172, -6.800381218, -6.839352029, -7.047790066, -7.045280351, -6.810717695, -6.320190149, -6.735770416, -6.804558059, -6.833150311, -6.999520659, -6.739983668, -6.85223753, -6.757245217, -6.703072011, -6.603310558, -6.872850733, -6.694964844, -6.681940757, -6.892414504, -6.78186198, -6.903385002, -6.733290225, -6.60575329, -6.796156397, -6.739552636, -6.63145037, -6.696075988, -6.432157308, -6.766289266, -7.050520586, -6.820662765, -6.817555915, -7.07145899, -6.72750555, -6.730737562, -6.232778369, -6.394469532, -6.461649858, -6.209364279, -6.59796975, -7.0966212, -7.107753379, -6.631583894, -6.6116061, -6.415288309, -6.820597133, -6.87704718, -6.683840175, -6.911264138, -6.432289887, -6.379646696, -6.537107622, -6.820912177, -6.652330806, -6.806528624, -6.860533838, -7.089665204, -6.560743011, -6.608480289, -6.720441501, -6.383899642, -6.549794051, -6.950144249, -6.494548089, -6.859443199, -6.680515213, -6.521748312, -6.657920587, -6.309377975, -6.689867903, -6.822751159, -6.790105498, -6.57610036, -6.56481817, -6.8297694, -6.890815238, -6.940210708, -6.855368047, -6.716516699, -6.862765213, -6.694194299, -6.502754625, -6.69608371, -6.520331932, -6.860893677, -6.718151369, -6.851567654, -6.732583393, -6.365238057, -6.627880651, -6.703010098, -6.617905272, -6.804134676, -6.549818029, -6.513690456, -6.5366661, -6.778640288, -6.700185582, -6.888178944, -6.594689704, -6.495803292, -6.205245184, -6.78345685, -6.802378822, -6.787688298, -6.887476557, -6.740529305, -6.929455528, -6.426885628, -6.749259708, -6.567737262, -6.631543452, -6.7978287, -6.707318727, -6.836936005, -6.489617642, -6.77886016, -6.428228051, -6.707907981, -6.677893843, -7.138190061, -6.777931835, -6.689833936, -6.786717638, -6.058033904, -6.574653491, -6.26188026, -6.566531925, -6.95440442, -6.753179527, -6.865342728, -6.80808632, -6.761161782, -6.80923185, -6.812729741, -6.573681958, -6.864986983, -6.818557433, -6.654030131, -6.397429953, -6.505864393, -6.800905612, -6.816411919, -6.375459593, -6.779210976, -6.819170513, -6.768400526, -6.831188913, -6.920044584, -6.427376506, -6.444004999, -6.920236548, -6.965540903, -7.091599784, -6.555435235, -6.016316022, -6.858856706, -6.677073656, -6.801546428, -6.614548835, -6.768593748, -6.723818918, -6.473274647, -6.805518212, -6.765852992, -6.493913109, -6.757775965, -6.806513336, -6.824313188, -7.057190625, -7.115805416, -6.579873903, -7.031276213, -6.910057551, -7.014751068, -6.478251679, -6.727928739, -6.597090209, -6.770020785, -6.915023988, -6.627110356, -6.789248567, -6.558692572, -6.903504802, -6.927897553, -6.83406871, -7.00470378, -6.789062283, -6.410666001, -6.725911584, -6.385948174, -6.919827519, -6.785495836, -6.894826775, -6.812714383, -6.845782011, -6.436319037, -6.646018034, -6.789074578, -6.674175492, -6.60886812, -7.01995044, -6.642485006, -6.573182528, -6.958252085, -7.022370691, -6.415015484, -6.879991649, -6.840276245, -6.685403473, -6.749379235, -6.60693622, -6.647223115, -6.794936718, -6.636028129, -7.029319367, -6.774603968, -7.147235993, -6.647976215, -6.737175034, -6.605109048, -6.414675682, -6.700686926, -6.814664592, -6.396977532, -6.782776229, -6.689648311, -7.128218628, -7.147235993, -6.735366488, -6.635876589, -6.1531883, -6.315369652, -6.631081897, -6.718707695, -6.812259763, -7.082457101, -6.798203444, -6.530763632, -6.67399716, -6.757882935, -6.803485431, -6.733644207, -6.297812536, -6.216451094, -6.081469267, -6.509549755, -6.638050085, -6.364756421, -6.783071218, -6.876795645, -6.54914564, -6.832637971, -6.688684262, -6.752305949, -6.770273392, -6.775859965, -6.633295872, -6.780553508, -6.52977807, -6.567353305, -6.578575557, -6.646941837, -6.860122175, -6.251949945, -6.837986569, -6.331692339, -6.725884307, -6.824433298, -6.68735568, -6.808538944, -6.210840905, -6.851291127, -7.038315176, -7.110023194, -6.676014999, -6.384515758, -6.811921258, -6.751660678, -6.991149338, -6.580391818, -6.589704477, -6.728121615, -6.496231168, -6.641487466, -6.806180793, -6.547210328, -6.745689415, -6.763040468, -6.815642308, -6.877088105, -6.679985272, -6.427174522, -6.708580323, -6.781592631, -6.835195243, -6.589548258, -6.874281288, -6.741572698, -6.81947215, -6.651176863, -6.863247457, -6.989957981, -6.981645634, -6.517086301, -6.784338449, -6.71540721, -6.856928436, -6.873199381, -6.507333109, -6.835432561, -6.904493068, -6.981526221, -6.855826153, -6.837371794, -6.621218176, -7.030400463, -7.022758079, -6.617384159, -6.818054038, -6.228972237, -6.825090098, -6.670807774, -6.946366029, -6.698444248, -6.60772153, -6.893737153, -6.859508535, -6.640170149, -6.672990025, -6.958612595, -6.815381089, -6.566508866, -6.72444311, -6.775191198, -6.865362668, -6.633458488, -6.84756123, -6.701338689, -6.470243691, -6.582365303, -6.730102346, -6.220065498, -6.596709582, -6.639699174, -6.564160926, -6.818752923, -6.403930082, -6.363320457, -6.647073156, -6.840035595, -6.752192871, -6.118648885, -6.609489797, -6.789066975, -6.403022967, -6.789228089, -6.409420001, -6.911587598, -6.53718307, -6.704367273, -6.880183339, -6.795834165, -6.402308327, -6.448997889, -6.573878689, -6.741561282, -6.740842994, -6.713851605, -6.024218083, -6.495728836, -6.553649241, -6.874889705, -7.139518091, -6.644491139, -6.720598471, -6.843451909, -6.37566195, -6.735467202, -6.696304733, -6.727142919, -6.546405207, -6.982826738, -6.582547421, -6.827843596, -6.857966422, -6.739439113, -6.591476451, -6.773476479, -6.95295161, -6.83633606, -6.546878096, -6.596073752, -6.641877034, -6.499068353, -6.728267559, -6.765998825, -6.724051074, -6.303074003, -7.141729695, -6.619053636, -6.533670944, -7.040424788, -6.929785947, -6.790620631, -6.355111385, -6.676577424, -6.937195464, -6.744493391, -6.90145708, -6.782918724, -6.874090476, -6.820930537, -6.845133425, -6.194480474, -6.722202067, -6.634094329, -5.865248813, -6.722615221, -6.680783098, -6.662341806, -6.862309142, -6.77926717, -6.712114783, -6.765066644, -6.881571552, -6.523589076, -6.88107654, -6.903349553, -6.889691843, -6.726540324, -6.719256838, -6.729636228, -6.545496091, -6.897547068, -6.520099715, -6.783468122, -6.558118083, -6.533631328, -6.703806104, -6.574026189, -6.851370916, -6.916081043, -6.692120784, -6.764894182, -6.894260735, -6.944662708, -6.414771138, -6.695390733, -6.739521004, -6.789442793, -6.928671473, -6.769470033, -6.866764665, -6.771043558, -6.651176243, -6.614306407, -6.584610976, -6.731592925, -6.535505793, -6.835537082, -6.423599079, -6.592474301, -7.075045927, -7.147235993, -7.11247692, -6.762718255, -6.815476382, -6.855457141, -6.766933254, -6.510091508, -6.830564262, -6.698963007, -6.626381994, -6.599863241, -7.124625205, -6.466574681, -6.641531475, -6.994743092, -6.655370396, -6.974637644, -6.865543648, -6.626047209, -6.469255048, -6.705813373, -6.476319995, -7.019050732, -6.729474524, -6.838776479, -6.698784619, -6.751570028, -6.615308508, -6.422850195, -6.69369283, -6.668783621, -6.610226679, -6.724098255, -6.517718496, -6.906944338, -6.640638122, -6.743948023, -6.645053086, -6.83106563, -6.517266766, -6.578369764, -7.029896169, -6.709561387, -6.608407922, -6.646099482, -6.665317156, -6.670961344, -6.710851486, -6.745801134, -6.740404844, -6.662568654, -6.727698366, -6.662413778, -6.320500857, -6.622238278, -6.332767309, -6.268557897, -6.668654531, -6.839732507, -6.79256792, -6.761451394, -6.819444871, -6.686303418, -6.805384237, -6.7539285, -6.733845694, -6.866664618, -6.786887959, -6.559489677, -6.821349143, -6.840584773, -6.818631203, -6.716424172, -6.657595313, -6.692578687, -6.788392146, -6.745818111, -6.677664949, -6.332859227, -6.878877595, -6.819137737, -6.701012089, -6.836756513, -6.557630562, -6.850543498, -6.523365545, -6.637779175, -6.899925049, -6.70096863, -6.889163532, -6.471904838, -6.743044003, -6.563279719, -6.673113791, -6.904247293, -6.853941566, -7.027650863, -6.439641099, -6.587528718, -6.802005152, -6.76969519, -6.554893788, -6.735129977, -6.590355066, -6.513427742, -6.405506604, -6.62108866, -6.379880476, -6.774932156, -6.831590214, -6.479662044, -6.620326348, -6.786191288, -6.740306291, -6.877971391, -6.721177485, -6.602460465, -6.691057254, -6.60217331, -6.516379203, -6.819519807, -6.716431533, -6.829479751, -6.535394683, -6.908414974, -6.442011425, -6.830248913, -6.798989972, -6.804435637, -6.827567168, -6.866317359, -6.643776502, -6.899706574, -6.584853659, -6.743563844, -7.071555671, -6.677465048, -6.586904799, -6.813642885, -6.878588, -6.752713479, -6.408421434, -6.594756133, -6.59692516, -6.807786376, -6.733880601, -6.615335327, -6.750177156, -6.683817931, -6.630163544, -6.488486507, -6.810273273, -6.733917478, -6.758489562, -6.867206773, -6.576356381, -6.738980182, -6.692364173, -6.808855833, -7.087193734, -6.488371967, -6.488229591, -6.764077228, -6.524141034, -6.815334728, -6.741155806, -6.669207955, -6.726564699, -6.377463056, -6.684316386, -6.595871579, -6.836810938, -6.670429794, -6.711030495, -6.617010709, -6.915768212, -6.719762198, -6.782540549, -6.682251281, -6.786281075, -6.459214636, -6.206722903, -6.276807818, -6.710877614, -6.682474744, -6.555490191, -6.595488514, -6.603153171, -6.750876964, -6.766843383, -6.78698665, -6.930032033, -6.67071518, -6.319816224, -6.882615578, -6.969920883, -6.870075561, -6.724363182, -6.508946897, -6.45634604, -6.669399679, -6.67018648, -6.864184855, -6.550211019, -6.547664506, -6.738129527, -6.842302963, -6.856118804, -6.723602097, -6.81920079, -6.818450841, -6.863680628, -6.71810085, -5.92643326, -6.353285225, -6.827110331, -6.60526821, -6.409089264, -6.701873848, -6.292267294, -6.734489421, -6.519353275, -6.793768489, -6.133365805, -6.551444842, -6.576082554, -6.61068631, -6.097837131, -6.754023972, -6.842659145, -6.691742833, -6.813001537, -6.509364907, -6.078312522, -6.635486518, -6.548672631, -6.528616954, -6.520352624, -6.869440825, -6.731015358, -7.077368657, -6.75315221, -6.750874849, -6.82718294, -7.027767626, -6.96261154, -7.057311968, -7.086767491, -7.092623549, -7.113605135, -6.657854393, -6.372182997, -6.624178243, -6.8028608, -6.450067042, -6.664246642, -6.063440019, -6.748745267, -6.568559223, -6.628236813, -6.250431676, -6.762796373, -6.637027423, -6.564418527, -6.768577154, -6.719979359, -6.18688646, -6.290965489, -6.736969297, -6.678960987, -6.727687966]}, {"log_prior": -0.684636491, "feature_log_probs": [-6.342963257, -6.371246385, -6.726833805, -6.718959047, -6.703318618, -6.726851332, -6.785713926, -6.73339786, -6.79365078, -6.811960107, -6.752348886, -6.876103891, -6.594322194, -6.993109361, -6.992062091, -6.906649625, -6.946471456, -6.856413225, -6.918089316, -6.84813137, -6.840167467, -6.777194809, -6.810250441, -6.856013784, -6.805530067, -6.850889577, -6.78828822, -6.826782035, -6.884288329, -6.918417598, -6.867760272, -6.934295394, -6.78515853, -6.788788561, -6.944296577, -6.921532519, -6.964502484, -6.936433749, -6.684248127, -6.900465991, -6.78876725, -6.923348166, -6.972191686, -7.038338952, -6.722435844, -6.609393472, -6.894380019, -6.38273082, -6.871191966, -6.547434278, -6.817232548, -6.605599619, -6.728225805, -6.867921, -6.756691492, -6.747583805, -6.772318744, -6.501165688, -6.751795463, -6.806378048, -6.769456921, -6.934665139, -6.937152336, -6.803810513, -6.622128454, -6.940906165, -6.855603977, -5.155062096, -4.948685877, -6.810080969, -6.867301035, -6.959642882, -6.86838353, -6.925630706, -7.047128694, -6.574220138, -6.648516854, -6.741225024, -6.840683401, -6.652399782, -6.959492514, -6.791075997, -6.727382061, -6.851131241, -6.702768642, -6.635722552, -6.718585691, -6.785088362, -6.895866737, -6.779999253, -6.493599414, -6.751145354, -6.575158214, -6.870784118, -6.591057112, -6.681301051, -6.6252646, -6.713962114, -6.715386783, -6.919481173, -6.507481776, -6.556427346, -6.431524707, -7.124562882, -7.156153617, -6.179552341, -5.971152385, -6.706401627, -6.539552705, -6.947985888, -6.616134156, -6.672093665, -6.873621474, -6.68688469, -6.403703677, -6.615211958, -6.904778263, -6.47864745, -7.028477366, -6.724869836, -6.789574454, -6.985300624, -6.903288493, -6.919222025, -6.919478527, -6.88111504, -6.818432962, -6.683748908, -6.451397335, -6.799278927, -6.627315964, -6.668373586, -7.013020459, -6.860375845, -7.088169675, -7.076920141, -6.401212468, -7.004292825, -6.570800587, -6.724116732, -5.751489363, -5.666003428, -6.644322989, -6.762733807, -6.75160877, -6.733822876, -6.46416853, -6.768923386, -6.770270769, -6.76434486, -6.494208145, -6.727020856, -6.935120122, -6.605313746, -6.89219291, -6.755740275, -7.01871901, -6.616131873, -6.937936361, -6.497076452, -6.726676039, -6.868314687, -6.578973219, -6.888592611, -6.827169176, -6.894204281, -6.722161831, -6.856456167, -6.826413483, -6.784763727, -6.732038497, -6.766360397, -6.798393484, -6.951641426, -6.849174937, -6.692608212, -6.920835122, -6.757822746, -6.606374325, -6.776342757, -6.689780122, -6.825629549, -6.788517008, -6.825159542, -6.902739889, -6.517483725, -6.805175047, -6.878887092, -6.748280683, -6.703354554, -7.03305736, -6.251341503, -6.562261435, -6.683862958, -6.946510398, -6.495199722, -6.953817477, -6.885683284, -6.798680925, -6.658193867, -6.971557374, -6.779150271, -6.870331455, -6.84261634, -6.390102107, -6.558002972, -6.742502136, -6.817084768, -6.343050197, -6.766224279, -6.928161, -6.920810356, -6.757928837, -6.45323554, -6.482348504, -6.608458093, -5.630977016, -5.620431301, -6.587756569, -6.686050676, -6.149239619, -6.330226557, -6.905006958, -6.892490478, -6.659253198, -6.957969138, -6.948713101, -6.775561752, -6.444973984, -6.632344908, -6.533639788, -6.858962178, -6.833870495, -6.810657604, -6.41257629, -6.422660625, -6.920449118, -7.107262885, -6.619771682, -7.004406832, -6.559499618, -6.775700852, -7.085357163, -6.808525744, -6.734490415, -6.758485876, -6.896310635, -7.01817671, -6.842394718, -6.797868768, -6.680281674, -6.511898432, -6.841911814, -6.567390586, -7.004539611, -6.741115078, -6.739106518, -6.841875615, -6.750260937, -6.616258636, -6.642908139, -6.700797977, -6.588337408, -6.833070455, -6.457146933, -6.594062288, -6.542186808, -6.915447742, -6.834666029, -6.947127712, -6.650279447, -6.577070445, -6.663431428, -6.578612569, -6.857673534, -6.874872463, -7.018991514, -6.845637301, -6.805790065, -7.058368611, -6.093806342, -6.909540283, -6.591157283, -6.898815194, -6.654446782, -6.816046238, -6.026302775, -6.690312112, -7.017751249, -6.550747453, -6.701277191, -6.62345656, -6.904618562, -6.734129023, -6.897448148, -6.789296012, -6.851308451, -7.128425035, -7.081084539, -6.900539045, -6.81362752, -6.521159554, -6.776092662, -6.631528369, -6.705679016, -6.944313401, -6.795137111, -6.835871018, -6.503507787, -6.409903619, -7.040049034, -6.537152428, -6.610380799, -6.597400618, -6.768740825, -6.722550325, -6.395398031, -6.626836021, -6.869485797, -6.946800194, -6.712498254, -6.707388579, -6.674454067, -6.776929937, -6.646435478, -6.653804743, -6.580863577, -6.33143005, -6.736574022, -6.331717887, -6.963787624, -6.546849742, -6.824399162, -6.87262608, -6.637984325, -6.792251937, -6.361363682, -6.780241529, -6.562468624, -6.473405384, -6.719731281, -6.558354018, -6.846042931, -5.862943934, -5.885022509, -6.681281235, -6.568722314, -6.637391683, -6.623598487, -6.762378702, -6.895104046, -6.523278179, -6.889476919, -7.080181265, -6.758613083, -6.753574536, -6.694594188, -6.618229774, -6.642340258, -6.830689225, -6.840052399, -6.638680876, -6.832159648, -6.924181617, -6.654322651, -6.782796842, -6.79218852, -6.97257568, -6.352951163, -6.687397299, -6.799790986, -6.907707628, -6.955577025, -6.601755927, -6.86545596, -6.920970931, -6.712657946, -6.913620497, -6.914162373, -6.954778486, -6.858395346, -6.542771925, -6.618988837, -6.56467524, -6.789247563, -6.290781411, -6.879286922, -6.415910894, -6.617633742, -6.719569171, -6.499270937, -6.726399659, -6.856326237, -6.632438488, -6.593757083, -6.756412925, -6.817910538, -6.684223061, -6.932899083, -6.702177893, -6.726831469, -6.619871673, -6.740403804, -6.879704281, -6.589008961, -6.807050136, -6.815976498, -6.153421101, -6.70644051, -6.525313058, -6.814164349, -6.927859541, -6.768811997, -6.309640202, -6.388019108, -6.560162753, -6.463980886, -6.48461755, -6.58622505, -6.859965594, -6.239617691, -6.733678712, -6.43129842, -6.740832259, -6.599583097, -6.819292499, -6.778855473, -6.782989678, -6.534111396, -6.462481351, -6.778783244, -6.875872033, -6.908804358, -6.784611142, -6.209809692, -6.674870343, -6.654447778, -6.578275156, -6.55862599, -6.530576778, -7.017432946, -6.871323197, -6.939457999, -6.762992918, -6.788238787, -6.821318346, -6.685171406, -6.307802421, -6.714792129, -6.71520156, -6.888360168, -6.822331545, -6.795627399, -6.852277523, -6.840151656, -6.891052609, -6.573851644, -6.749958121, -6.829891316, -6.882393527, -6.943486288, -6.777778904, -6.853076888, -6.849101003, -6.638319871, -6.738173445, -6.715267359, -6.69544689, -6.520500223, -6.730137034, -6.536043829, -6.897444779, -6.662113369, -6.539322545, -6.725859709, -6.524567402, -6.462174642, -6.709654544, -6.779439998, -6.370907384, -6.782285776, -6.774784938, -6.018867162, -6.472648916, -6.673502635, -6.602688522, -6.829401296, -6.652124785, -6.882239647, -6.933084774, -6.924530728, -6.576777212, -6.859524483, -6.87413117, -6.92731855, -6.84692689, -6.947211932, -6.909639089, -6.883291003, -6.965071526, -6.448223184, -6.754552569, -6.825757956, -6.65045793, -7.037253844, -6.712101523, -6.787747068, -6.716586706, -6.851297985, -6.726721395, -6.604518531, -6.409717032, -6.783924914, -7.047386216, -6.685089788, -6.718192779, -6.600530162, -6.871008035, -6.817672219, -6.870235201, -6.683175756, -6.87734003, -6.548617409, -6.843487006, -7.007192609, -6.921627288, -6.715128109, -6.903417375, -5.498890976, -6.360668967, -5.933393057, -6.599433281, -6.585777609, -7.138063406, -6.804573389, -6.532762043, -6.869833607, -6.867183942, -7.032938783, -6.69298115, -6.894017013, -6.67610221, -6.932128, -6.637817271, -6.929257432, -6.62826316, -6.951421531, -6.67908946, -6.699767502, -6.846646093, -6.790744508, -6.990698872, -6.843474916, -6.867264861, -6.892749777, -6.851169667, -6.721490262, -6.982769711, -6.900044879, -6.618276351, -6.597500236, -6.780007787, -6.718260902, -6.760157807, -6.775441068, -6.913436448, -6.681423556, -6.727311406, -6.656761014, -6.892803012, -6.781563556, -6.722622714, -6.559781933, -6.636687449, -6.907678989, -6.635040394, -6.753269617, -6.919285208, -6.757294878, -6.776733624, -6.796705283, -6.819119745, -6.676967912, -6.971099463, -6.563746851, -6.439788152, -6.744272501, -6.842488749, -6.654671672, -6.741337013, -6.645347333, -6.686903717, -6.838303211, -6.871514288, -6.758221103, -6.743410864, -6.915077574, -6.169114882, -6.138114369, -6.769002052, -6.876074688, -6.76011211, -6.760218498, -6.776141731, -6.814262669, -6.998257015, -6.952369944, -6.477113841, -6.241040789, -6.737246065, -6.991514345, -6.818258661, -6.796860562, -6.820951395, -6.745678239, -6.905095661, -6.690782223, -6.758479081, -6.684462088, -6.336208845, -6.82807779, -6.795027595, -6.432785456, -6.705364996, -6.252883903, -6.134567468, -6.850496612, -6.721870403, -6.931277586, -6.599064801, -6.75388005, -6.703469853, -6.717807747, -7.153937069, -6.667389463, -6.927255155, -6.628192725, -6.799479337, -6.810735109, -6.784752971, -6.738576828, -6.71877821, -6.835532454, -6.87327402, -6.609075541, -6.776941175, -6.741651411, -6.704387802, -6.760035318, -6.918767665, -6.581024936, -6.507562708, -6.337964858, -6.809841798, -6.491470867, -6.525562602, -6.922305443, -6.800961856, -6.825342448, -6.809819719, -6.826362721, -6.672106674, -6.830688651, -6.774093529, -5.633430639, -6.859953839, -6.935017742, -6.875524841, -6.712170047, -6.969387283, -6.70909538, -6.614045099, -6.593746736, -6.528729605, -6.798396239, -6.891188013, -6.687165681, -6.91948361, -6.714336963, -6.531899453, -6.94863513, -6.917130237, -6.784645296, -6.585055187, -6.149374533, -6.842625415, -6.980105408, -6.88399384, -6.603771003, -6.566042406, -6.573565855, -6.929182274, -6.930824732, -6.682399683, -6.814578524, -6.731585741, -6.828296587, -6.448387594, -6.803329518, -6.747892143, -6.82107849, -6.819694725, -6.928634777, -6.71730929, -6.75523755, -7.003038188, -6.920417037, -7.058549019, -6.887654421, -6.525509063, -6.537297739, -6.319849224, -6.852751318, -6.576715738, -6.52298906, -6.619484542, -6.415955101, -6.575764306, -6.949580629, -6.875963799, -6.798136156, -6.841988741, -6.646544065, -6.627045688, -6.624092443, -6.823530208, -6.784743376, -7.015688411, -6.661805905, -6.689378195, -6.720645909, -6.742317634, -6.827843932, -6.838329291, -6.844990543, -6.817275682, -6.732917095, -6.66820968, -6.810199, -6.819155071, -6.542105159, -6.224920602, -6.206597717, -6.3526369, -6.904855955, -7.054803442, -6.987014958, -6.908724875, -6.467404485, -6.795471013, -6.919367953, -6.862094746, -6.397312589, -6.919959705, -6.463473691, -6.741881566, -6.46715172, -6.7667942, -6.851913663, -6.793395551, -6.772605022, -6.099786733, -6.235241424, -6.650972029, -7.032537335, -6.825421991, -6.613644302, -6.726969972, -6.801076441, -6.520452117, -6.613493562, -6.527207827, -6.914442311, -7.06071942, -7.00684472, -6.248840172, -6.233819668, -6.576590102, -6.603021254, -6.885149932, -6.775937816, -6.812695852, -6.805381062, -7.135136861, -6.739188844, -6.326542412, -6.835496417, -6.645842141, -6.738040275, -6.200242921, -6.905844415, -6.943151196, -7.000211965, -6.80395269, -6.668801753, -6.178497981, -6.069168508, -6.810977158, -6.627183792, -6.59214533]}], "model_type": "nb", "positive_class_label": "pets_and_animals", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"bear": [94, 3.971126463], "dr": [221, 3.52929371], "wild": [775, 2.858720852], "black": [108, 2.858720852], "named": [472, 3.00076851], "near": [477, 2.779732441], "food": [286, 2.323536784], "high": [331, 2.088697193], "instead": [361, 2.219514062], "single": [647, 2.588310366], "feet": [272, 3.223912061], "long": [420, 1.75858765], "hand": [322, 2.653081202], "comes": [160, 2.367259595], "class": [154, 3.223912061], "story": [679, 2.544010107], "use": [742, 1.69243569], "big": [102, 2.202787268], "content": [173, 3.191546776], "eat": [228, 2.788207068], "members": [451, 3.083006608], "click": [156, 3.502860453], "taking": [695, 2.591800771], "photo": [531, 3.468669089], "eye": [258, 3.172618767], "humans": [344, 2.485741199], "known": [387, 2.174748048], "man": [439, 2.796754128], "wildlife": [776, 3.435608226], "research": [597, 2.323536784], "thought": [713, 2.445674206], "living": [416, 2.534059776], "working": [787, 2.4608952], "50": [40, 2.792471466], "years": [796, 1.740514869], "protection": [570, 3.427511016], "according": [47, 2.266378371], "subject": [687, 3.284947952], "human": [343, 2.177054854], "course": [180, 2.457832411], "ll": [417, 2.103606948], "hold": [335, 2.919916413], "2017": [26, 3.243846276], "states": [673, 2.698716497], "university": [741, 2.4608952], "service": [634, 2.84062081], "learning": [398, 3.342517803], "told": [716, 2.550699095], "happy": [323, 3.077308587], "got": [311, 2.511220284], "minutes": [458, 3.011350619], "photos": [532, 3.443771537], "given": [304, 2.439650092], "500": [41, 3.197936575], "days": [192, 2.395590102], "help": [329, 1.867670045], "make": [434, 1.553230523], "notes": [489, 3.443771537], "day": [191, 1.973030561], "ground": [315, 3.00076851], "does": [214, 1.974915575], "house": [341, 2.706529037], "room": [612, 2.895934448], "new": [482, 1.501380453], "takes": [694, 2.827257582], "step": [675, 2.90545833], "eating": [229, 3.123828602], "right": [607, 1.97680415], "isn": [369, 2.404248165], "doesn": [215, 2.243905515], "want": [756, 1.872767762], "case": [138, 2.263856301], "point": [541, 2.253831154], "management": [440, 3.485618647], "makes": [435, 2.224344989], "months": [466, 2.722339643], "year": [795, 1.850862927], "study": [684, 2.581365894], "reported": [595, 3.147926154], "results": [602, 2.779732441], "number": [491, 2.212311149], "mean": [445, 2.742461046], "population": [545, 3.26418596], "post": [548, 2.623775076], "went": [770, 2.762995648], "recent": [588, 2.623775076], "change": [146, 2.339709644], "really": [585, 2.051348454], "news": [483, 2.641990515], "book": [115, 2.742461046], "great": [313, 2.170150338], "american": [64, 2.805374871], "scientific": [623, 3.223912061], "journal": [376, 3.230512745], "methods": [454, 3.468669089], "local": [418, 2.750624356], "used": [743, 1.862598183], "work": [785, 1.813246063], "stop": [676, 2.758854856], "community": [164, 2.944487674], "30": [38, 2.537365564], "typically": [735, 3.032856824], "problems": [561, 2.881816567], "home": [336, 2.226769232], "earlier": [223, 3.032856824], "using": [748, 1.99781734], "apply": [71, 3.419478844], "relationship": [592, 3.154042381], "understand": [737, 2.683272174], "better": [101, 2.110065528], "wanted": [757, 2.979934423], "doing": [219, 2.430681422], "spent": [668, 3.049295551], "did": [204, 2.053387191], "getting": [303, 2.418846964], "allow": [59, 2.854165035], "making": [436, 2.198059127], "including": [351, 2.127495163], "reasons": [587, 2.964588853], "lost": [427, 3.071642849], "department": [199, 3.21735466], "natural": [475, 2.664296273], "public": [572, 2.609437912], "national": [473, 2.702615137], "non": [485, 2.710458315], "young": [799, 2.881816567], "children": [150, 2.949475215], "property": [569, 3.547312216], "cause": [142, 2.805374871], "car": [133, 3.21735466], "provide": [571, 2.722339643], "behavior": [96, 3.106129025], "things": [710, 2.033184483], "person": [526, 2.479471586], "going": [308, 2.065707675], "actually": [51, 2.289367889], "little": [413, 2.027202412], "running": [615, 2.964588853], "away": [90, 2.251340493], "researchers": [598, 2.84962988], "especially": [245, 2.492050368], "times": [714, 2.174748048], "lead": [396, 2.929672588], "started": [671, 2.504789394], "way": [762, 1.575759636], "head": [326, 2.534059776], "eyes": [259, 3.016683965], "data": [189, 2.738404245], "say": [619, 2.055430092], "likely": [409, 2.36168855], "killed": [382, 3.335137696], "week": [766, 2.638320787], "coming": [161, 2.954487757], "close": [157, 2.595303401], "calls": [129, 3.223912061], "video": [754, 2.867895228], "probably": [559, 2.495219943], "matter": [443, 2.645673761], "media": [448, 2.809713273], "buy": [126, 2.895934448], "despite": [201, 2.919916413], "2009": [18, 3.494202391], "male": [437, 3.327811656], "percent": [522, 2.985102393], "cases": [139, 2.979934423], "studies": [683, 2.979934423], "act": [49, 2.867895228], "usually": [749, 2.754731138], "run": [614, 2.581365894], "ask": [81, 2.809713273], "questions": [576, 2.83169218], "later": [393, 2.412981845], "saw": [618, 3.077308587], "half": [321, 2.706529037], "example": [253, 2.174748048], "couple": [179, 3.197936575], "short": [640, 2.540682317], "don": [220, 1.688177344], "perfect": [523, 3.043785895], "aren": [77, 2.783960777], "native": [474, 3.715193089], "north": [487, 3.197936575], "mammals": [438, 3.726004005], "bad": [91, 2.858720852], "play": [539, 2.854165035], "hard": [324, 2.463967399], "skin": [651, 3.21735466], "middle": [455, 3.129798769], "turned": [731, 2.974793023], "game": [296, 3.094500987], "gives": [305, 3.016683965], "wide": [772, 3.154042381], "quick": [577, 3.26418596], "camera": [131, 3.468669089], "watch": [760, 3.135804793], "stuff": [685, 3.271058839], "green": [314, 3.291965524], "red": [590, 3.135804793], "brown": [120, 3.69391569], "animals": [68, 1.978696298], "platform": [538, 3.520404763], "trying": [729, 2.534059776], "seen": [629, 2.50799967], "taken": [693, 2.694832997], "17": [9, 3.210839979], "hours": [340, 2.734363836], "center": [143, 2.964588853], "longer": [421, 2.602345684], "live": [414, 2.286787242], "need": [479, 1.832695623], "share": [639, 2.710458315], "future": [295, 2.706529037], "welfare": [769, 3.584353488], "trump": [727, 4.376591571], "review": [605, 3.313318649], "experience": [255, 2.520944834], "let": [404, 2.271441672], "dead": [193, 3.223912061], "water": [761, 2.547349008], "engine": [242, 4.222440891], "sound": [659, 3.204367465], "today": [715, 2.410062135], "range": [580, 2.891206307], "light": [408, 2.818446953], "air": [58, 3.060406776], "fact": [262, 2.339709644], "ve": [752, 2.013381856], "deep": [198, 3.147926154], "white": [771, 2.827257582], "moment": [462, 3.106129025], "body": [114, 2.527480805], "mother": [468, 3.313318649], "group": [316, 2.404248165], "come": [159, 2.055430092], "look": [422, 2.005569316], "park": [516, 3.494202391], "drive": [222, 3.166388217], "check": [148, 2.77132903], "turn": [730, 2.609437912], "small": [652, 2.057477176], "level": [405, 2.623775076], "sense": [631, 2.69096452], "figure": [275, 3.106129025], "looking": [424, 2.323536784], "thing": [709, 2.229199367], "tell": [699, 2.645673761], "difference": [207, 2.964588853], "know": [385, 1.806846041], "10": [1, 2.027202412], "pretty": [556, 2.80105521], "soon": [657, 3.016683965], "leave": [399, 2.77132903], "sure": [690, 2.266378371], "face": [260, 2.83614653], "company": [166, 2.634664475], "20": [12, 2.401353807], "reading": [583, 3.077308587], "bodies": [113, 3.380258131], "directly": [211, 3.006045567], "possible": [547, 2.375674792], "huge": [342, 3.071642849], "goes": [307, 2.809713273], "gets": [302, 3.016683965], "bit": [107, 2.664296273], "think": [711, 1.999749707], "end": [240, 2.172446551], "kill": [381, 3.172618767], "best": [100, 1.963658421], "feel": [271, 2.410062135], "heart": [328, 3.172618767], "intelligence": [362, 3.793445286], "yes": [797, 3.083006608], "old": [500, 2.229199367], "world": [789, 1.883041825], "clear": [155, 2.584832102], "consider": [171, 2.754731138], "road": [610, 3.460300839], "australia": [85, 3.547312216], "area": [75, 2.730339685], "place": [535, 2.163293169], "fish": [280, 3.21735466], "past": [520, 2.53076488], "feed": [270, 3.257359995], "special": [663, 2.863297519], "site": [648, 2.995519154], "safe": [616, 3.088737283], "development": [203, 3.032856824], "oil": [498, 3.917059241], "industry": [356, 3.038306429], "night": [484, 2.964588853], "build": [122, 2.924782603], "places": [536, 3.210839979], "estate": [247, 4.013686077], "knowledge": [386, 3.327811656], "hope": [337, 3.088737283], "believe": [98, 2.818446953], "line": [410, 2.67563855], "fit": [281, 3.243846276], "life": [407, 2.047283408], "series": [632, 2.924782603], "kind": [383, 2.345159248], "horses": [339, 3.828951974], "offer": [495, 2.949475215], "unique": [739, 3.060406776], "create": [182, 2.560817225], "good": [309, 1.845875385], "true": [726, 2.718363494], "farm": [266, 3.632672065], "horse": [338, 3.957333141], "animal": [67, 2.051348454], "real": [584, 2.395590102], "environment": [244, 3.00076851], "features": [268, 2.985102393], "created": [183, 2.84962988], "added": [54, 2.788207068], "entire": [243, 2.83169218], "knew": [384, 3.141847108], "image": [346, 3.049295551], "conditions": [170, 3.172618767], "completely": [168, 2.924782603], "images": [347, 3.364990659], "website": [765, 3.043785895], "instagram": [359, 4.043099962], "genetic": [301, 3.715193089], "john": [375, 3.364990659], "film": [277, 3.726004005], "team": [697, 2.730339685], "men": [452, 3.250580308], "maybe": [444, 3.032856824], "scientists": [624, 2.895934448], "recently": [589, 2.779732441], "love": [429, 2.584832102], "dogs": [217, 2.664296273], "shape": [638, 3.642622396], "role": [611, 3.117893867], "000": [0, 2.307621329], "dog": [216, 2.595303401], "didn": [205, 2.550699095], "individuals": [355, 3.313318649], "certain": [145, 2.577911659], "result": [601, 2.664296273], "15": [7, 2.668062756], "board": [112, 3.468669089], "models": [460, 3.673081603], "women": [780, 3.197936575], "important": [348, 2.1564827], "health": [327, 2.706529037], "benefits": [99, 3.243846276], "different": [208, 1.886490104], "author": [86, 3.00076851], "united": [740, 2.915073789], "instance": [360, 3.135804793], "lower": [431, 2.959525551], "risk": [609, 3.049295551], "disease": [213, 3.477107957], "emotional": [238, 3.622819768], "support": [689, 2.577911659], "physical": [534, 3.123828602], "owners": [511, 3.106129025], "medical": [449, 3.435608226], "try": [728, 2.436651589], "published": [573, 2.679448078], "online": [502, 2.910254502], "science": [622, 2.8451152], "cats": [141, 2.939524884], "answer": [69, 3.032856824], "november": [490, 3.584353488], "org": [506, 3.622819768], "articles": [80, 3.574963747], "south": [661, 3.271058839], "africa": [55, 3.781884463], "function": [294, 3.342517803], "type": [733, 2.722339643], "brain": [117, 3.411510675], "present": [553, 3.117893867], "basic": [93, 3.066009031], "information": [357, 2.470140259], "called": [128, 2.071925312], "parts": [519, 3.027436757], "process": [562, 2.492050368], "outside": [509, 2.746534371], "decision": [197, 3.299032691], "problem": [560, 2.476351459], "idea": [345, 2.430681422], "cat": [140, 2.900685051], "size": [650, 2.762995648], "million": [456, 2.77132903], "based": [92, 2.20753787], "far": [265, 2.299757593], "16": [8, 3.00076851], "elephants": [235, 4.05813784], "higher": [332, 2.809713273], "larger": [391, 2.995519154], "article": [79, 2.660543923], "large": [390, 2.281645843], "evidence": [250, 3.006045567], "state": [672, 2.6165808], "groups": [317, 2.854165035], "effective": [232, 3.191546776], "similar": [644, 2.4608952], "numbers": [492, 3.277979282], "land": [388, 3.284947952], "2013": [22, 3.191546776], "international": [364, 3.154042381], "particularly": [518, 2.969677923], "free": [289, 2.312898386], "eggs": [234, 3.520404763], "2015": [24, 3.335137696], "month": [465, 2.858720852], "open": [503, 2.445674206], "plan": [537, 3.016683965], "100": [2, 2.762995648], "products": [566, 2.974793023], "wrote": [794, 2.949475215], "press": [555, 3.306150159], "multiple": [471, 2.881816567], "issue": [370, 2.954487757], "energy": [241, 3.349952782], "major": [433, 2.877154554], "companies": [165, 3.204367465], "general": [299, 2.854165035], "source": [660, 2.954487757], "changes": [147, 2.822842564], "quite": [579, 2.722339643], "fast": [267, 3.066009031], "follow": [284, 2.656805601], "key": [380, 2.8451152], "product": [564, 3.191546776], "means": [446, 2.304993207], "ways": [763, 2.436651589], "sign": [642, 3.022045908], "china": [151, 3.726004005], "government": [312, 3.135804793], "trade": [720, 3.715193089], "shows": [641, 2.805374871], "century": [144, 3.17888838], "court": [181, 3.770455767], "tried": [725, 3.129798769], "nature": [476, 2.767153658], "art": [78, 3.502860453], "age": [56, 3.066009031], "13": [5, 2.959525551], "paper": [515, 3.185197549], "late": [392, 3.083006608], "took": [717, 2.554060443], "needed": [480, 2.762995648], "second": [627, 2.482601479], "finally": [278, 2.964588853], "sold": [656, 3.395762318], "works": [788, 2.649370623], "worth": [790, 2.929672588], "remember": [593, 3.106129025], "money": [463, 2.742461046], "won": [781, 2.668062756], "significant": [643, 3.100298105], "simply": [646, 2.554060443], "60": [42, 3.277979282], "objects": [493, 3.891083755], "ability": [44, 2.750624356], "expensive": [254, 3.349952782], "2007": [16, 3.69391569], "14": [6, 3.032856824], "country": [178, 2.734363836], "uses": [747, 2.863297519], "ago": [57, 2.554060443], "popular": [544, 2.854165035], "order": [505, 2.476351459], "allowed": [60, 3.022045908], "friend": [290, 3.135804793], "director": [212, 3.230512745], "types": [734, 2.954487757], "project": [568, 2.90545833], "wasn": [759, 2.959525551], "child": [149, 3.485618647], "position": [546, 3.26418596], "focus": [283, 2.891206307], "19": [11, 3.250580308], "city": [153, 2.910254502], "style": [686, 3.419478844], "tools": [719, 3.320538897], "words": [784, 2.83169218], "legal": [402, 3.419478844], "lot": [428, 2.1564827], "easy": [227, 2.482601479], "modern": [461, 3.071642849], "quickly": [578, 2.809713273], "word": [782, 3.060406776], "history": [334, 2.656805601], "asked": [82, 2.809713273], "design": [200, 3.26418596], "ones": [501, 2.734363836], "saying": [620, 3.088737283], "question": [575, 2.602345684], "countries": [177, 3.342517803], "lives": [415, 2.77132903], "worked": [786, 2.934586603], "learn": [397, 2.631021484], "species": [664, 2.540682317], "12": [4, 2.620171468], "internet": [365, 3.223912061], "user": [745, 3.520404763], "form": [287, 2.649370623], "common": [162, 2.367259595], "2011": [20, 3.364990659], "amazon": [62, 3.891083755], "stories": [678, 3.166388217], "read": [582, 2.398467802], "18": [10, 3.038306429], "include": [349, 2.560817225], "uk": [736, 3.452002036], "email": [236, 3.342517803], "self": [630, 2.910254502], "2008": [17, 3.52929371], "text": [705, 3.477107957], "care": [136, 2.631021484], "family": [264, 2.564212814], "california": [127, 3.443771537], "wolf": [777, 4.335769576], "social": [654, 2.645673761], "individual": [354, 3.00076851], "weight": [768, 3.443771537], "technology": [698, 3.166388217], "pet": [528, 2.854165035], "specific": [665, 2.738404245], "built": [124, 3.060406776], "owner": [510, 3.197936575], "required": [596, 3.094500987], "list": [412, 2.656805601], "version": [753, 2.974793023], "link": [411, 3.299032691], "offers": [496, 3.197936575], "code": [158, 3.403605495], "model": [459, 3.17888838], "needs": [481, 2.638320787], "sites": [649, 3.547312216], "bring": [119, 2.738404245], "increase": [352, 3.123828602], "generally": [300, 2.969677923], "pets": [530, 2.929672588], "related": [591, 2.694832997], "stay": [674, 2.969677923], "cars": [137, 3.805141325], "death": [195, 2.964588853], "birds": [106, 3.111994145], "2006": [15, 3.662825103], "bird": [105, 3.435608226], "evolution": [251, 3.452002036], "market": [442, 2.985102393], "set": [636, 2.188669386], "came": [130, 2.598818344], "able": [45, 2.24885602], "job": [374, 2.910254502], "original": [508, 3.022045908], "extra": [257, 3.123828602], "travel": [722, 3.204367465], "return": [604, 3.066009031], "weeks": [767, 3.083006608], "testing": [704, 3.427511016], "complete": [167, 2.995519154], "power": [550, 2.714403093], "file": [276, 3.622819768], "following": [285, 2.638320787], "writing": [792, 3.185197549], "space": [662, 2.969677923], "japan": [373, 3.930304468], "developed": [202, 3.154042381], "avoid": [89, 2.881816567], "40": [39, 3.129798769], "analysis": [66, 3.372595259], "easier": [225, 3.043785895], "produce": [563, 3.197936575], "useful": [744, 3.223912061], "highly": [333, 2.99029721], "interesting": [363, 3.141847108], "rest": [600, 2.99029721], "normal": [486, 3.166388217], "treatment": [723, 3.204367465], "peta": [529, 4.534220515], "strong": [682, 2.924782603], "organization": [507, 3.335137696], "understanding": [738, 3.100298105], "language": [389, 3.313318649], "daily": [188, 3.054835731], "twitter": [732, 3.243846276], "issues": [371, 3.135804793], "rights": [608, 3.185197549], "building": [123, 3.032856824], "meat": [447, 3.380258131], "attention": [84, 2.754731138], "led": [400, 3.00076851], "cruelty": [185, 3.917059241], "suffering": [688, 3.593832232], "growth": [318, 3.468669089], "early": [224, 2.564212814], "movement": [469, 3.320538897], "sex": [637, 3.841073335], "choose": [152, 3.141847108], "effect": [231, 3.016683965], "cost": [176, 2.99029721], "direct": [210, 3.357443454], "save": [617, 2.979934423], "society": [655, 2.939524884], "americans": [65, 3.891083755], "america": [63, 3.172618767], "school": [621, 2.959525551], "experiments": [256, 3.917059241], "current": [187, 2.934586603], "speed": [666, 3.419478844], "response": [599, 3.147926154], "inside": [358, 2.8451152], "view": [755, 2.730339685], "credit": [184, 3.747982911], "cards": [135, 4.558913128], "began": [95, 2.854165035], "blood": [110, 3.320538897], "europe": [248, 3.632672065], "loss": [426, 3.452002036], "training": [721, 3.468669089], "london": [419, 3.632672065], "particular": [517, 2.90545833], "blue": [111, 3.468669089], "areas": [76, 3.054835731], "considered": [172, 3.022045908], "fall": [263, 3.111994145], "method": [453, 3.257359995], "behaviour": [97, 3.891083755], "average": [88, 3.335137696], "exactly": [252, 2.974793023], "involved": [366, 2.949475215], "2019": [28, 3.306150159], "doi": [218, 4.136918718], "sea": [625, 3.230512745], "reason": [586, 2.645673761], "talk": [696, 2.974793023], "frog": [292, 5.156750128], "levels": [406, 3.237157288], "looked": [423, 3.172618767], "easily": [226, 2.934586603], "24": [32, 3.054835731], "value": [750, 2.969677923], "action": [50, 3.141847108], "culture": [186, 3.342517803], "spend": [667, 3.077308587], "account": [48, 3.191546776], "tool": [718, 3.468669089], "theory": [708, 3.477107957], "points": [542, 3.111994145], "terms": [702, 3.043785895], "potential": [549, 2.886500416], "approach": [72, 3.088737283], "left": [401, 2.53076488], "term": [701, 2.90545833], "guide": [319, 3.237157288], "write": [791, 3.237157288], "wolves": [778, 4.39764498], "note": [488, 2.979934423], "books": [116, 3.243846276], "26": [34, 3.460300839], "island": [368, 3.574963747], "25": [33, 2.863297519], "2016": [25, 3.141847108], "nearly": [478, 3.038306429], "mind": [457, 2.702615137], "smaller": [653, 3.210839979], "continue": [174, 3.027436757], "february": [269, 3.632672065], "23": [31, 3.460300839], "2014": [23, 3.364990659], "war": [758, 3.613063594], "main": [432, 2.944487674], "28": [36, 3.502860453], "2012": [21, 3.277979282], "rate": [581, 3.271058839], "field": [274, 3.129798769], "pain": [514, 3.342517803], "various": [751, 2.969677923], "difficult": [209, 2.809713273], "low": [430, 2.722339643], "friends": [291, 2.8451152], "rules": [613, 3.166388217], "11": [3, 2.792471466], "period": [525, 3.166388217], "facebook": [261, 3.154042381], "start": [670, 2.334289576], "wrong": [793, 3.066009031], "2018": [27, 3.17888838], "includes": [350, 3.054835731], "page": [512, 2.872514174], "sort": [658, 3.191546776], "ride": [606, 3.736933075], "pay": [521, 2.974793023], "22": [30, 3.349952782], "business": [125, 2.762995648], "21": [29, 3.387980177], "thanks": [706, 3.320538897], "march": [441, 3.502860453], "october": [494, 3.662825103], "edit": [230, 3.494202391], "frogs": [293, 4.75128502], "monkeys": [464, 4.073405312], "buffalo": [121, 5.303353603], "index": [353, 4.104657855], "police": [543, 4.043099962], "july": [377, 3.5564447], "store": [677, 3.372595259], "simple": [645, 2.613002979], "systems": [691, 3.284947952], "communication": [163, 3.917059241], "essential": [246, 3.452002036], "having": [325, 2.358914623], "test": [703, 3.043785895], "thinking": [712, 3.022045908], "2005": [14, 3.957333141], "york": [798, 2.891206307], "law": [394, 3.141847108], "practice": [552, 3.071642849], "2003": [13, 3.781884463], "president": [554, 3.494202391], "blog": [109, 3.5564447], "private": [558, 3.335137696], "29": [37, 3.69391569], "mr": [470, 3.622819768], "ad": [52, 4.05813784], "services": [635, 3.223912061], "office": [497, 3.327811656], "capital": [132, 3.891083755], "search": [626, 2.969677923], "pages": [513, 3.613063594], "giving": [306, 2.919916413], "personal": [527, 2.995519154], "report": [594, 3.160196247], "program": [567, 3.335137696], "deal": [194, 3.094500987], "effects": [233, 3.403605495], "quality": [574, 3.043785895], "access": [46, 2.924782603], "control": [175, 2.754731138], "moral": [467, 3.878344729], "tree": [724, 3.502860453], "april": [73, 3.419478844], "jump": [378, 3.372595259], "associated": [83, 3.223912061], "member": [450, 3.364990659], "gender": [298, 4.419151185], "looks": [425, 2.924782603], "complex": [169, 3.17888838], "27": [35, 3.419478844], "available": [87, 2.631021484], "tend": [700, 3.230512745], "woman": [779, 3.403605495], "standard": [669, 3.335137696], "hair": [320, 3.662825103], "fleas": [282, 5.303353603], "european": [249, 3.547312216], "web": [764, 3.435608226], "app": [70, 3.427511016], "female": [273, 3.291965524], "laws": [395, 3.632672065], "performance": [524, 3.364990659], "price": [557, 3.166388217], "option": [504, 3.26418596], "diet": [206, 3.759156212], "2010": [19, 3.511594133], "january": [372, 3.53826238], "production": [565, 3.335137696], "strategy": [680, 3.726004005], "allows": [61, 3.106129025], "pmid": [540, 4.951955716], "pp": [551, 4.441130092], "isbn": [367, 4.486592466], "december": [196, 3.584353488], "978": [43, 4.721432057], "retrieved": [603, 4.187349571], "add": [53, 2.863297519], "card": [134, 4.258808535], "street": [681, 3.632672065], "financial": [279, 3.781884463], "brand": [118, 3.584353488], "wikipedia": [774, 4.75128502], "june": [379, 3.565661355], "archived": [74, 4.441130092], "lens": [403, 4.170255138], "frame": [288, 3.943727489], "users": [746, 3.452002036], "helpful": [330, 3.715193089], "oils": [499, 5.069738751], "php": [533, 4.721432057], "table": [692, 3.403605495], "database": [190, 4.088909498], "en": [239, 4.534220515], "section": [628, 3.364990659], "theme": [707, 4.315966949], "games": [297, 3.985112705], "emma": [237, 5.682843224], "google": [310, 3.435608226], "server": [633, 4.39764498], "bikes": [104, 4.880496752], "wiki": [773, 5.156750128], "bike": [103, 4.69244452], "wordpress": [783, 4.75128502]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_real_estate.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_real_estate.json deleted file mode 100644 index 60e0801..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_real_estate.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.702773319, "feature_log_probs": [-6.600884662, -6.368215112, -7.130868006, -6.877978987, -6.904751254, -7.102747635, -7.044897178, -6.900019854, -7.027340434, -7.368667393, -7.097371423, -7.413903306, -6.863167877, -7.619174012, -7.797945619, -7.713076085, -7.831082751, -7.560637063, -7.657085847, -7.480850759, -7.438713152, -7.236618955, -7.284267325, -7.4663709, -7.241787419, -7.404031439, -7.024254018, -7.326962016, -7.173323624, -6.812226842, -7.59932639, -7.393447389, -7.536064389, -7.256367912, -7.401273137, -7.516474947, -7.737498078, -7.614035512, -7.618956408, -6.811100452, -7.701650357, -7.518676951, -7.71149423, -7.551142226, -8.05445662, -7.264638541, -7.127288054, -7.477434696, -7.477867389, -7.827203731, -7.67760843, -7.659773118, -7.009776946, -6.634236837, -6.706666246, -6.745763731, -6.844475938, -7.140634112, -7.187873197, -7.017017967, -7.10476785, -7.05711946, -7.612526938, -6.642801517, -7.417326117, -6.585850397, -7.09764157, -7.214996647, -7.275623947, -7.367660883, -7.080084109, -7.573348834, -7.406432433, -7.541802381, -8.119754994, -8.092801848, -7.630640023, -6.863821669, -7.718674999, -8.336710928, -8.076924294, -7.045598827, -7.851707002, -7.475857089, -6.95410068, -7.128683349, -7.440048557, -7.025098649, -6.66671619, -6.994450419, -6.665963579, -7.237908452, -7.434592312, -7.70082693, -6.526101378, -7.930358765, -7.123075089, -7.945535619, -8.525017857, -6.323861054, -7.12368162, -7.269475162, -7.196836223, -7.674733306, -7.642688524, -7.113643385, -7.232499562, -7.134872201, -6.984487021, -6.680424569, -7.00414527, -7.038626905, -7.668635847, -8.40421675, -8.089211574, -8.064650576, -7.369166288, -7.896194949, -6.848275741, -7.692284369, -7.618284621, -6.978664465, -6.67814586, -7.159207199, -7.182232088, -6.681246469, -6.78155891, -7.224595146, -7.645273178, -7.375839181, -6.57193517, -7.134315833, -7.560623047, -8.055379434, -7.278143613, -7.263390203, -7.323393337, -7.285573393, -6.991948499, -8.200987118, -7.444281572, -7.210078879, -8.095400884, -6.073021635, -6.307718114, -6.543516879, -7.351989579, -8.738805604, -7.316409628, -6.039613334, -6.865824439, -6.968029758, -6.762217468, -6.770562569, -7.34207105, -6.300065818, -6.999216153, -6.21550017, -6.15172526, -6.618313549, -7.744592745, -7.069724347, -7.031708688, -7.339635735, -7.172846765, -7.335225666, -8.099170821, -8.515804269, -7.41818232, -7.500792131, -6.980831155, -7.976988707, -7.337717217, -8.3819517, -7.125437559, -6.614952354, -7.509068692, -6.993005485, -8.542142374, -8.441885287, -7.799920466, -7.396572548, -6.570943065, -7.419715953, -6.88866393, -6.47100804, -6.999242365, -7.175316572, -8.069677616, -7.494321448, -6.323066299, -6.715889707, -7.208496412, -6.884852387, -6.535920644, -7.179672651, -7.630483493, -6.965584054, -8.063702815, -7.033230546, -7.659014015, -7.357123958, -6.825934355, -7.496822536, -7.188530942, -7.356577407, -6.566645278, -7.565795457, -7.175063646, -7.538797152, -7.52043234, -6.634356864, -7.002485521, -7.427346576, -7.536280334, -7.257706757, -7.033036538, -7.82192433, -6.897777187, -7.572238583, -7.563297126, -7.122506803, -6.667168309, -6.904048439, -6.710365938, -7.27405045, -7.726415947, -7.011954874, -8.450050854, -6.65450517, -7.200061684, -7.18273705, -6.617866651, -6.764513392, -7.11938533, -7.350046246, -7.104234411, -7.765532064, -7.557664851, -6.96486656, -7.67590998, -7.271306942, -6.716805605, -6.288166867, -7.371933563, -7.494408848, -7.173368317, -7.149341357, -7.235134469, -7.088028255, -7.269639695, -7.374650087, -8.68436774, -8.738805604, -7.117192718, -7.107254028, -7.431895607, -8.093113093, -6.370122001, -7.325979093, -8.189325911, -6.819613208, -7.527089318, -7.073318855, -7.428187312, -8.031119064, -7.281460834, -6.934776518, -7.778308124, -7.281874048, -6.623024959, -7.179596854, -7.071335421, -6.409781553, -7.019882253, -7.108647769, -7.111480123, -7.741024416, -7.505781026, -7.091978259, -7.02671507, -7.415355686, -7.333993698, -7.126161947, -6.726742073, -5.95364559, -6.679555378, -7.316553499, -7.340404994, -6.063953594, -6.575503699, -7.190582402, -7.62521492, -7.020982849, -7.750798146, -7.80123224, -7.611274509, -7.438549333, -7.704333523, -7.303712714, -7.185259041, -7.463276803, -8.71047408, -7.043210101, -7.263880359, -7.600858805, -7.657217606, -7.339609649, -7.353096753, -8.361022265, -7.242800122, -6.531817404, -6.92218342, -7.26275165, -7.279853597, -7.757546775, -7.251476917, -7.454679187, -8.11372231, -7.758712348, -7.098293256, -6.374530577, -6.522433474, -7.125386473, -7.474300212, -6.251791951, -7.085347665, -7.097583412, -7.476444945, -7.216909506, -7.362785198, -7.155600852, -8.161224456, -7.800707489, -6.460743735, -6.60212992, -7.796244774, -6.712169878, -7.783815754, -5.863744803, -7.211147832, -7.099734062, -7.674318453, -6.994279083, -7.150622654, -7.220128068, -6.763049778, -7.143722665, -6.918071202, -7.533702001, -6.41767709, -7.462621835, -7.564463047, -7.40470189, -6.61346842, -7.365142268, -7.123416628, -7.277321885, -6.931993126, -7.476689687, -6.649459877, -7.347748955, -7.467426854, -6.464796965, -6.716144172, -7.007194618, -7.273005875, -7.060937326, -7.536737261, -7.297081696, -7.180313604, -7.370882097, -7.642796108, -6.952348924, -6.764468161, -8.346705622, -7.005062986, -6.964280291, -7.356839667, -8.738805604, -6.804721262, -7.199293504, -6.38558502, -7.553875674, -7.598299889, -7.361395092, -7.614663724, -8.337330995, -7.522405586, -6.603653743, -7.169037595, -7.007578149, -6.450864872, -6.64976497, -7.816049373, -7.726909972, -7.662984361, -7.285568342, -7.831658485, -6.827371702, -6.790022171, -6.993661279, -7.518258549, -6.83848194, -6.951317965, -6.747678893, -7.91070876, -7.225018548, -7.833277486, -6.442885508, -6.854256361, -7.822013926, -7.512875229, -7.050617456, -7.628290014, -7.045521107, -7.086306381, -6.967363951, -7.006933164, -7.295778926, -7.143373316, -7.795703595, -7.200905533, -8.437942442, -7.394188418, -7.66199834, -7.909293057, -7.140053744, -7.69461561, -7.61127608, -7.609317144, -7.676345813, -7.442048806, -6.889240873, -7.01578024, -6.739977759, -6.343326096, -7.512318211, -7.208268722, -8.738805604, -7.674225116, -6.84400147, -7.327854327, -7.026796232, -7.774664564, -6.411138639, -7.12508158, -7.005759471, -7.495784576, -7.013213532, -6.696171152, -7.51210646, -7.426193083, -7.712678898, -6.778266107, -6.037518026, -6.444658737, -7.360107818, -7.116558232, -6.936213233, -7.540902482, -7.29933515, -6.978135788, -6.67765147, -6.787023889, -7.163589494, -7.370644906, -7.166816169, -7.169689911, -7.13682845, -6.235761119, -7.315946888, -6.091498378, -6.056760472, -6.610829005, -6.837051595, -8.060709456, -6.300175766, -7.658823824, -7.187012746, -7.47075353, -6.506730089, -7.164059799, -7.476729, -7.27451676, -7.426577877, -7.055273111, -6.960161422, -6.673937263, -7.15605737, -7.209030538, -7.484012185, -7.302367843, -7.377974572, -6.637610761, -7.509141535, -6.720317155, -6.811599044, -6.256123162, -7.469476157, -7.060211004, -7.458189885, -6.274132496, -7.538356229, -7.140037568, -6.452157182, -7.292355941, -7.828866231, -7.298502658, -6.64262889, -7.296607107, -7.144139578, -7.687928406, -6.53613099, -8.72135636, -8.250207694, -7.39152058, -7.096835365, -7.237245265, -6.852813627, -6.969528194, -7.887224278, -8.362884001, -8.427834847, -7.702648085, -7.317753124, -6.642837705, -7.71540061, -6.753506353, -7.123676716, -7.222405507, -6.976296562, -6.883802483, -7.462588786, -6.522802784, -7.27871749, -6.864798242, -7.475108183, -7.147921143, -6.560575584, -7.586991497, -7.463393005, -7.569893993, -8.01087957, -7.811661264, -7.169513932, -7.414348261, -7.227113647, -7.40248886, -6.970182284, -6.465908236, -7.026707331, -7.414395775, -6.665590515, -7.761983309, -7.545518871, -7.059307206, -7.129974216, -6.805360177, -8.084369584, -7.891900959, -7.690684844, -7.876028059, -8.136392873, -7.745649453, -7.283185493, -7.670475429, -6.598218631, -7.025355483, -7.054631603, -7.132771506, -7.703858194, -6.595003697, -7.3898213, -7.261467582, -7.195074814, -7.636323532, -7.475392952, -7.51519536, -6.836676648, -6.822391726, -7.477272021, -7.352957791, -6.03016305, -6.867189915, -6.826647621, -7.401906999, -7.906248091, -8.710237811, -8.583001394, -6.944290025, -6.836731971, -7.642187879, -7.451212877, -7.772890572, -7.25112652, -6.780354226, -7.230736884, -7.021335725, -7.672467511, -7.846870688, -7.046703975, -6.726177106, -7.202356765, -6.970584641, -8.605602969, -8.702212, -7.097073765, -7.225325166, -6.597251142, -7.445719261, -8.619409282, -7.425040108, -6.462557465, -6.723050562, -7.27977624, -8.451558977, -8.582389784, -5.963549483, -6.587154842, -6.766358105, -7.205443922, -7.286996117, -6.706961539, -6.977344974, -7.201535097, -6.509475417, -7.883276029, -8.342377921, -8.534717044, -6.343657022, -6.737987682, -7.771149247, -7.008725688, -7.117508366, -5.946480934, -8.058690279, -7.929389294, -8.246011923, -7.019803781, -7.325201544, -7.44538638, -6.411909529, -7.094610929, -6.436219204, -7.474562703, -6.705656172, -6.979609139, -7.697266517, -7.543472635, -7.619370767, -7.247950731, -6.406082266, -7.549178411, -6.275988129, -7.104906631, -7.105259024, -7.788119571, -6.896294713, -6.993871171, -8.193523365, -7.124987825, -7.705418637, -5.846533071, -6.540347005, -6.598072529, -6.623083788, -7.655038286, -7.262987017, -7.70900843, -8.057624529, -7.983699346, -7.345856136, -7.24955888, -7.5172879, -7.925797944, -6.974071171, -6.807752506, -6.922446766, -7.403952382, -6.723164003, -6.78672702, -8.211243929, -6.755427937, -7.471630462, -7.411140666, -7.049077133, -6.594320405, -7.120464597, -7.464704301, -7.596984821, -7.389759101, -7.353851324, -6.952181761, -6.698893298, -6.498491219, -7.426308622, -6.924249366, -7.241243121, -7.038242987, -6.916999973, -6.494975138, -7.204822057, -8.050722423, -6.926680355, -8.552675533, -8.598188405, -7.261571869, -7.299518879, -7.75200241, -7.316599968, -7.314823586, -6.689687886, -7.22167515, -8.738805604, -7.049163689, -7.422217754, -7.064161075, -7.097028344, -6.788069846, -7.060508429, -7.513713864, -7.209360698, -7.384114958, -5.899017065, -6.954215432, -6.816474124, -8.417613213, -8.706767667, -7.401509146, -6.754511044, -5.617621859, -6.776092419, -7.542785603, -6.910035155, -7.733522632, -6.853409064, -7.251643134, -7.504182411, -7.139504225, -7.523518268, -7.605615473, -6.509136083, -7.634326865, -7.227653406, -7.627077645, -7.12367805, -7.450466995, -7.102255335, -7.079831289, -7.389176213, -6.591856209, -6.516668437, -7.440063634, -7.13206055, -6.747255975, -6.507333607, -7.851140611, -7.502579537, -7.071697066, -6.934874651, -6.865369968, -7.30176277, -7.137020261, -7.135847708, -7.319627235, -7.707050307, -8.080480427, -7.753217843, -8.013668928, -8.526105191, -6.590117929, -7.18386461, -7.532437534, -7.171889687, -6.805557037, -7.787886598, -7.214555216, -7.199875703, -7.749800977, -7.09511421, -7.514194867, -6.976953571, -7.481388656, -7.16578645, -7.758117647, -8.271105327, -8.1390995, -7.893253519, -6.685489142, -7.881902825, -6.929763277, -6.758023778, -7.446882202, -6.50330277, -6.889556486, -6.87651726, -7.009976064, -7.037127594, -7.129835593, -6.575075094, -7.228584161, -7.132551599, -7.526509502, -7.617182053, -7.287799079, -6.603777742, -6.824810713, -6.569366741, -7.095105581, -6.373620092, -7.145236884, -7.307353732, -7.154318996, -7.478830912, -6.994911916, -7.349816543, -7.922267845, -6.942692094, -7.078424394, -6.745993442, -6.341595888, -7.054911084, -7.293140652, -6.605955718, -7.131640067, -7.670232215, -6.815890979, -7.305734344, -6.986436706, -7.214091754, -7.176466695, -6.929273735, -7.249082756, -7.249915739, -8.165698575, -7.589043144, -7.729001032, -7.683484829, -7.402540181, -6.667368253, -6.734510391, -7.003399291, -6.634971906, -6.671210127, -7.1223181, -6.543275022, -7.319071922, -7.96833504, -7.030205254, -6.817998506, -7.447781652, -7.898567714, -8.081974498, -7.706795092, -7.141848438, -7.474558185, -7.321020907, -7.143132405, -6.612759535, -6.824702839, -7.810397858, -7.820731332, -7.23803711, -7.581197509, -7.035929172, -6.89883872, -6.801372016, -7.141470881, -7.105257411, -7.00919839, -6.77731801, -7.600651233, -7.574999327, -7.078101825, -7.289522142, -7.798460477, -8.008505587, -7.213454583, -6.293444586, -6.895044002, -7.066944251, -6.980290132, -7.397865741, -6.191366074, -8.738805604, -6.87896486, -7.33160478, -7.44288346, -7.411000562, -7.084884506, -7.125793384, -7.291986892, -7.614690773, -7.105724647, -7.459206865, -8.738805604, -6.841644889, -7.273162958, -7.62189592, -7.64559146, -7.515874109, -7.063906682, -8.490229765, -8.490129049, -8.703034915, -8.738805604, -8.653671398, -8.704875513, -8.651470034, -6.963803501, -7.353072093, -7.368482966, -7.405275331, -7.450175934, -6.46037167, -6.609037818, -8.657472797, -8.47988832, -7.361713896, -7.240852262, -7.100969604, -6.864900058, -6.751438574, -7.584102101, -7.029582586, -7.176854235, -7.911594598, -7.678774555, -7.004772534, -7.309554972, -6.662052174, -6.220277097, -7.456705342, -7.778083307, -8.147058883, -6.978202, -6.920408338, -7.04555814, -7.751199439, -6.75319804, -7.268194866, -7.206682511, -6.587692492, -6.872576519, -7.21303222, -7.868582646, -7.250593926, -7.554152235, -7.037722028, -7.10922764, -6.441860728, -7.1619514, -7.351655216, -6.739134797, -6.497555514, -6.676034977, -7.105709368, -8.250285518, -6.61578017, -7.264067226, -8.206932626, -7.413253912, -6.94566506, -7.668469957, -6.903818088, -7.06330613, -6.595781251, -7.52937438, -8.089860604, -8.475942685, -7.727608429, -7.405058614, -6.918374099, -7.556206217, -7.646771672, -6.492692352, -6.606481545, -6.744699236, -6.938107086, -6.336012796, -7.238420577, -7.160873417, -7.191211458, -7.507707906, -6.879295852, -7.380683032, -6.883738782, -7.506217451, -6.872406056, -7.582338958, -7.014474931, -7.20566424, -7.444101379, -7.1013672, -6.61498578, -6.847458046, -6.832797749, -6.525744706, -7.243659761, -7.577695848, -6.877762862, -6.739342516, -7.828365437, -6.451598061, -7.451077509, -7.092697613, -6.465854342, -7.298720658, -6.865112062, -7.525171714, -7.272064536, -7.154577373, -7.178205411, -7.252978318, -6.883498787, -7.500233495, -6.701013021, -7.04808578, -7.016076805, -6.730957873, -7.100739459, -7.543127969, -7.194069838, -6.973939862, -7.891346926, -7.143156141, -7.144122512, -6.378561862, -6.771327723, -7.314904016, -6.672975868, -6.793808064, -7.235514995, -7.19564749, -6.656277009, -7.190594583, -7.667488771, -6.97433404, -6.829398564, -7.127099758, -6.636411913, -7.288114567, -7.458134144, -7.162450884, -7.548537198, -7.256608163, -6.988183162, -6.46871162, -6.979663719, -6.903716803, -7.467290339, -7.097780306, -7.300521263, -7.269528705, -7.06890564, -7.698988954, -6.572507088, -6.468442106, -7.866772845, -6.767494212, -6.82864646, -7.132364267, -6.932121078, -6.92591, -6.973880207, -7.300705954, -7.523762416, -8.485245431, -6.234416469, -7.253619611, -6.782917455, -6.924996864, -7.573842172, -8.738805604, -8.585136491, -7.249697672, -7.228898229, -7.230787297, -6.721026744, -7.388373372, -6.684320212, -6.909417971, -6.490323984, -6.159312474, -6.31692217, -7.010940641, -6.7399472, -7.558552501, -6.32003584, -7.285580462, -7.185671429, -7.541777092, -6.67094918, -6.667107354, -6.762202023, -7.163368578, -6.948307827, -8.235368039, -7.34062075, -7.19206861, -7.042779901, -7.735262071, -7.048527394, -7.472712056, -6.958403479, -7.850745851, -7.768520268, -6.258434814, -7.114117254, -6.705934786, -6.648149338, -7.575448007, -6.647569612, -6.788622573, -6.612158475, -7.284686646, -6.748713235, -6.688720727, -7.016754344, -7.337939367, -7.738798311, -6.820970994, -7.233190996, -7.220080558, -7.69648171, -6.811441697, -8.155222585, -6.778301979, -7.490835665, -7.000887275, -8.031845288, -5.721777494, -6.145707557, -7.120564655, -6.734876151, -6.362235219, -6.996543583, -6.175232533, -7.135908871, -8.709787162, -6.780373836, -7.608424631, -8.347359768, -7.105578258, -5.91218424, -6.973596632, -6.507630032, -6.927114273, -7.666374744, -7.032593326, -7.365418177, -7.5501487, -5.960515783, -7.003195853, -7.250092531, -7.002878321, -7.562649988, -6.99342158, -7.104614603, -6.361137669, -5.962673951, -6.794886139, -7.685619283, -6.634676834, -6.650072512, -6.640899262, -7.168381741, -7.002925318, -7.692275562, -6.651940366, -7.331801468, -7.88060993, -7.830758207, -7.660567388, -7.283503741, -7.083024026, -6.382452435, -6.781191243, -6.943321708, -6.162576665, -6.794374462, -5.952686565, -6.998457742, -6.591900224, -6.925882506, -5.784749213, -7.296734784, -7.403291722, -6.670967666, -6.715038279, -7.14996399, -7.246601142, -6.968287386, -6.156232463, -6.163872815, -7.179837659, -6.700396726, -6.920723131, -8.69135755]}, {"log_prior": -0.683612822, "feature_log_probs": [-5.479331912, -6.36285067, -6.854982574, -7.258040133, -6.969040153, -7.173406524, -7.363372596, -6.940217562, -7.568051221, -7.568352388, -7.398092696, -7.680973165, -6.579937884, -7.226174234, -8.139703826, -7.993196896, -8.006556801, -7.586316526, -7.507979459, -7.746522264, -7.729999863, -7.628092582, -7.228679731, -7.303611891, -7.090687873, -6.905343127, -7.206600611, -6.881129515, -6.738301024, -7.005780684, -7.568414391, -7.660590312, -7.891280516, -7.455548768, -7.045223892, -7.850841985, -7.794423848, -7.88214141, -7.947888921, -6.767092, -7.32666442, -7.850925821, -7.83569767, -7.704512799, -7.964926801, -7.163872919, -6.814975407, -6.891854745, -7.345271507, -7.473941737, -7.506383479, -7.604062599, -7.66185296, -6.710364676, -7.158030287, -6.172060649, -7.283542955, -7.741861813, -7.237669267, -7.557827527, -7.906955052, -7.620107175, -7.7491767, -6.958590611, -7.47664437, -7.368927758, -7.177246436, -7.592761773, -7.529894848, -7.239081806, -7.402880058, -8.736861732, -7.503591479, -7.419650791, -6.848286881, -6.331041392, -8.438120043, -7.452802244, -7.514730708, -6.330960336, -6.548499168, -6.722348214, -7.337018802, -7.582362516, -7.916267515, -7.298391644, -7.56951993, -7.544339033, -7.897433998, -7.433825792, -7.179297948, -7.405458642, -7.325621532, -7.181694005, -8.550776511, -6.956206457, -7.576285193, -6.040087025, -6.124176412, -7.834601346, -7.621498308, -7.555186527, -7.574222321, -7.54365475, -8.471341715, -6.266785874, -6.609274929, -7.216943758, -7.827205717, -7.33968002, -6.953606505, -7.290362639, -7.277192312, -7.721615118, -6.859801173, -7.156209287, -7.858117527, -7.011572855, -7.724106597, -7.495343995, -7.774022215, -7.747856489, -7.146029144, -6.448269097, -7.383708624, -7.032265115, -7.10333221, -6.703711479, -7.015649093, -7.979360644, -6.697761392, -7.736068727, -7.402284631, -6.726985881, -7.342335241, -7.710809894, -7.724397981, -8.4854526, -7.220504836, -7.867263279, -7.483628792, -7.449235653, -6.998418045, -6.723438885, -6.66387988, -6.634866758, -7.576821453, -6.176286894, -7.104137271, -8.459134159, -8.613306513, -6.839489254, -7.400383437, -7.661645203, -7.231372695, -6.774502709, -7.380829192, -8.342573251, -7.644335396, -7.929904552, -6.768129721, -7.856497983, -7.766299991, -7.858180083, -7.334997908, -7.560418358, -7.063594264, -7.083124431, -7.836138278, -7.354232162, -6.450413157, -7.475497075, -5.794120118, -6.271702457, -6.556878194, -6.104516965, -7.419715126, -5.859576565, -6.496774535, -5.767935238, -6.040194002, -6.850160441, -7.070540345, -7.470235699, -7.3022259, -8.735539097, -7.952910886, -7.138615126, -7.326520762, -6.376330972, -7.718530069, -7.495647226, -7.790641152, -8.009541205, -6.826295602, -7.111897884, -6.251052675, -7.798711712, -6.506926124, -7.261793633, -7.290738529, -7.784497333, -7.329481305, -7.628943603, -7.847256476, -7.607427842, -6.897710511, -7.612310219, -7.125555577, -7.519928948, -7.425983513, -7.074120499, -7.254424198, -7.271878556, -6.949066372, -7.844711893, -7.410636315, -6.209553569, -5.45975781, -7.60251919, -7.690362902, -7.07352332, -7.856872957, -7.449714007, -7.909348573, -7.622860309, -6.980882736, -7.036567269, -6.996912492, -7.532818467, -7.585661688, -8.042240194, -6.801803684, -7.033798556, -7.206454439, -7.558191385, -7.92165795, -6.765450809, -7.472123325, -6.799263308, -7.273622635, -6.65237369, -6.558325163, -6.004595032, -7.330406996, -7.673742451, -7.606425773, -7.73596936, -7.521221468, -8.397504682, -7.935016283, -7.216563018, -6.826840925, -7.123919657, -8.343364821, -6.920559633, -7.55727029, -6.311812965, -7.58254392, -7.095940078, -7.256759784, -7.052582228, -8.162083985, -6.325500494, -6.253462251, -6.751542593, -7.891628369, -6.62878698, -6.866450847, -7.027566659, -7.17146777, -6.672703303, -7.449996036, -7.069533215, -7.379636516, -7.568916845, -6.704299593, -6.953646393, -7.784365986, -7.986735837, -7.01839609, -7.214028872, -7.411072683, -7.379476312, -7.66485289, -6.322133698, -7.966534634, -7.47907468, -7.788233851, -6.727799555, -6.851047147, -6.494313784, -6.859291547, -7.973427424, -6.78148132, -7.22815339, -7.280490681, -7.228332457, -7.432619429, -7.46238401, -7.294463775, -7.76908067, -7.447457434, -7.824504497, -7.922205428, -6.651647461, -8.24466422, -7.144010367, -7.634186313, -6.970580175, -7.882367158, -6.888907205, -7.364917185, -7.438949933, -7.38487443, -7.610827108, -7.910741349, -7.774005611, -6.920308086, -6.57016991, -6.436737824, -6.851972128, -6.91723162, -7.527727833, -8.25203601, -6.961311125, -7.225159488, -7.533162901, -7.594568409, -7.577256036, -7.216948038, -8.257859551, -7.399042631, -7.498374026, -6.869172218, -6.822248787, -8.886154207, -6.964882648, -7.14609518, -6.109459662, -7.19142649, -8.127680687, -7.277467548, -7.62407789, -7.633610241, -7.285400434, -7.267666593, -7.461964727, -7.739572665, -6.973633026, -7.222547787, -6.927037883, -7.670495332, -6.87288472, -7.581420306, -7.825222737, -7.541748072, -7.803074996, -8.154602054, -7.575314455, -7.559825808, -7.660246, -8.472493277, -6.581096609, -7.919559158, -8.713709022, -8.125724016, -7.735907431, -7.474549738, -7.773250472, -7.348069304, -7.673286321, -6.707618907, -7.042505551, -8.1887798, -4.760147579, -7.912622765, -8.100621126, -7.427837595, -6.726251939, -7.761480991, -7.617187555, -6.871989202, -7.37446862, -7.068450494, -7.173731679, -7.35990997, -7.073733996, -6.783235874, -7.043123048, -7.472083874, -7.43543023, -7.365114054, -7.20995247, -7.61255371, -7.400250187, -7.418991608, -7.098506946, -7.149448012, -6.266640466, -6.846881497, -7.661217166, -7.681812482, -8.163585777, -8.314267518, -7.592346811, -7.399612138, -7.242458594, -7.138689315, -7.19808402, -8.029264624, -6.857807697, -7.039585443, -7.877789299, -8.844679306, -8.044901782, -7.606557679, -7.996964634, -8.3587661, -7.654495843, -7.472692567, -7.222566337, -6.55740909, -7.17653127, -7.278911484, -6.683162746, -7.440457938, -7.958418563, -7.488745941, -7.584955517, -7.114799231, -6.982176916, -6.917931079, -7.48721157, -7.354035284, -7.428944701, -8.014180999, -7.043026334, -7.898581183, -7.442023524, -6.932340862, -7.253323024, -7.656851791, -8.329492148, -6.628702333, -6.915335018, -7.733151053, -7.431128164, -7.693990559, -7.983980527, -8.145920329, -7.278601277, -7.615547559, -7.179207642, -6.846460167, -7.581697505, -8.603106712, -7.800010459, -8.796426839, -7.411190539, -7.24866493, -7.653229985, -7.470566867, -6.894586108, -7.146066807, -7.649967136, -7.489558481, -7.192055535, -7.54513879, -7.421006828, -6.514993175, -7.695578309, -6.399504839, -7.174216884, -7.021793492, -6.435322725, -7.784436062, -6.837902929, -7.380064043, -7.574506683, -7.045160385, -6.807247702, -7.803927929, -7.523032402, -7.107528829, -6.534461101, -7.6092998, -6.988477068, -7.504249837, -7.79968012, -7.388820817, -7.676764602, -7.677069245, -7.531918019, -7.106982101, -7.599171737, -6.916232855, -7.574712704, -7.840645426, -7.628291901, -7.882104669, -7.512662205, -6.590826478, -7.480987952, -7.530920331, -6.320905603, -6.549299847, -7.455542524, -7.659308141, -7.508482845, -7.366786002, -7.412732644, -7.533300271, -5.023584584, -6.499380882, -5.293857016, -7.685668711, -7.555806612, -7.404202233, -7.260701328, -5.362461004, -7.541426785, -6.050973386, -5.001567213, -8.612917572, -7.191278702, -7.958268072, -7.458180879, -7.035762379, -7.535437673, -8.594288459, -7.86437475, -8.06572286, -7.249050202, -6.943252492, -7.610842067, -7.078737295, -7.566921892, -7.467121297, -6.821889687, -5.864635105, -6.787843673, -7.258650353, -7.310846768, -7.450508774, -7.556192502, -7.543125871, -7.501500241, -7.620239072, -6.590224159, -6.77809061, -7.531876324, -7.860849879, -7.048179491, -6.854645193, -7.596376768, -7.787714282, -7.377277123, -7.775927094, -6.844471222, -6.305206156, -5.882057068, -6.799788588, -6.579905062, -5.886517222, -7.42050871, -8.684900312, -7.164823893, -7.284000705, -7.102839049, -7.758068944, -7.337873755, -6.954241084, -7.305214487, -7.521231366, -8.371649434, -7.518195543, -7.926519696, -7.154757667, -7.263167378, -7.17322016, -7.295104037, -7.670230434, -6.379015962, -7.759641013, -7.189362222, -7.604066034, -5.863809114, -5.748518397, -5.784203122, -8.261126492, -6.826401371, -7.656522965, -7.416253391, -7.094451801, -7.202895607, -7.177538677, -7.465206793, -6.355843007, -7.093327263, -7.337765225, -7.474961689, -7.214563312, -7.699581201, -7.839205556, -6.445686748, -7.257469776, -7.273917272, -7.406194933, -7.177575325, -6.721424344, -7.215309882, -8.223642146, -6.819620529, -7.084901809, -7.585837139, -7.265737978, -8.001901482, -6.785851664, -7.679130201, -6.79259126, -7.836999831, -7.358511994, -7.18829299, -8.124245026, -8.076877288, -6.854964158, -7.288000894, -6.742022692, -6.808217774, -6.881246964, -6.481979994, -7.325237039, -7.366795862, -6.423308488, -6.407285219, -7.097804462, -6.455029505, -6.988230141, -6.293161493, -7.222798555, -6.498717367, -6.337599114, -7.130615821, -6.625936372, -7.684834988, -6.604254368, -7.65715295, -7.15429902, -7.620387408, -7.557744803, -7.464669753, -6.553059586, -7.310126263, -7.539757944, -6.542989198, -6.801554174, -6.920431004, -8.24195273, -7.686901746, -6.985897036, -6.857057434, -7.423497021, -5.991673429, -7.150943406, -6.830696182, -7.819789718, -7.3580534, -6.586098254, -7.219360884, -7.325445364, -6.945718486, -7.622767293, -5.255725817, -7.08439438, -6.480611514, -7.54596595, -7.380215571, -7.258702594, -7.879505098, -6.747227093, -7.490210678, -6.705387947, -8.235542393, -7.529328235, -7.45176899, -8.343431235, -8.146335509, -7.98000969, -7.731892684, -7.659225386, -7.076445681, -7.925582333, -5.756979519, -7.413203244, -8.030330938, -7.394869294, -7.009513839, -8.019977067, -7.556304809, -7.999011621, -5.814020982, -6.270731188, -7.002859511, -6.573810992, -5.90029997, -7.10574776, -7.902348758, -7.72377092, -7.135940659, -8.134580695, -7.067072422, -6.340213539, -6.871671443, -7.23319021, -7.253052726, -7.901010601, -6.986367785, -8.42927085, -7.994938855, -7.918743287, -7.153106445, -7.110241535, -7.56459491, -6.300966093, -7.15983988, -7.090321853, -6.487741176, -6.848180854, -7.105321689, -7.718783983, -5.398067957, -7.092073623, -7.515359029, -7.807748286, -8.813028415, -7.379092076, -7.754916726, -7.10585089, -7.38800816, -7.182645412, -7.424541998, -6.565049917, -7.095103987, -8.005552483, -7.633565744, -6.548117474, -7.587559037, -7.133434174, -6.735225732, -7.539739372, -8.131347449, -6.681522084, -7.379737045, -7.500946631, -6.889665061, -7.012700529, -7.377072186, -6.986904077, -7.519523388, -7.417359438, -7.22026581, -8.348745909, -7.464932903, -7.215219048, -7.457361903, -6.946486252, -6.493575721, -6.312624743, -6.472266756, -6.96632692, -7.816906816, -8.339362032, -6.770494813, -8.176942231, -7.897931909, -6.783869827, -7.604093152, -7.483680304, -7.193869508, -7.666083685, -7.212645129, -6.86865543, -7.753515812, -6.203875124, -6.775849651, -6.590048969, -6.997668874, -8.404019334, -5.908496572, -7.508258209, -7.577875036, -7.969099096, -7.094969969, -7.068511253, -7.293190923, -7.622822484, -7.794874557, -7.905633084, -7.598877314, -6.556137836, -7.254314101, -6.661530765, -6.919928576, -6.924244913, -7.481903785, -7.585415092, -8.36022588, -8.126284751, -7.497219235, -7.000236811, -7.418901454, -6.994433539, -7.570930106, -7.27419523, -7.520298706, -7.060278339, -6.9547618, -7.897788295, -7.81582477, -7.037179883, -7.203565064, -8.179161008, -6.779766498, -7.41414743, -8.032599854, -8.871626781, -7.695955726, -7.731489317, -7.183262646, -7.804416619, -7.644315606, -7.424262992, -7.384770968, -5.694796746, -7.192405935, -5.639471251, -7.48177359, -7.653027169, -6.490767482, -7.190501131, -6.935455792, -7.107233022, -6.548272775, -7.546201698, -8.054400588, -7.996627061, -7.434583477, -6.990690624, -7.288500594, -6.678390969, -6.777203566, -5.606521012, -4.728943923, -7.564952616, -6.902970119, -7.653459985, -7.567390003, -8.446917995, -6.605436034, -7.693306683, -6.440687768, -7.280850838, -7.604145308, -7.463952563, -7.066611393, -7.298948481, -7.325911356, -7.712618743, -7.309667291, -7.567440831, -7.985019667, -7.453677428, -7.368449974, -7.382464727, -6.32320331, -6.353076549, -7.528757907, -7.581626365, -6.95254389, -7.890449301, -7.396062692, -4.870042553, -7.560214001, -6.781507077, -7.100592931, -7.214196758, -7.432454107, -7.534744324, -7.575625303, -6.828902911, -7.078569003, -7.181801654, -7.3822098, -7.665065881, -7.714766262, -6.938281947, -7.045810257, -7.612119725, -7.532361776, -7.544220755, -7.578975899, -7.468113516, -5.336418748, -5.728240708, -6.955125913, -6.650898764, -6.969088629, -6.233007593, -6.811343411, -6.65952643, -7.596336765, -7.36943052, -7.283674114, -7.572882798, -7.039840774, -8.245958369, -6.509044568, -6.285427965, -7.673144247, -8.069183738, -7.509661525, -7.354708211, -7.615126226, -7.046857742, -7.921020243, -6.808891401, -7.005869008, -7.328787957, -7.79277717, -7.157720143, -8.348294036, -6.353189845, -6.914023915, -6.858858818, -6.837305264, -6.80509813, -7.683791478, -7.728615649, -8.582076754, -6.956632062, -7.475161719, -6.875697432, -7.231476103, -7.680371226, -7.595953359, -6.397871405, -6.318637824, -6.403818729, -7.16563171, -7.436820886, -6.623391381, -7.660143683, -7.487753362, -7.068080699, -8.275007194, -7.190243261, -8.500841549, -7.103621891, -6.9992709, -7.43441095, -7.051025508, -7.979726297, -7.114542269, -7.545799754, -7.061452268, -8.377881861, -7.60290747, -6.174081837, -6.72651388, -6.668580659, -6.54016423, -7.66197768, -7.281417274, -7.768579908, -7.416497589, -7.214199476, -8.770541919, -6.813074816, -6.916618609, -6.964600164, -7.808865451, -7.347733525, -8.634228681, -8.831256741, -6.854431636, -7.421125391, -7.832834217, -7.52800983, -7.046442269, -7.930423435, -7.464156341, -7.086269137, -7.349221529, -7.216560881, -7.486724544, -7.268709197, -6.603397257, -6.746498775, -7.361589256, -7.246713279, -7.31801282, -8.024973142, -8.867963457, -6.769929218, -7.381509884, -7.504981846, -6.981531933, -7.794475707, -8.026412887, -6.416560206, -7.672186387, -7.364986973, -7.831943164, -7.926317437, -7.25439756, -6.986207957, -6.481356774, -7.803606118, -7.520077233, -8.350521788, -7.222876369, -7.341303569, -7.38474501, -8.418159103, -6.356740728, -7.728189491, -7.450091859, -6.856638541, -7.028764811, -7.448792471, -6.378657258, -6.885721333, -7.894113194, -7.152251458, -7.097739381, -7.69772625, -6.796370558, -7.483258592, -7.781757553, -7.619924989, -6.89063192, -7.1548532, -6.737192613, -7.323488682, -7.688272569, -7.805922828, -8.156240924, -7.448943322, -7.981164908, -7.590030424, -7.557381742, -7.418960838, -7.417426607, -7.56385282, -7.815366349, -6.833562438, -7.473418117, -6.781442043, -7.115782868, -7.711224281, -7.673841466, -7.459078642, -7.267756301, -7.159044137, -7.627756329, -7.876911757, -5.806050231, -6.616846421, -7.239667618, -7.032249616, -7.112059805, -7.311120491, -8.175375716, -5.876968395, -5.529346322, -7.65293929, -6.551222478, -7.140712948, -7.993089878, -7.64501277, -8.116614604, -8.179586571, -7.203039925, -6.634264242, -6.586226062, -7.479584241, -7.469226452, -7.205908708, -6.952411998, -7.016603716, -7.679240384, -6.929047785, -6.807985571, -6.768039451, -7.191795003, -7.756087937, -7.843571287, -6.928065359, -6.900995554, -7.125045643, -7.642988149, -7.454545974, -7.312510209, -7.698859189, -8.211029553, -7.305934631, -7.716026862, -7.712040776, -7.813484647, -7.430829114, -7.806027472, -7.388027142, -7.378938766, -7.238360396, -7.277779273, -7.601237252, -7.393975933, -7.37839634, -7.549081507, -7.244840493, -6.998858779, -7.229651614, -7.886176867, -7.749726144, -6.631842908, -7.425797654, -6.171058064, -7.528727668, -7.529759936, -8.081754554, -6.872620839, -6.450304948, -6.832052639, -8.219201644, -8.14839809, -7.951365325, -8.111576486, -7.00607265, -7.076295935, -7.116803719, -6.107048328, -6.814447402, -6.793885268, -7.701063985, -6.437781091, -8.16723061, -7.87979578, -7.222430902, -7.607921485, -8.421655628, -7.556838279, -7.467423222, -6.125280879, -7.243901675, -7.39211751, -7.83279553, -7.353408947, -7.486294779, -7.751199776, -7.296306487, -6.415118963, -7.25298021, -7.043133778, -8.222849832, -7.121183501, -7.069690354, -7.356713688, -7.269005235, -6.927598804, -7.36363341, -7.754575264, -8.833752389, -8.691516638, -7.292771811, -7.705305643, -7.854202536, -7.867094705, -7.178111368, -7.899640755, -8.352784613, -7.400777887, -6.351815044, -7.532254044, -6.945819679, -7.320810531, -6.854143418, -6.692621388, -7.528017227, -7.630080511, -7.768981672, -7.670473773, -7.453028535, -7.522966256, -5.638620619, -5.798460352, -7.605588924, -6.210312558, -7.173243096, -6.655637887]}], "model_type": "nb", "positive_class_label": "real_estate", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"way": [1161, 1.60038409], "housing": [523, 2.224806891], "prices": [836, 2.436115985], "stock": [1037, 3.089804329], "black": [153, 3.361738044], "fall": [397, 2.824696578], "23": [32, 3.486380489], "percent": [789, 2.533595699], "day": [289, 2.013259134], "fact": [393, 2.338837577], "rising": [935, 3.163912301], "goes": [469, 2.737304756], "news": [732, 2.758447193], "won": [1178, 2.490183206], "come": [232, 2.025504185], "form": [441, 2.741497634], "sales": [947, 2.704379971], "sellers": [970, 3.46883618], "try": [1113, 2.523408854], "buyers": [179, 2.557776497], "longer": [643, 2.619056929], "willing": [1174, 3.107822834], "pay": [784, 2.168762994], "process": [843, 2.247621569], "started": [1029, 2.442327185], "course": [270, 2.423808137], "let": [613, 2.222303761], "know": [583, 1.80853985], "wrong": [1192, 3.031984758], "piece": [799, 3.170343191], "evidence": [380, 3.209822002], "sense": [973, 2.586147194], "real": [882, 1.712478638], "estate": [375, 1.965725434], "mind": [694, 2.589750802], "players": [808, 3.857059481], "best": [143, 1.907493021], "seller": [969, 3.417977763], "000": [0, 1.907493021], "view": [1148, 2.724830582], "numbers": [743, 2.993412483], "point": [810, 2.173513597], "average": [123, 2.523408854], "country": [267, 2.540445041], "look": [644, 1.931501561], "comes": [233, 2.257930939], "united": [1126, 3.095774496], "states": [1032, 2.704379971], "really": [884, 2.091275499], "countries": [266, 3.598647791], "middle": [691, 2.951078119], "easy": [350, 2.344471395], "build": [170, 2.347300251], "houses": [522, 2.762729855], "demand": [305, 2.820140762], "areas": [106, 2.59699721], "don": [339, 1.664117566], "traditional": [1103, 3.089804329], "result": [922, 2.604296513], "cost": [263, 2.250188965], "construction": [257, 2.857182033], "high": [505, 1.87517423], "population": [816, 3.250923678], "land": [587, 2.688315369], "use": [1132, 1.645690397], "makes": [664, 2.234882543], "hard": [494, 2.364443528], "new": [731, 1.314045201], "spend": [1021, 2.84313028], "say": [951, 2.037901038], "mortgage": [705, 2.745708167], "rates": [876, 2.771350598], "built": [174, 2.417710557], "existing": [384, 2.925501277], "think": [1085, 1.963793066], "continue": [259, 2.758447193], "rise": [934, 2.900562329], "higher": [506, 2.311134975], "words": [1181, 2.945910149], "faster": [402, 3.377486401], "national": [717, 2.680378819], "50": [46, 2.554286092], "2005": [15, 3.713958638], "results": [923, 2.885892139], "26": [35, 3.369581222], "29": [38, 3.57903932], "york": [1197, 2.490183206], "san": [948, 3.144864106], "rents": [908, 3.083869593], "index": [545, 3.747860189], "owners": [768, 2.604296513], "rent": [903, 2.350137133], "27": [36, 3.513287942], "late": [595, 2.815605607], "2004": [14, 3.869962886], "business": [175, 2.161679139], "week": [1166, 2.589750802], "renting": [907, 3.522420426], "house": [520, 2.115694026], "40": [45, 2.820140762], "owning": [770, 3.504238107], "similar": [994, 2.47076512], "taking": [1064, 2.506658043], "account": [56, 2.905500611], "low": [655, 2.302971664], "mortgages": [706, 3.691979731], "buy": [177, 2.111209714], "believe": [138, 2.704379971], "big": [145, 2.14534272], "capital": [189, 2.708436772], "pretty": [832, 2.829273245], "end": [363, 1.864629317], "stop": [1038, 2.905500611], "sure": [1058, 2.183083048], "thing": [1083, 2.364443528], "happened": [491, 3.401583953], "soon": [1012, 2.802122256], "market": [673, 1.871646889], "began": [134, 2.998832551], "25": [34, 2.645423804], "right": [932, 1.826888989], "number": [742, 2.007192381], "single": [997, 2.289512511], "family": [399, 2.229832027], "condos": [253, 3.831741673], "past": [782, 2.333235322], "year": [1194, 1.647095878], "homes": [515, 2.219806881], "ago": [81, 2.56832141], "sold": [1010, 2.611649487], "cases": [195, 2.829273245], "weeks": [1167, 3.083869593], "los": [648, 3.569377409], "angeles": [93, 3.63905733], "times": [1089, 2.173513597], "hot": [517, 3.293787382], "markets": [675, 2.956272936], "economy": [353, 3.243955009], "economic": [351, 2.988021634], "ways": [1162, 2.442327185], "wouldn": [1188, 3.196488471], "spending": [1022, 3.257941251], "residential": [917, 2.833870955], "plus": [809, 3.043284313], "largely": [592, 3.330966386], "based": [130, 2.089084917], "did": [321, 2.124723433], "personal": [795, 2.749936503], "rate": [875, 2.454866534], "starting": [1030, 2.9104634], "sound": [1014, 3.540939474], "air": [84, 3.393486743], "dream": [342, 3.434644815], "home": [513, 1.739877612], "september": [975, 3.47756986], "28": [37, 3.495269437], "2016": [26, 2.8384899], "ve": [1145, 1.912982513], "bought": [160, 2.820140762], "issues": [569, 2.758447193], "july": [576, 3.522420426], "idea": [528, 2.461195669], "months": [704, 2.352982085], "thousands": [1088, 3.004282155], "repairs": [909, 3.426276565], "major": [661, 2.461195669], "led": [608, 3.072104752], "water": [1160, 3.009761621], "expensive": [388, 2.700339562], "kitchen": [581, 3.531637081], "need": [724, 1.627596653], "close": [227, 2.630271999], "30": [39, 2.242506468], "make": [663, 1.455673804], "lives": [633, 2.885892139], "north": [738, 3.237034566], "spent": [1023, 2.96149488], "nearly": [722, 2.680378819], "10": [1, 1.842156461], "including": [539, 2.023452902], "month": [702, 2.319365474], "purchased": [862, 3.57903932], "life": [618, 2.207415149], "completely": [247, 3.107822834], "moved": [709, 3.083869593], "years": [1195, 1.593695102], "later": [596, 2.433024792], "cause": [197, 3.265008418], "credit": [276, 2.900562329], "maintenance": [660, 3.32341918], "costs": [264, 2.461195669], "add": [65, 2.586147194], "quickly": [869, 2.688315369], "half": [487, 2.458026095], "homeowners": [514, 3.237034566], "according": [55, 2.14303058], "survey": [1059, 3.725131938], "plan": [802, 2.526792952], "uk": [1121, 3.691979731], "total": [1099, 2.728971375], "office": [749, 2.802122256], "problems": [842, 2.806596537], "create": [273, 2.373126651], "work": [1182, 1.697575232], "11": [3, 2.593367442], "billion": [151, 3.107822834], "fix": [428, 3.451594373], "report": [910, 2.704379971], "review": [929, 3.216556034], "government": [475, 2.653086677], "action": [59, 3.009761621], "canada": [187, 3.771117052], "british": [165, 3.670473526], "situation": [1000, 2.998832551], "want": [1153, 1.730660957], "hold": [511, 2.833870955], "mean": [678, 2.62651965], "involved": [565, 3.004282155], "legal": [610, 2.94076875], "things": [1084, 1.981320292], "consider": [255, 2.622781328], "going": [470, 1.878714057], "ll": [635, 2.003168231], "strong": [1044, 2.857182033], "likely": [620, 2.289512511], "problem": [841, 2.408633339], "insurance": [554, 3.301113422], "previous": [833, 2.9104634], "expenses": [387, 3.401583953], "depending": [308, 3.163912301], "long": [642, 1.736795945], "buying": [180, 2.399637776], "property": [853, 1.905669867], "professional": [847, 3.151173275], "general": [459, 2.684339221], "particular": [777, 2.890758329], "systems": [1060, 3.077969871], "agent": [79, 3.048982334], "sale": [946, 2.622781328], "bring": [164, 2.881049515], "generally": [460, 2.852476142], "happens": [492, 3.120018107], "couple": [269, 2.857182033], "closing": [228, 3.628800829], "earlier": [345, 2.915450942], "better": [144, 1.94656776], "buyer": [178, 3.037618576], "sign": [992, 2.833870955], "line": [623, 2.520036169], "ask": [110, 2.720706865], "central": [200, 3.216556034], "given": [464, 2.423808137], "building": [172, 2.149983099], "financial": [422, 2.523408854], "website": [1165, 2.925501277], "money": [701, 2.011232791], "ensure": [368, 3.183330387], "aren": [107, 2.767030936], "policy": [812, 3.048982334], "includes": [538, 2.956272936], "protection": [854, 3.598647791], "help": [502, 1.887618835], "light": [619, 2.972021293], "able": [53, 2.056789323], "cover": [272, 3.144864106], "fees": [411, 3.196488471], "partner": [779, 3.486380489], "law": [598, 2.733129385], "firm": [425, 3.031984758], "list": [626, 2.376037861], "projects": [851, 3.144864106], "correct": [262, 3.691979731], "needed": [725, 2.56832141], "associated": [116, 3.385454571], "local": [639, 2.292189888], "good": [472, 1.723044774], "case": [194, 2.209881241], "required": [913, 2.861910175], "known": [585, 2.520036169], "value": [1141, 2.178286876], "research": [915, 2.509985833], "place": [800, 1.952276624], "start": [1028, 2.104520725], "purchase": [861, 2.656940246], "agents": [80, 3.183330387], "complex": [248, 3.10178052], "offer": [746, 2.417710557], "michael": [689, 3.531637081], "association": [117, 3.077969871], "saw": [950, 3.077969871], "maybe": [677, 2.871434056], "issue": [568, 2.820140762], "kind": [580, 2.571861237], "moving": [711, 2.767030936], "claims": [220, 3.681168815], "owner": [767, 2.712510098], "commercial": [237, 3.015271277], "department": [307, 3.203133014], "possible": [820, 2.276232103], "claim": [219, 3.550329214], "requires": [914, 3.072104752], "court": [271, 3.257941251], "lawyer": [600, 3.736431494], "plans": [804, 3.031984758], "comment": [235, 3.393486743], "story": [1041, 2.604296513], "seen": [965, 2.516674822], "head": [497, 2.881049515], "facebook": [392, 3.401583953], "twitter": [1117, 3.32341918], "theme": [1081, 4.243476395], "london": [641, 3.353955904], "planning": [803, 3.066273831], "model": [697, 2.988021634], "project": [850, 2.762729855], "man": [666, 3.189887787], "global": [467, 3.151173275], "white": [1170, 3.203133014], "space": [1017, 2.54734162], "age": [77, 2.998832551], "provide": [855, 2.47076512], "apartments": [98, 3.015271277], "executive": [383, 3.417977763], "developer": [318, 3.495269437], "bit": [152, 2.737304756], "site": [998, 2.656940246], "base": [129, 3.628800829], "entire": [370, 2.780046305], "career": [192, 3.57903932], "old": [752, 2.281523121], "seven": [982, 2.982659691], "public": [859, 2.4207547], "series": [976, 3.066273831], "young": [1198, 2.972021293], "takes": [1063, 2.589750802], "ready": [881, 2.998832551], "making": [665, 2.050453504], "ground": [480, 3.353955904], "level": [614, 2.464375322], "doesn": [335, 2.138422277], "adding": [67, 3.176815706], "extra": [390, 3.031984758], "200": [13, 3.077969871], "affordable": [75, 2.94076875], "80": [50, 3.272125886], "2012": [22, 3.203133014], "38": [44, 4.039381038], "despite": [313, 2.871434056], "increased": [542, 3.054713009], "35": [43, 3.30849353], "world": [1186, 2.013259134], "trade": [1102, 3.540939474], "center": [199, 2.998832551], "city": [218, 2.149983099], "came": [184, 2.712510098], "original": [763, 3.048982334], "budget": [169, 3.401583953], "native": [718, 4.385126912], "20": [12, 2.104520725], "set": [980, 2.046251817], "history": [509, 2.754182794], "track": [1101, 3.272125886], "record": [892, 2.988021634], "recent": [890, 2.373126651], "book": [158, 2.935653649], "wanted": [1154, 2.815605607], "status": [1033, 3.513287942], "offers": [748, 2.820140762], "worked": [1183, 3.026382502], "post": [821, 2.557776497], "shows": [991, 2.920463483], "open": [756, 2.384822691], "lack": [586, 3.10178052], "product": [844, 3.120018107], "trying": [1114, 2.561279128], "rest": [921, 2.895648314], "happy": [493, 3.338570985], "investment": [561, 2.373126651], "got": [474, 2.493456532], "crisis": [277, 3.32341918], "thanks": [1080, 3.293787382], "advantage": [72, 3.157522503], "relationship": [898, 3.183330387], "china": [213, 3.759421012], "median": [682, 3.598647791], "income": [540, 2.448577205], "urban": [1131, 3.151173275], "compared": [244, 2.988021634], "tiny": [1090, 3.736431494], "data": [285, 2.33044592], "square": [1025, 2.951078119], "means": [680, 2.138422277], "area": [105, 2.245060748], "bigger": [146, 3.293787382], "english": [366, 3.759421012], "forward": [442, 3.209822002], "developers": [319, 3.020811457], "development": [320, 2.467565118], "party": [781, 3.144864106], "love": [654, 2.737304756], "million": [693, 2.286842282], "large": [591, 2.281523121], "lower": [656, 2.436115985], "simple": [995, 2.604296513], "american": [90, 2.820140762], "cities": [217, 2.754182794], "face": [391, 2.951078119], "poor": [814, 3.237034566], "class": [221, 2.966744236], "studies": [1047, 3.618648458], "rental": [904, 2.615346349], "normal": [737, 3.393486743], "paying": [785, 2.704379971], "increase": [541, 2.593367442], "mid": [690, 3.409747263], "range": [874, 2.94076875], "price": [834, 2.133835113], "pressure": [831, 3.301113422], "address": [70, 3.11390188], "directly": [329, 2.945910149], "owned": [766, 3.095774496], "residents": [918, 3.031984758], "live": [631, 2.183083048], "benefits": [141, 3.026382502], "approach": [102, 3.089804329], "supply": [1056, 3.157522503], "units": [1127, 2.881049515], "instead": [553, 2.260524974], "private": [839, 2.700339562], "recently": [891, 2.554286092], "500": [47, 2.754182794], "100": [2, 2.405625818], "free": [445, 2.30840646], "buildings": [173, 3.004282155], "eventually": [378, 2.993412483], "remain": [900, 3.237034566], "decades": [296, 3.060476714], "happen": [490, 3.020811457], "second": [959, 2.313870955], "apply": [101, 3.132363943], "governments": [476, 4.17071704], "charge": [210, 3.30849353], "great": [477, 2.052560986], "deal": [291, 2.445447312], "federal": [407, 3.157522503], "self": [967, 2.94076875], "significant": [993, 2.951078119], "revenue": [928, 3.47756986], "source": [1015, 3.031984758], "allow": [85, 2.660808723], "addition": [68, 2.96149488], "social": [1007, 2.716600083], "improve": [535, 3.126171973], "management": [668, 2.762729855], "non": [736, 2.771350598], "greater": [478, 3.043284313], "political": [813, 3.426276565], "voice": [1150, 4.086633923], "effective": [357, 3.377486401], "following": [435, 2.540445041], "success": [1052, 3.095774496], "fully": [448, 3.209822002], "size": [1001, 2.852476142], "provides": [857, 3.120018107], "goal": [468, 3.048982334], "decade": [295, 3.237034566], "successful": [1053, 3.183330387], "short": [989, 2.503341291], "version": [1146, 3.265008418], "program": [849, 3.196488471], "quite": [870, 2.895648314], "risk": [936, 2.767030936], "term": [1077, 2.417710557], "additional": [69, 2.857182033], "funds": [453, 3.361738044], "tax": [1067, 2.780046305], "companies": [242, 2.477196011], "used": [1133, 1.931501561], "paper": [775, 3.369581222], "prior": [838, 3.451594373], "avoid": [124, 2.900562329], "tenants": [1075, 2.733129385], "communities": [240, 3.504238107], "hope": [516, 3.230161686], "support": [1057, 2.700339562], "groups": [482, 3.330966386], "probably": [840, 2.442327185], "necessary": [723, 3.10178052], "scale": [953, 3.265008418], "needs": [726, 2.537014506], "option": [759, 3.020811457], "far": [400, 2.200053152], "health": [498, 3.216556034], "direct": [328, 3.279294375], "state": [1031, 2.396657148], "job": [572, 2.615346349], "today": [1093, 2.284179165], "brokers": [167, 3.937102189], "banks": [128, 3.426276565], "title": [1092, 3.401583953], "difficult": [326, 2.637819205], "annual": [95, 3.170343191], "event": [376, 3.401583953], "mobile": [696, 3.807049061], "software": [1009, 3.7949277], "finally": [420, 2.866660777], "beginning": [136, 3.132363943], "finance": [421, 3.30849353], "nature": [720, 3.361738044], "ownership": [769, 3.095774496], "game": [455, 3.126171973], "huge": [525, 2.885892139], "tell": [1072, 2.767030936], "questions": [867, 2.829273245], "difference": [323, 2.930564579], "save": [949, 2.951078119], "selling": [971, 2.688315369], "answer": [96, 3.107822834], "sell": [968, 2.373126651], "factor": [394, 3.434644815], "door": [340, 3.11390188], "exactly": [381, 3.004282155], "included": [537, 3.144864106], "does": [334, 2.005178282], "getting": [463, 2.257930939], "isn": [567, 2.433024792], "haven": [495, 3.315928508], "lived": [632, 3.361738044], "period": [793, 2.806596537], "important": [534, 2.190320715], "changed": [207, 3.203133014], "hands": [489, 3.237034566], "decide": [298, 3.151173275], "asking": [112, 3.157522503], "properties": [852, 2.202501134], "actually": [63, 2.270968933], "paid": [773, 2.688315369], "drop": [344, 3.346233858], "easier": [347, 2.890758329], "fast": [401, 3.126171973], "industry": [549, 2.676434041], "feel": [409, 2.402627315], "points": [811, 3.015271277], "hours": [519, 2.876230228], "south": [1016, 3.151173275], "east": [349, 3.301113422], "using": [1138, 2.06743905], "works": [1185, 2.684339221], "control": [261, 2.708436772], "search": [956, 2.915450942], "online": [755, 2.582556526], "listed": [627, 3.353955904], "outside": [764, 2.700339562], "inside": [551, 3.060476714], "council": [265, 3.486380489], "talk": [1065, 3.004282155], "small": [1004, 2.14303058], "energy": [364, 3.522420426], "performance": [792, 3.250923678], "wall": [1152, 3.417977763], "nice": [733, 3.286514623], "older": [753, 3.393486743], "room": [940, 2.806596537], "order": [761, 2.483668525], "useful": [1134, 3.504238107], "floor": [431, 3.330966386], "pain": [774, 4.009075689], "lead": [601, 2.871434056], "opportunity": [758, 2.993412483], "check": [211, 2.557776497], "links": [625, 3.540939474], "choose": [216, 2.885892139], "helps": [504, 3.095774496], "members": [685, 3.144864106], "follow": [434, 2.733129385], "author": [121, 3.257941251], "article": [109, 2.688315369], "looking": [646, 2.14303058], "living": [634, 2.426870927], "interested": [555, 3.183330387], "information": [550, 2.31661444], "available": [122, 2.414675654], "particularly": [778, 2.84313028], "debt": [294, 3.353955904], "levels": [615, 3.265008418], "growing": [484, 2.793233309], "terms": [1078, 2.704379971], "west": [1169, 3.209822002], "places": [801, 3.054713009], "rule": [941, 3.257941251], "miles": [692, 3.896280195], "town": [1100, 3.32341918], "oil": [751, 4.188416617], "production": [845, 3.7949277], "opportunities": [757, 3.513287942], "largest": [594, 3.004282155], "multiple": [715, 2.696315412], "options": [760, 2.876230228], "read": [879, 2.405625818], "early": [346, 2.56832141], "investor": [563, 3.203133014], "deals": [292, 3.293787382], "22": [31, 3.243955009], "held": [501, 3.272125886], "company": [243, 2.129268895], "platform": [805, 3.588795495], "gives": [465, 2.935653649], "investing": [560, 3.216556034], "gets": [462, 2.920463483], "wants": [1155, 3.077969871], "focus": [433, 2.876230228], "worth": [1187, 2.483668525], "2013": [23, 3.107822834], "didn": [322, 2.537014506], "lot": [652, 2.009210546], "invest": [559, 3.157522503], "helped": [503, 3.265008418], "learning": [604, 3.460178117], "common": [239, 2.433024792], "investors": [564, 2.62651965], "understanding": [1123, 3.346233858], "values": [1142, 2.972021293], "key": [579, 2.668590864], "include": [536, 2.516674822], "doing": [337, 2.352982085], "ideas": [529, 3.338570985], "quality": [865, 2.741497634], "connection": [254, 3.951088431], "win": [1175, 3.57903932], "quick": [868, 3.138594493], "send": [972, 3.451594373], "bad": [126, 2.607966242], "taken": [1062, 2.784422679], "looks": [647, 3.043284313], "transaction": [1106, 3.618648458], "turned": [1116, 3.10178052], "finding": [424, 2.956272936], "cash": [196, 2.676434041], "portfolio": [817, 3.443083684], "walk": [1151, 3.361738044], "away": [125, 2.319365474], "fee": [408, 3.451594373], "simply": [996, 2.523408854], "latest": [597, 3.209822002], "typically": [1120, 2.900562329], "require": [912, 2.935653649], "lender": [611, 3.994260603], "fair": [396, 3.47756986], "solution": [1011, 3.393486743], "highest": [507, 3.330966386], "having": [496, 2.219806881], "culture": [279, 3.628800829], "usually": [1139, 2.59699721], "medical": [683, 3.869962886], "field": [415, 3.377486401], "especially": [373, 2.433024792], "understand": [1122, 2.684339221], "critical": [278, 3.513287942], "role": [938, 3.157522503], "models": [698, 3.63905733], "person": [794, 2.451716925], "mother": [707, 3.909703215], "school": [954, 2.749936503], "currently": [281, 2.871434056], "working": [1184, 2.361565828], "true": [1110, 2.622781328], "potential": [823, 2.445447312], "raised": [873, 3.460178117], "international": [557, 3.203133014], "group": [481, 2.4207547], "develop": [316, 3.426276565], "education": [355, 3.63905733], "tools": [1097, 3.286514623], "change": [206, 2.175897388], "knowledge": [584, 3.30849353], "resources": [919, 3.353955904], "future": [454, 2.373126651], "decided": [299, 3.163912301], "design": [311, 2.9104634], "neighborhood": [727, 3.095774496], "considered": [256, 3.015271277], "park": [776, 3.243955009], "street": [1043, 2.977326345], "apartment": [97, 2.728971375], "african": [76, 4.779781104], "relatively": [899, 3.230161686], "foot": [437, 3.265008418], "12": [4, 2.387768201], "children": [212, 3.10178052], "art": [108, 3.659891417], "designed": [312, 3.066273831], "david": [288, 3.46883618], "section": [960, 3.230161686], "manhattan": [671, 3.736431494], "written": [1191, 2.998832551], "heard": [499, 3.30849353], "thought": [1087, 2.793233309], "university": [1128, 2.956272936], "priced": [835, 3.522420426], "ms": [713, 4.188416617], "bedroom": [133, 3.237034566], "june": [578, 3.176815706], "fund": [451, 3.393486743], "enjoy": [367, 3.272125886], "smaller": [1005, 3.077969871], "location": [640, 3.10178052], "different": [325, 2.001162212], "rich": [930, 3.338570985], "community": [241, 2.767030936], "mr": [712, 3.57903932], "remember": [902, 2.96149488], "days": [290, 2.373126651], "changing": [209, 3.089804329], "percentage": [790, 3.47756986], "2010": [20, 3.401583953], "31": [41, 3.608598122], "foreign": [440, 3.588795495], "feet": [412, 3.346233858], "details": [314, 3.132363943], "rights": [933, 3.361738044], "14": [6, 2.852476142], "16": [8, 2.9104634], "called": [182, 2.224806891], "little": [630, 2.102300969], "300": [40, 3.230161686], "15": [7, 2.405625818], "18": [10, 2.829273245], "2014": [24, 2.935653649], "multifamily": [714, 4.47609869], "access": [54, 2.712510098], "food": [436, 3.30849353], "century": [201, 3.46883618], "students": [1046, 3.844320456], "minutes": [695, 3.257941251], "commission": [238, 3.63905733], "setting": [981, 3.230161686], "drive": [343, 3.157522503], "guide": [486, 3.183330387], "biggerpockets": [147, 4.342567297], "blog": [155, 3.144864106], "january": [571, 3.369581222], "popular": [815, 2.935653649], "contract": [260, 3.713958638], "strategy": [1042, 3.077969871], "equity": [372, 3.223335721], "reason": [886, 2.554286092], "agreement": [82, 3.57903932], "profit": [848, 3.151173275], "parts": [780, 3.107822834], "separate": [974, 3.361738044], "activity": [61, 3.385454571], "skills": [1002, 3.725131938], "ability": [52, 2.829273245], "determine": [315, 3.417977763], "subject": [1051, 3.196488471], "limited": [622, 2.972021293], "funding": [452, 3.896280195], "net": [729, 3.132363943], "2009": [19, 3.460178117], "wealth": [1163, 3.377486401], "client": [225, 3.659891417], "en": [362, 4.576182148], "step": [1035, 2.881049515], "attorney": [119, 3.747860189], "stay": [1034, 2.900562329], "care": [191, 2.833870955], "described": [310, 3.361738044], "steps": [1036, 3.272125886], "effort": [359, 3.243955009], "decision": [300, 3.015271277], "dollars": [338, 3.144864106], "shift": [988, 3.559807958], "marketing": [674, 3.293787382], "learn": [602, 2.696315412], "challenge": [204, 3.409747263], "increasing": [544, 3.265008418], "default": [304, 3.713958638], "psychology": [858, 4.550206662], "effect": [356, 3.095774496], "current": [280, 2.448577205], "rules": [942, 2.84313028], "llc": [636, 4.500196241], "photo": [797, 3.819319153], "realtor": [885, 4.070633582], "reported": [911, 3.361738044], "red": [894, 3.417977763], "changes": [208, 2.775688999], "raise": [872, 3.338570985], "larger": [593, 3.015271277], "question": [866, 2.728971375], "reasons": [887, 2.977326345], "attention": [118, 3.10178052], "reading": [880, 3.250923678], "standard": [1027, 3.043284313], "francisco": [444, 3.385454571], "jobs": [573, 3.230161686], "primary": [837, 3.531637081], "grow": [483, 3.209822002], "growth": [485, 2.780046305], "ahead": [83, 3.170343191], "hundreds": [527, 3.338570985], "watch": [1159, 3.338570985], "2019": [29, 3.031984758], "coming": [234, 2.784422679], "seeing": [964, 3.272125886], "turn": [1115, 2.537014506], "renters": [906, 3.443083684], "wikipedia": [1173, 4.95567177], "2017": [27, 2.920463483], "2018": [28, 2.895648314], "household": [521, 3.759421012], "ratio": [877, 3.979661804], "21": [30, 3.265008418], "overall": [765, 2.998832551], "13": [5, 2.754182794], "biggest": [148, 2.84313028], "zillow": [1199, 3.883034968], "increases": [543, 3.361738044], "32": [42, 3.618648458], "19": [11, 3.257941251], "17": [9, 3.132363943], "investments": [562, 3.11390188], "24": [33, 3.043284313], "90": [51, 3.46883618], "california": [181, 3.293787382], "seattle": [958, 4.243476395], "highly": [508, 3.026382502], "present": [828, 3.237034566], "60": [48, 3.054713009], "county": [268, 3.608598122], "vancouver": [1143, 4.500196241], "washington": [1157, 3.550329214], "businesses": [176, 3.522420426], "example": [382, 2.122458426], "instance": [552, 3.361738044], "70": [49, 3.385454571], "tend": [1076, 3.189887787], "certainly": [203, 3.279294375], "tech": [1070, 3.257941251], "families": [398, 3.32341918], "meaning": [679, 3.272125886], "october": [745, 3.559807958], "clear": [223, 2.615346349], "monthly": [703, 3.361738044], "comments": [236, 3.540939474], "click": [224, 3.417977763], "style": [1050, 3.243955009], "color": [231, 3.965273066], "interesting": [556, 3.257941251], "developed": [317, 3.346233858], "received": [889, 3.257941251], "returns": [927, 3.443083684], "type": [1118, 2.696315412], "block": [154, 3.409747263], "content": [258, 3.223335721], "left": [609, 2.543887385], "allows": [87, 2.84313028], "position": [818, 3.286514623], "return": [926, 2.797667906], "object": [744, 4.206435123], "box": [161, 3.393486743], "table": [1061, 3.377486401], "break": [163, 3.265008418], "run": [943, 2.4207547], "related": [897, 2.550807828], "pages": [772, 3.725131938], "war": [1156, 3.588795495], "november": [741, 3.540939474], "april": [103, 3.417977763], "listings": [629, 3.691979731], "fixed": [429, 3.393486743], "bank": [127, 2.885892139], "memory": [686, 4.17071704], "flat": [430, 3.495269437], "president": [829, 3.157522503], "power": [824, 2.741497634], "wrote": [1193, 3.083869593], "unless": [1129, 3.189887787], "tool": [1096, 3.369581222], "remains": [901, 3.243955009], "digital": [327, 3.659891417], "technology": [1071, 3.11390188], "sector": [961, 3.681168815], "wide": [1171, 3.301113422], "machine": [658, 3.807049061], "reality": [883, 3.301113422], "agency": [78, 3.588795495], "asset": [114, 3.385454571], "toronto": [1098, 4.301745303], "competition": [245, 3.531637081], "customers": [282, 3.559807958], "decisions": [301, 3.495269437], "ben": [139, 4.717260747], "managing": [670, 3.32341918], "director": [330, 3.048982334], "creating": [275, 3.015271277], "services": [979, 2.741497634], "physical": [798, 3.315928508], "experience": [389, 2.439216763], "email": [360, 3.189887787], "hit": [510, 3.043284313], "august": [120, 3.550329214], "board": [156, 3.272125886], "certain": [202, 2.533595699], "records": [893, 3.460178117], "sharing": [987, 3.670473526], "district": [332, 3.747860189], "america": [89, 3.170343191], "moment": [700, 3.279294375], "security": [963, 3.037618576], "reduce": [895, 3.346233858], "stuff": [1049, 3.47756986], "broker": [166, 3.670473526], "learned": [603, 3.346233858], "store": [1039, 3.353955904], "retail": [924, 3.759421012], "landlords": [589, 3.126171973], "thinking": [1086, 3.009761621], "lease": [605, 3.30849353], "unique": [1124, 3.176815706], "afford": [74, 3.054713009], "favorite": [403, 3.460178117], "gone": [471, 3.30849353], "summer": [1054, 3.46883618], "took": [1095, 2.680378819], "leases": [606, 3.951088431], "team": [1069, 2.815605607], "behavior": [137, 3.896280195], "deep": [303, 3.183330387], "published": [860, 3.223335721], "vacant": [1140, 3.747860189], "told": [1094, 2.607966242], "clients": [226, 3.293787382], "landlord": [588, 3.072104752], "flow": [432, 3.257941251], "final": [419, 3.157522503], "tenant": [1074, 3.037618576], "lost": [651, 3.031984758], "trust": [1112, 3.330966386], "college": [230, 3.451594373], "brought": [168, 3.417977763], "giving": [466, 2.972021293], "ones": [754, 2.861910175], "cap": [188, 3.782951509], "concept": [250, 3.504238107], "economics": [352, 3.869962886], "individual": [547, 2.96149488], "went": [1168, 2.833870955], "rentals": [905, 3.691979731], "condo": [252, 3.702908802], "neighborhoods": [728, 3.486380489], "john": [574, 3.315928508], "network": [730, 3.346233858], "traffic": [1104, 3.807049061], "identity": [530, 4.342567297], "natural": [719, 3.237034566], "environment": [371, 3.443083684], "image": [531, 3.681168815], "tried": [1109, 3.265008418], "leave": [607, 2.829273245], "2007": [17, 3.451594373], "sites": [999, 3.32341918], "actual": [62, 3.301113422], "complete": [246, 2.885892139], "play": [806, 2.876230228], "heart": [500, 3.417977763], "putting": [864, 3.223335721], "word": [1179, 3.163912301], "writing": [1190, 3.157522503], "green": [479, 3.550329214], "push": [863, 3.385454571], "share": [985, 2.56832141], "generation": [461, 3.608598122], "assets": [115, 3.417977763], "views": [1149, 3.713958638], "theory": [1082, 3.628800829], "act": [58, 3.077969871], "matter": [676, 2.668590864], "length": [612, 3.7949277], "advice": [73, 3.361738044], "provided": [856, 3.216556034], "enter": [369, 3.598647791], "easily": [348, 2.972021293], "car": [190, 3.369581222], "nissan": [735, 6.134326766], "luxury": [657, 3.30849353], "brand": [162, 3.434644815], "modern": [699, 3.265008418], "choice": [215, 3.120018107], "fit": [427, 3.265008418], "structure": [1045, 3.451594373], "2015": [25, 2.900562329], "stage": [1026, 3.618648458], "template": [1073, 4.429578674], "chinese": [214, 3.951088431], "near": [721, 2.935653649], "types": [1119, 2.925501277], "names": [716, 3.713958638], "running": [944, 3.009761621], "update": [1130, 3.628800829], "perfect": [791, 3.054713009], "daily": [284, 3.176815706], "night": [734, 3.286514623], "fun": [449, 3.460178117], "super": [1055, 3.588795495], "clean": [222, 3.486380489], "looked": [645, 3.426276565], "jump": [577, 3.47756986], "animals": [94, 4.429578674], "hotel": [518, 3.747860189], "loan": [637, 3.272125886], "individuals": [548, 3.369581222], "researchers": [916, 3.782951509], "majority": [662, 3.144864106], "payment": [786, 3.250923678], "manager": [669, 3.434644815], "basis": [132, 3.209822002], "analysis": [92, 3.257941251], "lots": [653, 3.286514623], "factors": [395, 3.301113422], "manage": [667, 3.163912301], "study": [1048, 2.993412483], "smart": [1006, 3.486380489], "secure": [962, 3.807049061], "service": [978, 2.589750802], "mountain": [708, 4.17071704], "saying": [952, 3.043284313], "feature": [404, 3.377486401], "expect": [385, 2.993412483], "friends": [447, 3.077969871], "meet": [684, 3.089804329], "media": [681, 2.998832551], "campaign": [186, 3.909703215], "shared": [986, 3.401583953], "calls": [183, 3.237034566], "laws": [599, 3.209822002], "select": [966, 3.869962886], "men": [687, 3.522420426], "allowed": [86, 3.048982334], "books": [159, 3.513287942], "seat": [957, 4.136230864], "expected": [386, 3.196488471], "powerful": [825, 3.426276565], "stories": [1040, 3.338570985], "impact": [533, 3.060476714], "cent": [198, 4.070633582], "women": [1177, 3.495269437], "products": [846, 3.176815706], "notice": [740, 3.272125886], "reach": [878, 2.930564579], "knew": [582, 3.401583953], "various": [1144, 2.982659691], "accounts": [57, 3.618648458], "safe": [945, 3.346233858], "force": [438, 3.30849353], "yes": [1196, 3.060476714], "lose": [649, 3.293787382], "special": [1018, 3.196488471], "officials": [750, 3.608598122], "death": [293, 3.608598122], "press": [830, 3.540939474], "2006": [16, 3.807049061], "practice": [827, 3.132363943], "posts": [822, 3.937102189], "road": [937, 3.385454571], "2011": [21, 3.30849353], "features": [405, 3.031984758], "video": [1147, 3.361738044], "february": [406, 3.550329214], "employees": [361, 3.771117052], "created": [274, 2.767030936], "december": [297, 3.361738044], "google": [473, 3.279294375], "gave": [457, 3.286514623], "web": [1164, 3.426276565], "listing": [628, 3.409747263], "speed": [1020, 3.531637081], "loss": [650, 3.451594373], "amazon": [88, 3.7949277], "loans": [638, 3.569377409], "ad": [64, 4.17071704], "internet": [558, 3.293787382], "holding": [512, 3.46883618], "payments": [787, 3.301113422], "figure": [416, 3.157522503], "friend": [446, 3.369581222], "wasn": [1158, 3.072104752], "offered": [747, 3.293787382], "path": [783, 3.588795495], "travel": [1108, 3.550329214], "phone": [796, 3.223335721], "frame": [443, 4.206435123], "firms": [426, 3.923308867], "added": [66, 2.728971375], "chance": [205, 3.10178052], "talking": [1066, 3.272125886], "basic": [131, 3.043284313], "begin": [135, 3.189887787], "main": [659, 2.861910175], "financing": [423, 3.725131938], "receive": [888, 3.196488471], "application": [100, 3.550329214], "positive": [819, 3.417977763], "feeling": [410, 3.401583953], "india": [546, 4.26252459], "active": [60, 3.443083684], "date": [287, 3.203133014], "app": [99, 3.681168815], "asked": [111, 2.852476142], "americans": [91, 3.57903932], "taxes": [1068, 3.11390188], "hand": [488, 2.724830582], "berlin": [142, 5.035714478], "effects": [358, 3.628800829], "cut": [283, 3.072104752], "conditions": [251, 3.095774496], "unit": [1125, 3.060476714], "items": [570, 3.681168815], "2008": [18, 3.353955904], "transfer": [1107, 3.807049061], "essential": [374, 3.608598122], "eviction": [379, 3.923308867], "march": [672, 3.426276565], "sort": [1013, 3.315928508], "documents": [333, 3.771117052], "bikes": [150, 4.994892483], "society": [1008, 3.569377409], "response": [920, 3.47756986], "code": [229, 3.265008418], "deposit": [309, 3.725131938], "race": [871, 3.807049061], "test": [1079, 3.250923678], "users": [1136, 3.353955904], "benefit": [140, 3.11390188], "specific": [1019, 2.754182794], "user": [1135, 3.628800829], "database": [286, 3.937102189], "leverage": [616, 3.857059481], "language": [590, 3.550329214], "limit": [621, 3.451594373], "sports": [1024, 4.086633923], "file": [417, 3.702908802], "foreclosure": [439, 4.658420247], "shown": [990, 3.649420117], "training": [1105, 3.7949277], "woman": [1176, 3.736431494], "felt": [413, 3.361738044], "sex": [983, 4.500196241], "page": [771, 3.020811457], "method": [688, 3.540939474], "camera": [185, 4.500196241], "org": [762, 4.024113566], "tips": [1091, 3.559807958], "wiki": [1172, 5.648818951], "events": [377, 3.513287942], "note": [739, 2.824696578], "uses": [1137, 3.10178052], "bike": [149, 4.385126912], "builder": [171, 4.550206662], "function": [450, 3.550329214], "images": [532, 3.702908802], "write": [1189, 3.089804329], "link": [624, 3.417977763], "science": [955, 3.46883618], "reits": [896, 5.078274092], "distribution": [331, 4.301745303], "engine": [365, 4.385126912], "differences": [324, 3.909703215], "computer": [249, 3.807049061], "body": [157, 3.237034566], "lien": [617, 5.380554964], "deed": [302, 4.687407784], "edit": [354, 3.883034968], "assessed": [113, 4.779781104], "movement": [710, 3.831741673], "cars": [193, 3.951088431], "human": [526, 3.138594493], "games": [456, 4.070633582], "ride": [931, 3.896280195], "player": [807, 4.17071704], "roles": [939, 4.717260747], "journal": [575, 4.009075689], "trump": [1111, 4.054885225], "files": [418, 4.070633582], "archived": [104, 4.881563798], "retrieved": [925, 4.602850395], "pdf": [788, 4.524888854], "isbn": [566, 4.812570926], "sexual": [984, 4.881563798], "wordpress": [1180, 4.524888854], "admin": [71, 5.035714478], "slider": [1003, 6.267858159], "demo": [306, 5.269329329], "download": [341, 4.070633582], "server": [977, 4.243476395], "gender": [458, 5.035714478], "doi": [336, 5.574710979], "hp": [524, 6.134326766], "pp": [826, 5.078274092], "ferrari": [414, 6.267858159]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_reference.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_reference.json deleted file mode 100644 index d7de83a..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_reference.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.707412758, "feature_log_probs": [-5.815385319, -6.027820526, -6.758660476, -6.773293103, -6.57265198, -6.939262, -6.945141513, -6.649915434, -6.962937442, -6.992211639, -6.750602001, -7.208948574, -6.379231514, -7.738475778, -8.044320531, -8.025530252, -7.795007513, -7.899163919, -7.769995532, -7.69180587, -7.634224955, -7.587023341, -7.42658085, -7.20630845, -7.013805334, -7.01808377, -6.945451861, -7.098329263, -7.087989264, -6.849038804, -6.950510934, -6.781778694, -6.738469774, -7.227501167, -7.220046937, -7.302135581, -7.007666304, -6.902984426, -7.444106893, -7.287860616, -7.401539803, -7.512814248, -6.432816308, -7.648110124, -7.681216948, -7.734313007, -7.909654768, -7.291365419, -7.866616272, -7.490238993, -6.876128614, -7.56675782, -7.556361065, -6.914833771, -7.213663602, -7.318423946, -8.03849345, -7.026406669, -6.400358717, -8.31274606, -7.781976627, -6.510626158, -6.467557464, -6.431038473, -7.364176977, -7.100332843, -7.078831069, -7.727831672, -7.271566389, -7.271380905, -6.452452438, -7.092748018, -6.309600133, -6.594579549, -7.083200669, -6.725692974, -8.355068245, -6.693623116, -8.663677376, -6.906603749, -6.967154696, -6.187232801, -6.933584642, -6.544052441, -7.570879521, -6.30298451, -6.866862998, -7.425450236, -7.53138871, -7.260821715, -7.187881578, -7.676871416, -6.727397983, -6.934488071, -6.879416775, -8.009405822, -6.939132768, -6.632188259, -7.117634527, -6.688362697, -6.717700645, -8.080282389, -8.289688523, -7.484871913, -7.482783978, -7.176692148, -7.513143387, -6.654667926, -7.447981242, -8.546950001, -6.344090107, -6.852113152, -6.905745416, -7.589617707, -6.492290502, -6.972466397, -7.117688599, -7.431023698, -6.895810517, -6.468450125, -7.083368099, -7.535078016, -6.99608721, -7.460765119, -8.421048355, -8.059061028, -7.045543487, -6.863056753, -5.912412988, -6.212222808, -6.387469832, -5.702855897, -6.563989611, -6.350417024, -6.242396059, -6.923666722, -6.23746682, -6.192320836, -6.320360763, -6.538099655, -8.561165914, -7.041392766, -7.443472126, -6.499893984, -6.443701822, -6.686671997, -6.201168924, -6.061210517, -6.950667915, -6.442012735, -8.274920423, -6.705032933, -7.301699963, -7.195271464, -8.546447256, -8.451551944, -5.899755932, -6.856930471, -7.004490078, -6.607772845, -6.708474802, -7.105429228, -7.447847653, -7.105453115, -7.764781814, -6.878858424, -7.32408676, -7.168952984, -6.973516527, -6.502106321, -6.952789253, -7.187301238, -8.082212044, -6.367715641, -8.003788953, -6.834634531, -6.519974592, -7.60278391, -7.194066289, -6.6545471, -8.348108808, -7.941395497, -6.000651899, -6.958258591, -8.327451305, -6.924553988, -6.602116318, -6.930737224, -6.446806976, -8.015543501, -7.270174478, -6.448968062, -6.374841901, -6.984635703, -7.127454107, -6.964037455, -6.768448848, -6.409904331, -5.814516824, -7.014162352, -7.507653775, -7.565680441, -6.819774669, -7.096600792, -7.172221287, -6.605132387, -7.47635846, -7.983815572, -7.486847468, -7.642299438, -6.806548149, -7.287933052, -7.688189697, -7.625795254, -6.298894818, -7.581641515, -6.738969671, -7.274539866, -7.218878436, -6.744910727, -6.919562337, -7.222049425, -6.545269626, -6.596034312, -6.28764939, -6.717544759, -7.079017283, -7.211350089, -7.086055348, -7.650997462, -7.574444688, -8.460155839, -7.675184779, -6.886502502, -6.867332177, -8.418977838, -7.351185564, -7.046790572, -5.836358323, -6.617754168, -6.818289205, -7.405375509, -5.814265956, -6.381434074, -6.940201536, -7.151895366, -8.186712002, -7.660175545, -7.336806918, -7.427766434, -7.821291307, -7.374997181, -8.015790574, -7.722223342, -7.371875344, -7.670489031, -6.945623401, -7.675469465, -7.68233301, -6.292858788, -6.655446643, -7.827271244, -7.340151054, -6.784926526, -7.199679737, -7.319633838, -7.368878708, -6.945922849, -6.331675571, -6.426250532, -7.06921817, -7.925893461, -6.14085292, -7.045606306, -7.383976924, -6.992156847, -8.06250791, -7.733111053, -6.400242713, -6.291291916, -7.720340157, -6.443308305, -8.263962854, -5.663649924, -6.921691077, -6.834328674, -8.663677376, -6.789100538, -6.651305553, -6.887332449, -6.389007562, -7.610991372, -8.309334493, -8.423730999, -8.002885972, -8.307194968, -7.431295251, -7.91199641, -6.531805401, -7.633587351, -7.417493914, -7.007764748, -7.105918777, -7.116310949, -7.703004581, -7.271361141, -8.280603071, -7.661896399, -8.132954927, -8.467092902, -8.215462082, -7.313871112, -6.244359943, -7.100203233, -8.663677376, -6.484956624, -7.354635136, -7.05274467, -7.103492472, -7.380720244, -8.663677376, -6.719086368, -6.933542609, -6.297212547, -7.114098415, -7.505986518, -6.935360829, -7.132991749, -7.194551559, -7.090513917, -6.293161007, -7.270121786, -7.704708263, -6.48656126, -7.416189588, -7.878123705, -7.689294218, -6.554737977, -8.663677376, -8.663677376, -7.209323848, -8.569479356, -6.850696024, -5.962379995, -6.835141781, -7.511329389, -7.627878838, -7.869228398, -7.4118558, -6.372567558, -6.543661351, -6.855295356, -8.336361291, -7.257290377, -6.448166108, -7.463605716, -7.234996987, -6.535976948, -7.449659002, -8.063000432, -7.585814787, -7.053676959, -7.059230333, -7.048660968, -6.889623503, -7.272941841, -7.282413317, -8.201481403, -7.073221885, -6.908160472, -7.350085596, -6.807264437, -6.757963473, -6.01527457, -7.27229049, -7.109351561, -6.815398542, -7.617067253, -7.492566985, -6.002152086, -7.637479772, -7.348336153, -8.663677376, -6.948680414, -6.625017409, -7.280934279, -7.628635503, -6.860964993, -5.844776229, -6.239480845, -7.094554849, -7.035939811, -7.458299876, -7.272522911, -7.540713704, -7.754481952, -7.134554133, -6.559936648, -6.714398693, -7.120917832, -7.122598436, -7.163321451, -6.975847547, -7.424356334, -7.102733328, -6.076167745, -6.006283214, -7.939801213, -5.836541841, -6.510994847, -6.7257479, -6.281182913, -7.360675605, -6.545612795, -7.18550613, -7.187046469, -7.118516252, -6.909117552, -6.850484752, -6.517620956, -7.138644156, -6.889687038, -6.568131798, -6.576765019, -6.530759157, -6.293926219, -6.872357695, -6.781729237, -6.089304401, -6.131791349, -6.854873189, -7.254490629, -7.636934034, -6.763782907, -7.008952571, -5.750362096, -6.559957137, -6.195560339, -6.521344806, -6.858390499, -7.399241856, -6.66940682, -7.389734979, -7.403568923, -7.268913073, -6.262392071, -6.37975416, -7.020120028, -6.46566293, -7.056085117, -6.592573495, -7.088181328, -7.104493006, -6.364112955, -6.986367432, -7.157077287, -7.302050715, -7.521170143, -7.032042371, -7.134847229, -7.59869591, -8.289695923, -7.391874525, -7.383428509, -8.479052034, -8.108312371, -6.62084169, -8.416878045, -8.488134368, -8.663677376, -8.663677376, -8.359978999, -7.843978848, -6.514348601, -8.663677376, -8.663677376, -7.630049567, -6.801310303, -7.306157466, -6.415776289, -7.541244085, -7.921845833, -7.678024612, -8.018369698, -7.203224672, -7.101965223, -7.685259663, -7.588501999, -7.331090791, -8.663677376, -8.663677376, -8.663677376, -8.663677376, -7.748826534, -8.553351656, -8.509474627, -7.005672234, -7.262967396, -7.75855667, -8.528052734, -6.500691915, -7.551421708, -6.862476402, -7.117088663, -6.673777427, -7.550659878, -7.268497655, -7.293858985, -6.658522801, -7.063542869, -6.980260426, -7.421711515, -7.195368167, -7.440823748, -6.855549836, -8.663677376, -6.619628796, -8.663677376, -8.663677376, -6.761697898, -5.882409401, -7.16036602, -6.679247403, -8.090361214, -8.039315316, -7.358196083, -7.113293015, -7.160994027, -7.407437517, -6.696291996, -6.991788943, -6.61844005, -6.713097894, -7.026020269, -7.387094338, -6.693756092, -6.868071568, -7.016493006, -7.380625713, -6.626544396, -6.878179985, -6.481456635, -6.866378629, -6.880719792, -6.070157515, -6.197646599, -6.602010308, -7.184347185, -6.448732289, -8.57900879, -6.750317465, -7.159100266, -6.199301022, -6.183747435, -6.600456541, -7.183444412, -6.947800556, -5.615186205, -6.506372989, -7.961695476, -8.22602072, -7.065802511, -6.067252532, -6.571913879, -6.195560703, -6.471067813, -6.854772316, -6.169691451, -6.500755196, -6.486856411, -7.027210972, -6.962469896, -6.928582335, -6.894188068, -5.629918612, -6.598346717, -6.425211288, -6.659674098, -6.927274651, -7.094435361, -6.450501664, -7.697898903, -8.663677376, -8.254722213, -6.912411002, -6.910631203, -8.663677376, -7.101423363, -7.343395881, -6.629615546, -7.616203771, -7.710929974, -6.378889819, -6.942001867, -6.951161392, -7.150059786, -7.052232507, -6.587817354, -7.548569013, -7.121803157, -7.661889373, -7.080856743, -6.425527615, -6.817672212, -7.268409964, -6.560005362, -6.789916732, -6.911349837, -7.108570631, -8.483152454, -5.970817338, -8.601866985, -6.369016592, -8.108150154, -6.380136833, -6.652407883, -6.963989217, -8.6394297, -6.665095479, -7.004744863, -7.04525875, -7.283284417, -5.785664782, -6.875486594, -6.984331592, -7.306325628, -7.307689334, -6.620889154, -8.504105578, -5.291845291, -6.757634469, -8.305902717, -7.03324887, -7.269201271, -7.231824945, -6.755452915, -7.216273463, -7.310551133, -6.229604091, -7.299541267, -6.594701337, -6.681712711, -6.590219402, -6.209900963, -6.999491534, -6.524194446, -6.593282662, -6.791597219, -6.717266054, -7.049472038, -7.395383521, -6.961362231, -7.458676724, -7.07105075, -7.340080279, -7.673834973, -6.11430423, -7.17121053, -7.096275392, -7.745585459, -7.306816198, -7.216434139, -7.461500253, -7.024409417, -6.82029561, -7.645578815, -7.911266291, -6.686037195, -7.67396698, -6.621304889, -6.856376687, -6.706927655, -7.197935384, -6.597322446, -6.783485715, -8.162511709, -7.833932458, -8.397376475, -7.976241891, -6.372412281, -7.200859199, -7.040736477, -7.265720031, -8.663677376, -6.285618525, -6.745889659, -7.505128419, -7.514232231, -6.414991363, -6.741539554, -6.723233081, -7.875281138, -6.47805745, -6.956120124, -7.716464042, -7.289450025, -7.505639263, -7.753107076, -7.573420346, -6.562621882, -7.590891464, -7.026401027, -7.053621079, -8.147932369, -6.608413243, -6.197845269, -6.705534437, -6.766906544, -6.545099246, -6.988760864, -8.094801105, -7.603023198, -7.176792979, -7.503216948, -7.36386146, -6.803938651, -7.062896898, -6.614912062, -6.677798085, -7.174941728, -7.495266041, -8.139753701, -7.114338011, -6.622582484, -6.680714494, -7.194375514, -6.583298061, -7.591461587, -7.404311416, -7.506186229, -6.606287154, -6.978430601, -6.46403778, -7.120399953, -7.309031221, -7.889629153, -6.709003895, -6.453131878, -6.732964649, -7.015169466, -8.055233569, -8.475696295, -7.945170573, -6.769660998, -6.896384569, -7.482422323, -6.619153256, -7.008054431, -6.735696484, -6.793968127, -6.982100616, -6.769165571, -6.761896076, -6.709026501, -7.025684172, -7.374495866, -6.219206827, -6.799689277, -6.154457153, -7.339387019, -6.118593696, -6.959118954, -7.313803581, -6.873333119, -6.720112191, -7.360753343, -7.545683938, -6.662239411, -8.171160389, -7.640215721, -7.473167875, -8.294402411, -6.934205645, -6.773813928, -7.063152894, -6.377929714, -6.885149964, -7.294450075, -7.44545029, -6.88571332, -6.622308179, -6.846741005, -6.902578965, -7.066908489, -7.680627756, -7.508438991, -6.188251065, -7.201738246, -7.453521996, -6.874283492, -6.586051644, -7.64105133, -7.107865511, -6.573662568, -6.997887508, -6.576357682, -6.515517909, -6.406565654, -7.088990496, -7.473691968, -6.774860708, -6.792900025, -8.176563659, -7.81491198, -8.311371529, -6.433209568, -6.5070642, -7.023524914, -6.530038187, -6.742216648, -6.780975565, -7.139429043, -8.535457863, -7.249388815, -6.453370088, -6.122879927, -6.388467437, -6.538385915, -6.093984472, -6.679846756, -6.41486715, -6.782638362, -7.210861246, -6.893857964, -7.397668785, -6.795665743, -6.507051835, -6.896590155, -6.485495772, -6.296538463, -7.229753768, -7.669835805, -6.44807546, -6.852565586, -6.168014079, -7.733068606, -6.346221164, -8.583963102, -8.663677376, -7.602275029, -8.550036266, -6.984310131, -7.026383343, -6.591957084, -7.556481178, -7.185244968, -6.234536899, -6.846487783, -6.766178445, -6.443048795, -6.811526471, -7.214504705, -6.571780773, -7.314880223, -7.068543125, -7.559172093, -6.143721984, -6.370385406, -6.649948253, -6.859963838, -6.738535928, -6.53280523, -6.8262435, -6.272101281, -7.15313214, -7.193209363, -7.163790858, -7.31051938, -7.508883308, -7.024914546, -7.324445444, -6.439539252, -6.834931126, -7.205038101, -6.896930815, -7.042985374, -7.486153273, -7.791991369, -6.35555869, -6.246304963, -6.810574613, -6.619025784, -6.993807841, -6.768245233, -6.699252375, -6.837842055, -7.307516578, -7.458298205, -7.284892148, -7.817174448, -6.285552896, -6.74872281, -6.651545863, -7.356250103, -7.030717067, -7.204032551, -6.644532694, -6.695646183, -8.344221273, -8.388787114, -7.852288556, -6.287755072, -6.024170636, -6.145695573, -7.109896696, -7.960673167, -6.982229433, -7.57319708, -6.430843028, -7.026567191, -6.441815112, -6.445668376, -7.009463149, -6.771004857, -6.724564567, -6.96437283, -6.913920502, -7.763197112, -7.008412747, -6.51173667, -8.3668327, -8.311152307, -8.41498488, -6.822350635, -7.285866993, -6.228574742, -7.446312993, -7.555294612, -6.531535002, -6.74709998, -6.696209009, -6.7461467, -7.247629308, -7.152945626, -7.028262463, -7.025247244, -7.511731926, -8.456377931, -7.012350313, -6.906830443, -6.659486862, -5.51083777, -5.963958419, -6.933314004, -6.420586031, -6.319701505, -6.782672239, -5.922376355, -6.868221021, -6.811123186, -7.702685865, -7.180492696, -7.116292809, -5.736752761, -6.577842118, -6.043358731, -6.863047496, -7.262208962, -8.558086051, -7.321815889, -7.409524146, -8.429940866, -8.383511085, -5.702117791, -6.751481595, -7.154955712, -6.177484726, -5.805738304, -6.688122297, -7.70181225, -6.554354753, -6.505516283, -6.251775658, -8.218884078, -6.818984886, -6.383665318, -8.663677376, -7.721203598, -7.599078758, -6.148573139, -6.545528427, -7.082905562, -5.927139748, -6.809844759, -5.898979742, -7.41537881, -6.357586226, -6.646358112, -6.052628626, -6.612746131, -6.820035322, -6.664608135, -6.964090297, -7.302539596, -6.887635793, -5.571637714, -5.848655202, -6.844967755, -6.602066629, -6.670766008]}, {"log_prior": -0.679082251, "feature_log_probs": [-7.459011743, -6.129155007, -7.465219872, -6.937909462, -6.997051628, -7.089138575, -7.129278015, -7.032457505, -6.846133229, -7.316251691, -7.288299686, -7.261042611, -7.157997093, -7.65428724, -7.676500748, -7.598230912, -7.540192058, -7.649381196, -7.462778906, -7.371426867, -7.460061719, -7.057768696, -7.226950956, -7.295647231, -7.470178857, -7.446823481, -7.322915583, -7.132246606, -7.316160314, -7.255186776, -7.416067013, -7.347597033, -7.739154147, -7.389935892, -7.402470198, -7.394267496, -7.381437202, -7.379032627, -7.390693251, -7.557862466, -7.606322227, -7.548347309, -7.276835331, -7.616065983, -7.774583929, -7.787415808, -7.83350006, -7.729958152, -7.824900384, -7.864376602, -7.608318062, -7.810672026, -7.764846071, -7.323058963, -7.938871362, -7.944479989, -7.144743549, -6.768160283, -6.791077057, -7.152337028, -7.141793845, -7.626815729, -6.631542461, -7.337455799, -7.299124704, -7.121442492, -6.985475952, -7.263019789, -7.363571421, -7.417309301, -6.613422464, -7.257133161, -7.671599361, -7.858832739, -7.667007323, -6.828102069, -6.994096609, -7.457818812, -6.289565935, -7.375004572, -7.384466072, -7.639377917, -7.421137799, -6.667447927, -6.44357344, -7.967363784, -7.064654965, -7.382892662, -7.296228037, -6.685624516, -7.93076965, -7.773835208, -7.586274237, -7.332633821, -6.895653831, -7.150897562, -7.140129682, -6.497684567, -7.248713342, -6.992680288, -7.116437649, -7.224496241, -6.914519776, -7.049784893, -7.141409075, -6.832021066, -7.996646788, -7.176441377, -7.167156839, -7.358031951, -7.424978493, -6.74094855, -7.353166871, -7.171479967, -6.981571609, -6.803472271, -7.433729423, -8.625826183, -7.303637434, -6.498861471, -7.060642961, -7.399014111, -7.500443192, -6.208103156, -6.91206031, -7.146567968, -6.285138325, -7.360147489, -6.503756492, -6.374822487, -6.332861161, -8.696117662, -7.260397273, -7.511202224, -7.334759954, -7.72830333, -7.641227319, -6.142771167, -7.03766025, -6.724244053, -6.283989441, -7.133937627, -7.47076771, -7.763569865, -7.853871012, -7.847696876, -6.859173705, -7.427964392, -7.9510581, -6.715295292, -7.154703381, -7.327279827, -8.138847784, -5.936735683, -6.278970305, -6.987837425, -7.964007451, -6.661119438, -6.95112938, -8.501174327, -6.893826327, -7.48193786, -7.461888525, -6.98643008, -7.368912746, -7.54482465, -6.862835835, -6.51843862, -6.832041396, -6.206165442, -6.823359564, -7.248259115, -7.129175301, -7.480414, -7.187040248, -6.997623585, -6.79954734, -7.636981107, -7.524584079, -7.363591847, -8.585854818, -7.682177616, -7.765816407, -7.001717706, -6.956683385, -7.005660077, -8.243826117, -7.062048192, -8.101037161, -6.619870599, -7.276111198, -6.643115095, -6.852134279, -7.450271922, -7.367826096, -6.851439131, -7.252177717, -7.298285587, -7.329000242, -7.603224276, -6.891293838, -7.224638056, -7.304218795, -7.242982925, -7.132460948, -7.668950976, -6.978978958, -7.228557083, -7.351026193, -6.869300971, -7.281500492, -7.307351401, -6.966317845, -7.308691322, -7.383649773, -7.344898814, -6.872957792, -6.95120239, -7.087879135, -7.095189193, -7.135847321, -6.766032343, -7.116462224, -6.69319703, -7.033062098, -7.338097598, -7.286049519, -6.605211075, -7.268898137, -6.72694252, -7.072452082, -6.885355291, -7.110358207, -7.101395445, -7.20797255, -6.772969296, -7.311563143, -7.394345667, -6.302348113, -8.273897767, -7.539041748, -7.227595783, -6.692690185, -7.452227768, -7.064617598, -7.40194292, -7.108679856, -6.783720528, -7.728947659, -6.865911273, -6.783363138, -6.674501723, -6.770514027, -7.445903719, -7.379640166, -6.28755422, -7.821589825, -7.086892341, -7.303664383, -7.885697887, -7.676881182, -7.078735576, -7.339772826, -7.119368322, -7.122029997, -7.047461449, -7.43415085, -6.500908386, -6.515308209, -6.925532736, -7.307446214, -6.888428343, -6.260205758, -6.961378119, -7.22600952, -7.571342707, -7.151444174, -7.079915365, -6.434479739, -6.642169213, -6.609539078, -6.770494921, -6.769841431, -5.769958255, -7.320309339, -7.440393282, -7.021396293, -6.937415172, -7.589461755, -7.004513279, -7.070745563, -5.362413851, -5.161562981, -7.065599744, -6.530613358, -5.942863354, -5.866322508, -7.069435929, -5.750071146, -7.518037535, -6.850812376, -6.865809894, -7.376424129, -7.016921042, -7.163705928, -7.311698206, -6.978828811, -6.219298703, -5.982742281, -6.943344044, -6.740947546, -8.201423228, -6.795946227, -6.830143822, -6.798889981, -8.435269079, -7.302080406, -6.288997491, -7.468257343, -6.897256939, -6.469019557, -6.67185554, -7.612796095, -8.192767591, -7.155325171, -7.099698355, -7.587074447, -7.230123339, -6.6289063, -7.219103448, -6.376865368, -7.401425874, -7.359662485, -6.47196924, -6.872231855, -6.918337142, -7.001765322, -8.024984805, -6.417687021, -6.368685564, -7.017360924, -6.784772929, -7.202945933, -7.518606029, -6.54262012, -7.191786146, -6.975143983, -7.080578494, -7.080289937, -6.94879354, -6.961635122, -7.557261312, -7.079854914, -7.217107622, -8.011146304, -8.026851572, -7.782013142, -5.688938269, -5.940633872, -6.203338445, -7.183430719, -6.92270625, -7.193909704, -7.446838925, -6.59641435, -7.148509802, -7.239089011, -7.014154242, -7.144507754, -6.715393177, -6.968460641, -7.200714377, -7.268357328, -7.589049567, -7.320861385, -8.737262663, -6.940333491, -7.314381025, -7.416626595, -6.512835543, -7.016612333, -7.193099715, -6.340434409, -6.881492307, -6.560086241, -6.176003589, -6.735688708, -6.414834825, -7.279429529, -7.954260279, -7.498448689, -6.631827548, -6.849284563, -7.615084382, -7.349898458, -7.537466141, -7.242038033, -6.79326402, -6.881525783, -7.326635232, -7.259610771, -7.113563723, -7.033052798, -6.917732246, -7.22281268, -6.475056284, -6.077068947, -6.82470499, -7.723976694, -7.179128967, -6.173986377, -6.417402952, -7.094152393, -6.732545917, -7.161118805, -7.257929048, -6.153088164, -7.546679977, -7.264464508, -6.921664048, -7.159661099, -7.009298014, -6.491725602, -6.586358328, -7.334913746, -6.845162051, -7.017143221, -7.198383156, -6.356696624, -6.354528591, -6.602801704, -6.669578053, -7.19239565, -6.54961394, -7.310846928, -7.22869961, -7.613131802, -7.662908129, -6.228157196, -7.442675593, -7.520308279, -6.567328807, -6.212885797, -7.332253438, -7.357111188, -7.791053723, -7.855531235, -7.1747252, -6.271350177, -7.303697594, -7.213079888, -7.86053108, -7.665619003, -7.069191989, -6.097994579, -6.928731641, -7.397855706, -7.450103865, -8.01131945, -8.249072962, -8.405907373, -8.71818726, -6.462976306, -6.39540712, -8.761702889, -7.273185036, -7.68604125, -5.935326983, -7.105379721, -5.151947058, -5.043672996, -6.587891431, -6.956625307, -6.478220173, -5.884899887, -5.477013725, -6.827059509, -7.302146582, -7.300871238, -6.818725982, -7.379322357, -7.288171701, -6.918387903, -7.143459615, -7.07934509, -7.16819708, -7.27473512, -7.46095172, -6.95391693, -6.003441297, -6.025425942, -6.418233434, -6.465957945, -7.507886047, -6.066352623, -6.149800605, -7.110827765, -7.338083236, -6.768943927, -8.714985734, -6.885207622, -8.684530181, -7.248927756, -7.049935141, -7.676449356, -7.354991067, -7.821488919, -7.771551287, -6.686854418, -7.246601058, -6.966668532, -6.494202702, -7.96930997, -7.082191544, -7.927578722, -6.416229975, -7.061223328, -6.419343729, -6.37107403, -6.809908142, -5.916254252, -6.696478683, -6.772540743, -6.352692618, -6.813478372, -7.090326425, -7.476610183, -6.501836088, -7.227700726, -6.948414374, -7.211560255, -6.95436385, -6.958572807, -6.871149071, -7.428836298, -6.622147015, -6.336254741, -7.354385499, -7.343257129, -7.079179506, -7.808464422, -6.436242238, -6.616472921, -6.908644094, -5.699377752, -7.598772085, -6.314181665, -7.55685076, -7.496232891, -7.351463234, -7.415901326, -6.907177146, -7.213268179, -6.59757917, -6.90829564, -6.741748486, -7.002067443, -6.397238664, -7.800106784, -7.223908669, -6.913369058, -7.263545432, -6.339547057, -7.456602392, -6.572935765, -7.105935534, -7.585372505, -6.497067611, -6.073501848, -6.507053708, -7.055605177, -7.696901961, -7.069433213, -7.017266512, -5.886595995, -6.629712923, -6.672464234, -7.294117498, -7.630870823, -7.806003521, -5.919022187, -6.42731049, -6.49434014, -7.222080054, -6.971613303, -7.223546101, -6.710656595, -6.665747505, -6.611236643, -6.516327443, -7.05612473, -7.13401244, -7.432305306, -7.766293402, -8.094636347, -7.618406445, -6.941787754, -7.227632352, -6.638913281, -7.338693208, -7.070816458, -7.362944869, -7.624696535, -6.338318496, -8.608253765, -6.330525583, -6.624572489, -6.715885578, -6.967381116, -6.506460337, -6.355760561, -6.798946667, -7.850836608, -6.883508536, -6.666352342, -7.602354713, -7.412287838, -6.298810756, -6.979932267, -6.661895919, -6.590949766, -7.138373994, -6.016600165, -7.038177462, -6.567111024, -6.780723635, -7.417529274, -7.62384188, -6.406098422, -5.770029964, -7.268920841, -6.865281372, -7.079648593, -7.356657088, -7.676394827, -7.363247691, -7.267160814, -7.707641016, -6.932069251, -7.726602602, -7.462022386, -7.779854681, -8.151803295, -6.816264493, -7.154027218, -7.04094393, -6.700691455, -7.739835336, -6.642517355, -7.472024429, -7.439542577, -7.138644987, -6.91333838, -7.047046383, -7.265419575, -7.520102438, -7.718329878, -6.643913289, -7.215003149, -6.762258678, -6.894323286, -7.178055142, -6.575301638, -7.543991228, -6.72060116, -7.10391264, -7.184880964, -7.038044593, -7.408739886, -6.613648443, -7.008811597, -7.545558556, -7.190025189, -5.993740611, -6.540372497, -4.691743558, -6.898187467, -7.134200185, -7.09515477, -7.83396893, -8.733176555, -7.090450683, -7.111948166, -5.784245166, -6.851996843, -7.126761438, -7.151501396, -7.090724359, -7.097072778, -8.329627781, -8.254917198, -7.328492955, -6.545236868, -7.389830916, -7.011370861, -6.229762314, -6.217318454, -7.2994505, -7.259080774, -7.278698098, -6.426112058, -7.346711581, -6.512100228, -6.9668506, -6.820135575, -6.831673523, -7.795617886, -7.129656358, -6.389415111, -7.509139616, -6.810610297, -7.22110123, -7.256897285, -7.024671371, -6.916342534, -7.614134453, -6.774608455, -7.250758685, -6.527500274, -6.538051987, -7.586676117, -6.946668036, -6.798135569, -6.902025254, -6.518331823, -6.70719093, -6.442807877, -7.240791083, -7.443411344, -7.630898045, -7.349794715, -6.588639044, -7.219256147, -7.497473732, -6.994357027, -7.244227616, -6.702256585, -7.292173806, -7.199511519, -7.594534842, -6.279124478, -6.661327123, -5.461580661, -6.598636525, -6.685536368, -7.235723209, -7.409417151, -8.798712538, -6.701955414, -6.841100018, -7.341007557, -7.069861382, -7.015786761, -7.640772839, -6.342154058, -6.703338448, -6.257137993, -6.857699993, -6.415795881, -6.854746333, -6.433471499, -6.825551032, -7.223202904, -6.993551344, -7.402653808, -7.550678697, -7.210831358, -6.841012353, -7.277917695, -6.278952635, -6.273383541, -7.092406817, -6.982876105, -7.317822033, -7.68157034, -5.948533064, -6.578851725, -7.106026586, -7.098648685, -6.687251569, -6.830791891, -7.034074295, -7.180489702, -6.944414288, -6.977583403, -6.923365134, -6.403751767, -7.582070172, -7.149341707, -7.283549752, -7.863241905, -7.299622816, -6.624598572, -7.475123032, -7.117687742, -6.932872411, -8.098101926, -6.230584976, -7.209369771, -7.153636188, -6.612802128, -6.431193526, -7.121954468, -6.937403319, -7.309520039, -7.302657311, -6.981599179, -7.769606446, -7.690508249, -7.138285066, -5.761251681, -6.366904442, -6.775846332, -8.050165878, -7.334641191, -8.731691929, -7.473021965, -7.321221332, -6.846356935, -8.038249351, -6.661537965, -7.029019104, -7.42051611, -7.350419631, -7.282944997, -7.066069855, -7.296260945, -6.81223471, -7.293922737, -8.118591791, -6.784458771, -6.930276325, -7.687296582, -7.23256484, -6.903122731, -6.850827811, -5.450216264, -7.359504522, -7.540309966, -6.443086913, -6.391842782, -7.509969849, -7.176642703, -7.241596303, -7.555830951, -7.534407945, -7.145672728, -7.53258917, -7.115600633, -8.026228932, -7.025287035, -6.730990897, -8.817133008, -7.111093146, -7.168736211, -7.29952836, -6.90334575, -7.495281279, -6.607494941, -6.660290573, -7.36421091, -7.352059108, -7.094536589, -7.032769458, -7.669113002, -6.958849384, -6.693844652, -6.938965179, -6.806051165, -6.442213641, -6.685566302, -6.072891539, -7.619520498, -6.985704698, -7.265879419, -7.458884774, -7.137382857, -6.588499058, -6.981698191, -6.849254733, -7.124993978, -7.866432653, -7.11874164, -7.167912772, -6.937984309, -6.672750124, -7.164487124, -7.351389491, -6.443843826, -7.140860102, -7.219301653, -7.400828808, -6.903025025, -5.995944785, -6.657685909, -6.851831221, -6.408596329, -8.20672264, -7.078238968, -6.466011066, -5.405969477, -6.620524885, -5.757019652, -5.959397356, -6.142302988, -7.102322331, -6.485716692, -6.458230493, -6.635768286, -7.99934629, -6.724161142, -7.089345715, -7.231931289, -7.520162222, -7.884609473, -7.417122087, -7.327171806, -6.870350408, -7.480420799, -7.696572355, -6.48240942, -5.828717948, -8.468347665, -6.499566186, -6.817298064, -7.450190948, -6.968289919, -6.995102335, -6.636630425, -6.765988201, -7.044433205, -5.457143962, -5.636224224, -7.140069516, -7.549048838, -6.266821525, -6.330067186, -6.932652228, -7.05307308, -6.97322226, -6.234245778, -6.260261497, -6.66069909, -7.262706615, -8.20886532, -7.818060358, -7.537617966, -6.92461047, -6.684230414, -6.325634495, -6.55624369, -7.496570705, -7.15743537, -6.310905171, -7.216050594, -7.964929553, -6.623508247, -7.29773789, -7.434670033, -7.694086908, -7.254690292, -6.515253335, -6.515673966, -5.965370768, -7.46610327, -7.117266772, -7.720748725, -5.902102578, -6.608439357, -6.202371218, -7.977112317, -7.893995385, -7.680038578, -7.246133831, -7.472188709, -7.684380172, -7.313563946, -8.60947092, -8.268144672, -7.155368342, -7.138190913, -6.988230445, -8.72941118, -6.556603347, -5.827090451, -6.554828771, -6.826276806, -7.008548116, -5.662198148, -7.416277636, -6.934865581, -6.724459535, -7.221617114, -6.704501386, -7.179397089, -6.798603454, -6.480665391, -7.169290686, -6.911999978, -7.247375458]}], "model_type": "nb", "positive_class_label": "reference", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"mbti": [586, 4.063815641], "assessment": [102, 3.256258109], "tool": [913, 3.19087535], "far": [350, 2.247117223], "personality": [675, 2.305435394], "types": [932, 2.220384161], "type": [931, 2.050934865], "using": [947, 1.930905143], "cognitive": [189, 3.283657083], "functions": [386, 3.165874047], "try": [928, 2.269534102], "online": [645, 2.593988167], "end": [312, 1.967472288], "does": [278, 1.869963748], "true": [923, 2.194347187], "model": [605, 2.529885281], "fact": [344, 2.059064992], "result": [779, 2.300227048], "tend": [893, 2.39839846], "large": [529, 2.274584618], "range": [753, 2.850793001], "various": [952, 2.587043695], "common": [195, 2.345387445], "note": [635, 2.704394298], "list": [552, 2.497728169], "simply": [827, 2.31329913], "ones": [644, 2.756302157], "jump": [513, 2.781199709], "enfp": [314, 4.033962678], "infp": [474, 3.517271934], "infj": [469, 3.088684409], "intp": [491, 3.822653584], "intj": [489, 3.618741394], "identify": [443, 3.18456618], "understanding": [936, 2.392684159], "extroverted": [341, 3.963010942], "sensing": [812, 3.648300197], "dominant": [282, 3.203614375], "believe": [126, 2.247117223], "actually": [70, 2.092263061], "environment": [319, 2.756302157], "times": [908, 2.030894115], "nature": [620, 2.370147994], "quite": [752, 2.556376896], "social": [836, 1.971203636], "need": [622, 1.629405155], "away": [114, 2.30282783], "long": [562, 1.738757692], "intuition": [495, 3.197224577], "function": [385, 2.669974074], "idea": [441, 2.153151431], "generation": [393, 3.534971511], "direct": [274, 2.975355723], "interaction": [483, 3.482785758], "external": [336, 2.815391074], "emotions": [308, 2.864398653], "based": [119, 1.932702088], "going": [405, 1.936305696], "lives": [555, 2.611563312], "think": [903, 1.768835147], "situation": [830, 2.685125879], "come": [191, 1.978708361], "hand": [419, 2.392684159], "search": [805, 2.478918837], "cause": [163, 2.615115713], "reason": [761, 2.356316515], "details": [263, 2.892178217], "likely": [546, 2.182732655], "psychological": [740, 3.100178788], "models": [606, 2.846298611], "help": [428, 1.799845384], "understand": [935, 2.215599463], "certain": [168, 2.31329913], "ways": [968, 2.105002087], "feel": [357, 2.079684279], "things": [902, 1.741725053], "deeply": [252, 3.001196955], "takes": [883, 2.549687908], "approach": [89, 2.48202926], "feelings": [359, 2.752212172], "possible": [704, 2.102867614], "infjs": [470, 3.111806826], "infps": [475, 3.508538254], "introverted": [494, 3.129506403], "feeling": [358, 2.536442681], "experience": [333, 2.159900613], "personal": [674, 2.364592424], "level": [542, 2.220384161], "auxiliary": [109, 4.361650085], "means": [589, 2.011247117], "constantly": [212, 3.165874047], "develop": [264, 2.828520365], "emotional": [307, 2.802431929], "reality": [759, 2.828520365], "giving": [400, 2.850793001], "society": [839, 2.625849269], "way": [967, 1.431272992], "highly": [431, 2.48827928], "second": [806, 2.272056171], "term": [894, 2.424524765], "uses": [946, 2.798149267], "happen": [420, 3.022361766], "future": [387, 2.244657197], "multiple": [615, 2.777006831], "ideas": [442, 2.331891963], "want": [963, 1.70525128], "know": [520, 1.709558537], "thoughts": [907, 2.798149267], "events": [327, 2.990780194], "play": [688, 2.625849269], "plan": [685, 2.781199709], "significant": [824, 2.846298611], "number": [638, 2.166695656], "interested": [484, 2.855307681], "world": [988, 1.624107129], "use": [941, 1.604485833], "change": [169, 2.030894115], "better": [129, 1.854875448], "truth": [927, 3.141482594], "trait": [920, 3.678759404], "best": [128, 1.795132099], "day": [242, 2.040864287], "basis": [121, 3.011723368], "generally": [392, 2.597478572], "general": [391, 2.326544357], "similar": [825, 2.364592424], "difference": [270, 2.793884869], "causes": [164, 3.07732065], "new": [629, 1.39071247], "start": [856, 2.206098204], "enjoy": [317, 2.640342276], "planning": [686, 3.210045266], "share": [820, 2.345387445], "easy": [290, 2.39839846], "lead": [533, 2.424524765], "focused": [370, 2.756302157], "experiences": [334, 2.846298611], "order": [648, 2.111432977], "quick": [750, 3.001196955], "exactly": [329, 2.828520365], "action": [66, 2.708292938], "really": [760, 2.00349514], "look": [564, 1.921968533], "intjs": [490, 3.590031289], "intps": [492, 3.909664961], "thinking": [904, 2.259508955], "present": [714, 2.673740557], "course": [223, 2.262005836], "example": [330, 1.918416131], "looks": [566, 3.054973351], "set": [818, 2.030894115], "specific": [848, 2.5233706], "actions": [67, 3.203614375], "consider": [210, 2.655048424], "focus": [369, 2.424524765], "say": [797, 1.958204381], "life": [544, 1.761230548], "logical": [560, 3.37066846], "comes": [192, 2.203736927], "goes": [404, 2.850793001], "lack": [525, 2.83736998], "building": [144, 2.920751589], "self": [810, 2.153151431], "isn": [500, 2.334576528], "words": [983, 2.353573029], "inferior": [468, 4.079083113], "physical": [681, 2.846298611], "picture": [682, 3.001196955], "theory": [900, 2.287323644], "knowledge": [521, 2.704394298], "series": [814, 2.859842836], "theoretical": [898, 3.066084577], "theories": [899, 2.815391074], "point": [692, 2.022988935], "place": [684, 2.067261759], "different": [272, 1.641429348], "work": [984, 1.536875609], "road": [790, 3.46597864], "working": [986, 2.182732655], "variety": [951, 3.011723368], "thing": [901, 2.182732655], "years": [996, 1.826981925], "following": [372, 2.478918837], "follow": [371, 2.622258601], "energy": [313, 2.935350389], "considered": [211, 2.716136116], "high": [429, 1.914876304], "logic": [559, 3.31182796], "mind": [603, 2.239755227], "facts": [347, 3.355630583], "bit": [132, 2.724041295], "achieve": [64, 3.038534625], "overall": [654, 2.935350389], "plans": [687, 3.178296567], "great": [411, 1.960051104], "capitalist": [155, 3.922737042], "game": [388, 3.066084577], "monopoly": [611, 4.063815641], "february": [355, 3.552990017], "right": [786, 1.875044199], "middle": [601, 3.01702842], "depression": [257, 3.297643325], "hard": [422, 2.196686369], "real": [758, 2.046894456], "estate": [323, 3.909664961], "market": [580, 2.510467195], "making": [576, 1.921968533], "money": [610, 2.39839846], "run": [795, 2.513677471], "didn": [269, 2.728017444], "ll": [557, 2.122243893], "story": [863, 2.720080894], "economist": [294, 3.172066018], "created": [225, 2.696642321], "did": [268, 1.991978698], "goal": [402, 2.882832355], "problems": [725, 2.463510212], "associated": [103, 2.901612249], "land": [526, 3.433188817], "private": [722, 2.793884869], "author": [107, 2.846298611], "book": [137, 2.225191862], "favorite": [351, 3.378273059], "board": [135, 3.31899645], "recently": [764, 2.798149267], "york": [998, 2.732009465], "original": [651, 2.651351562], "came": [151, 2.666221724], "rules": [794, 2.955153016], "wealth": [969, 3.236190546], "create": [224, 2.257018294], "trust": [926, 3.129506403], "president": [715, 3.409283296], "published": [744, 2.533158606], "players": [690, 4.210419115], "bank": [118, 3.333489457], "pay": [667, 2.772831459], "taxes": [889, 3.599510033], "make": [574, 1.435639811], "image": [445, 3.236190546], "got": [409, 2.700510798], "credit": [228, 3.31182796], "instead": [479, 2.081769785], "version": [954, 2.802431929], "design": [259, 3.147524909], "called": [149, 2.073453729], "000": [0, 2.728017444], "business": [146, 2.451352007], "read": [756, 2.162160501], "relationships": [770, 2.604496145], "behavior": [123, 2.597478572], "sociology": [840, 4.063815641], "students": [869, 3.027723709], "typically": [933, 2.892178217], "spend": [850, 2.772831459], "deal": [244, 2.704394298], "learning": [536, 2.748138847], "past": [664, 2.387002326], "month": [612, 3.197224577], "bad": [115, 2.580147116], "class": [183, 2.855307681], "university": [940, 2.318576187], "source": [843, 2.772831459], "subject": [873, 2.756302157], "difficult": [273, 2.520129106], "explain": [335, 2.764532657], "mr": [614, 3.859021228], "low": [569, 2.378539652], "career": [158, 3.088684409], "economics": [292, 2.756302157], "blog": [134, 3.223032461], "usually": [948, 2.415739936], "kind": [519, 2.439339851], "daily": [237, 3.027723709], "answer": [86, 2.806733011], "questions": [749, 2.546360118], "members": [595, 3.172066018], "good": [406, 1.678394542], "clear": [185, 2.48827928], "success": [874, 2.935350389], "economic": [291, 2.593988167], "classical": [184, 3.433188817], "keynesian": [518, 3.787562264], "little": [553, 1.941735574], "mean": [587, 2.445327893], "spending": [851, 3.13547657], "consumption": [213, 3.628497569], "goods": [407, 3.409283296], "income": [454, 2.970266654], "production": [731, 2.935350389], "house": [437, 2.970266654], "account": [63, 2.806733011], "suggests": [876, 3.006446311], "question": [748, 2.359067548], "ago": [77, 2.930460404], "supply": [877, 3.147524909], "demand": [255, 2.930460404], "struggle": [868, 3.159720182], "law": [532, 2.864398653], "school": [800, 2.48202926], "exchange": [332, 3.482785758], "built": [145, 2.975355723], "required": [774, 2.925594214], "half": [418, 2.785410242], "groups": [414, 2.950165475], "economy": [296, 2.740041637], "directly": [275, 2.819748379], "potential": [707, 2.543043365], "trade": [917, 3.297643325], "buy": [147, 2.83736998], "according": [62, 2.199031036], "workers": [985, 3.153603955], "labour": [524, 4.004975141], "reasons": [762, 2.832935383], "price": [718, 2.815391074], "rise": [788, 2.995975011], "value": [949, 2.300227048], "strong": [866, 2.395537228], "learn": [535, 2.485149387], "rate": [754, 2.811052672], "website": [971, 3.203614375], "worth": [989, 2.824124754], "problem": [724, 2.155396101], "described": [258, 2.940264404], "percent": [669, 2.906362852], "population": [700, 2.965203352], "men": [597, 3.165874047], "women": [979, 3.165874047], "open": [646, 2.272056171], "lot": [567, 2.130977573], "12": [4, 2.342673739], "stay": [860, 2.911136131], "home": [435, 2.48827928], "strategy": [864, 3.47434689], "power": [708, 2.353573029], "figure": [362, 2.965203352], "position": [701, 2.920751589], "person": [673, 2.081769785], "appear": [87, 3.027723709], "decisions": [250, 2.882832355], "ability": [57, 2.587043695], "firm": [366, 3.5621225], "effective": [302, 3.027723709], "matter": [584, 2.556376896], "love": [568, 2.451352007], "particular": [660, 2.497728169], "project": [736, 2.764532657], "talking": [886, 3.001196955], "friend": [383, 3.054973351], "talk": [885, 2.61868078], "ve": [953, 1.974948959], "thought": [906, 2.192013464], "having": [423, 2.142003043], "scientific": [803, 3.147524909], "small": [834, 2.130977573], "probably": [723, 2.421587905], "needs": [624, 2.364592424], "wrong": [993, 2.600981202], "relationship": [769, 2.513677471], "tell": [892, 2.622258601], "don": [283, 1.661796651], "care": [157, 2.569890615], "trying": [929, 2.401267903], "control": [216, 2.433387452], "reading": [757, 2.533158606], "education": [300, 2.965203352], "important": [448, 1.885283196], "aren": [94, 2.622258601], "total": [916, 2.945202685], "article": [97, 2.124420173], "happy": [421, 2.990780194], "act": [65, 2.850793001], "running": [796, 3.13547657], "practice": [712, 2.930460404], "test": [896, 2.692788752], "looking": [565, 2.409925966], "easily": [289, 2.549687908], "process": [726, 2.126601199], "paper": [657, 2.793884869], "research": [775, 2.111432977], "efficient": [304, 3.425156645], "getting": [397, 2.375734601], "pretty": [717, 2.882832355], "10": [1, 1.893896514], "activities": [68, 3.269863761], "sure": [879, 2.208465069], "11": [3, 2.510467195], "growing": [415, 2.955153016], "processes": [727, 3.178296567], "growth": [416, 2.708292938], "death": [245, 3.31899645], "able": [58, 2.11358583], "myers": [617, 3.236190546], "briggs": [140, 3.256258109], "evidence": [328, 2.673740557], "changes": [170, 2.553026809], "despite": [262, 2.990780194], "points": [693, 2.930460404], "free": [379, 2.005427508], "resources": [777, 2.777006831], "links": [551, 2.629452876], "products": [732, 2.748138847], "truly": [924, 2.798149267], "china": [177, 3.871443748], "war": [965, 3.159720182], "international": [488, 2.911136131], "turn": [930, 2.404145603], "support": [878, 2.361826171], "issues": [503, 2.658759003], "field": [361, 2.756302157], "global": [401, 2.990780194], "markets": [581, 3.105975906], "used": [942, 1.858208785], "areas": [93, 2.901612249], "science": [801, 2.587043695], "analysis": [84, 2.5233706], "especially": [321, 2.175828139], "let": [541, 2.137578257], "david": [241, 2.945202685], "john": [510, 2.764532657], "line": [548, 2.604496145], "led": [538, 2.955153016], "developing": [266, 3.105975906], "countries": [221, 2.955153016], "context": [215, 3.165874047], "data": [238, 2.321225195], "revolution": [784, 3.47434689], "labor": [523, 3.21651778], "mathematical": [583, 3.618741394], "costs": [220, 3.147524909], "terms": [895, 2.48202926], "hours": [436, 3.060513532], "modern": [607, 2.533158606], "professor": [734, 3.111806826], "developed": [265, 2.67752128], "factor": [345, 3.242835089], "completely": [203, 2.824124754], "given": [398, 2.259508955], "factors": [346, 2.925594214], "capital": [153, 2.940264404], "produce": [728, 3.123571668], "country": [222, 2.748138847], "monetary": [609, 3.678759404], "balance": [116, 3.249524077], "equilibrium": [320, 3.846751135], "later": [531, 2.39839846], "century": [167, 2.655048424], "early": [287, 2.439339851], "methods": [600, 3.100178788], "keynes": [517, 3.896761556], "perfect": [670, 2.864398653], "competition": [200, 3.263037796], "development": [267, 2.549687908], "scale": [799, 3.326216698], "economies": [293, 3.648300197], "product": [730, 2.819748379], "cycle": [236, 3.517271934], "british": [142, 3.393657978], "role": [792, 2.520129106], "defined": [253, 3.054973351], "solution": [841, 3.111806826], "2010": [23, 3.027723709], "meaning": [588, 2.67752128], "profit": [735, 3.638349866], "prices": [719, 3.082986388], "individual": [462, 2.48202926], "decision": [249, 2.965203352], "link": [550, 2.819748379], "2006": [19, 3.236190546], "non": [632, 2.640342276], "2015": [28, 3.049463696], "finally": [363, 2.855307681], "critical": [230, 2.83736998], "economists": [295, 2.955153016], "increasing": [457, 3.088684409], "welfare": [973, 3.776133568], "benefits": [127, 3.060513532], "political": [696, 2.67752128], "conflict": [209, 3.229589862], "national": [618, 2.768673449], "today": [910, 2.282208543], "body": [136, 2.850793001], "policy": [695, 2.760408939], "effects": [303, 2.802431929], "distribution": [277, 3.491296448], "united": [939, 2.832935383], "states": [859, 2.533158606], "mental": [598, 2.930460404], "began": [122, 3.033114558], "relations": [768, 3.526082564], "parents": [658, 3.508538254], "authors": [108, 3.283657083], "references": [766, 2.873573029], "edit": [298, 2.901612249], "traditional": [918, 2.887494368], "primary": [720, 3.18456618], "citation": [181, 3.742610876], "needed": [623, 2.533158606], "human": [438, 2.242203208], "seen": [809, 2.460456774], "individuals": [463, 2.553026809], "patterns": [665, 3.197224577], "stress": [865, 3.236190546], "association": [104, 3.229589862], "creating": [226, 2.793884869], "concept": [206, 2.935350389], "works": [987, 2.401267903], "addition": [74, 2.920751589], "doing": [281, 2.282208543], "written": [992, 2.925594214], "major": [573, 2.478918837], "particularly": [661, 2.724041295], "freud": [382, 4.361650085], "jung": [515, 4.110335656], "include": [450, 2.485149387], "robert": [791, 3.18456618], "criticism": [231, 3.378273059], "differences": [271, 3.04398423], "group": [413, 2.326544357], "interests": [486, 3.297643325], "american": [83, 2.48827928], "powerful": [709, 3.04398423], "professional": [733, 3.129506403], "perspective": [676, 2.878191975], "psychologists": [741, 3.628497569], "parts": [663, 3.100178788], "central": [166, 2.832935383], "historical": [432, 3.19087535], "perspectives": [677, 3.401440119], "aspects": [101, 3.147524909], "method": [599, 3.13547657], "concepts": [207, 3.229589862], "psychology": [742, 2.768673449], "ego": [306, 4.492270267], "positive": [702, 2.658759003], "philosophy": [678, 3.37066846], "culture": [233, 3.011723368], "impact": [447, 2.732009465], "form": [376, 2.323881239], "principles": [721, 3.304710492], "2003": [16, 3.482785758], "26": [38, 3.141482594], "28": [40, 3.153603955], "2012": [25, 2.995975011], "isbn": [498, 3.409283296], "978": [56, 3.590031289], "ed": [297, 3.31899645], "2005": [18, 3.31182796], "pdf": [668, 3.482785758], "london": [561, 3.210045266], "white": [975, 3.203614375], "review": [783, 2.736017486], "20": [12, 2.350837049], "word": [981, 2.901612249], "journal": [511, 2.789638578], "2008": [21, 3.01702842], "17": [9, 2.736017486], "19": [11, 2.882832355], "2016": [29, 3.001196955], "2017": [30, 3.229589862], "post": [705, 2.334576528], "cambridge": [150, 3.5621225], "press": [716, 2.819748379], "basic": [120, 2.669974074], "books": [138, 2.681316351], "influence": [472, 2.970266654], "2000": [13, 3.401440119], "essential": [322, 3.165874047], "desire": [261, 3.223032461], "america": [82, 3.129506403], "history": [433, 2.407031608], "2011": [24, 3.123571668], "edition": [299, 3.333489457], "pp": [710, 3.304710492], "successful": [875, 3.049463696], "improve": [449, 2.995975011], "performance": [671, 3.165874047], "job": [508, 2.546360118], "allows": [80, 2.811052672], "2009": [22, 3.129506403], "increase": [455, 2.768673449], "build": [143, 2.925594214], "skills": [833, 3.178296567], "stage": [853, 3.417188476], "age": [75, 2.67752128], "easier": [288, 2.925594214], "remember": [772, 2.819748379], "goals": [403, 3.082986388], "results": [780, 2.424524765], "task": [887, 3.297643325], "won": [980, 2.546360118], "big": [130, 2.067261759], "settings": [819, 3.5621225], "examples": [331, 3.210045266], "memory": [596, 3.401440119], "information": [473, 2.185044794], "training": [919, 3.433188817], "ask": [99, 2.608023485], "allow": [79, 2.704394298], "related": [767, 2.451352007], "provide": [738, 2.460456774], "access": [61, 2.911136131], "team": [890, 2.892178217], "report": [773, 3.060513532], "partner": [662, 3.580641548], "increased": [456, 3.033114558], "writing": [991, 2.708292938], "aware": [113, 3.071686832], "study": [871, 2.305435394], "guide": [417, 3.082986388], "2007": [20, 3.31182796], "smith": [835, 3.46597864], "thomas": [905, 3.256258109], "40": [50, 2.975355723], "space": [846, 2.768673449], "taking": [884, 2.392684159], "gets": [396, 2.878191975], "heart": [427, 3.022361766], "center": [165, 3.011723368], "view": [956, 2.272056171], "light": [545, 2.911136131], "provides": [739, 2.935350389], "core": [218, 2.995975011], "makes": [575, 2.042870306], "greater": [412, 2.772831459], "including": [453, 2.090155579], "doesn": [279, 2.130977573], "issue": [502, 2.748138847], "step": [861, 2.806733011], "traits": [921, 3.165874047], "brain": [139, 3.263037796], "researchers": [776, 2.960165558], "main": [572, 2.543043365], "risk": [789, 2.955153016], "health": [425, 2.700510798], "took": [912, 2.846298611], "neuroticism": [628, 4.004975141], "extraversion": [338, 3.871443748], "agreeableness": [78, 3.949405289], "measure": [590, 3.054973351], "22": [34, 2.970266654], "36": [48, 3.517271934], "known": [522, 2.173537188], "area": [92, 2.846298611], "deep": [251, 2.744082046], "computer": [205, 3.417188476], "vs": [960, 3.648300197], "told": [911, 2.793884869], "humans": [439, 3.401440119], "short": [821, 2.475818059], "recent": [763, 2.507267192], "inside": [477, 2.955153016], "outside": [653, 2.629452876], "style": [872, 3.178296567], "effort": [305, 3.082986388], "academic": [60, 3.304710492], "japan": [507, 4.228118692], "section": [807, 3.269863761], "days": [243, 2.700510798], "effect": [301, 2.633069517], "animals": [85, 3.753660712], "behaviors": [125, 3.7101756], "food": [373, 3.111806826], "natural": [619, 2.569890615], "response": [778, 2.86897532], "young": [999, 2.960165558], "child": [175, 3.165874047], "argued": [95, 3.153603955], "north": [634, 3.491296448], "popular": [699, 2.768673449], "children": [176, 2.892178217], "intelligence": [482, 3.517271934], "18": [10, 2.752212172], "24": [36, 2.850793001], "13": [5, 2.633069517], "cultural": [232, 3.340815497], "gives": [399, 2.824124754], "14": [6, 2.681316351], "studies": [870, 2.728017444], "code": [188, 3.31899645], "participants": [659, 3.552990017], "15": [7, 2.433387452], "behavioral": [124, 3.668502904], "situations": [831, 2.930460404], "community": [196, 2.882832355], "16": [8, 2.500897744], "size": [832, 3.049463696], "unique": [938, 2.643998587], "public": [743, 2.494568609], "limited": [547, 2.995975011], "extremely": [340, 2.859842836], "institutions": [481, 3.385935932], "available": [110, 2.5233706], "forms": [377, 3.105975906], "media": [592, 2.896884108], "30": [42, 2.569890615], "technology": [891, 2.970266654], "local": [558, 3.088684409], "english": [316, 3.333489457], "language": [527, 2.920751589], "21": [33, 2.950165475], "live": [554, 2.520129106], "average": [111, 2.83736998], "23": [35, 3.011723368], "october": [639, 3.482785758], "doi": [280, 3.534971511], "pmid": [691, 4.446807893], "retrieved": [781, 3.47434689], "2018": [31, 3.129506403], "google": [408, 3.449449338], "web": [970, 3.378273059], "december": [248, 3.517271934], "en": [311, 4.361650085], "company": [198, 2.597478572], "april": [90, 3.571339156], "id": [440, 4.175932939], "org": [649, 3.571339156], "november": [637, 3.618741394], "introduction": [493, 3.203614375], "department": [256, 3.425156645], "complex": [204, 2.83736998], "inner": [476, 3.13547657], "possibilities": [703, 3.385935932], "state": [858, 2.395537228], "degree": [254, 3.054973351], "head": [424, 2.724041295], "maybe": [585, 3.049463696], "extraverted": [339, 3.7101756], "creative": [227, 2.892178217], "write": [990, 2.846298611], "leave": [537, 2.873573029], "42": [51, 3.658350533], "systems": [880, 2.819748379], "politics": [697, 3.491296448], "complete": [202, 2.740041637], "standards": [855, 3.269863761], "asked": [100, 2.785410242], "family": [349, 2.539737577], "25": [37, 2.692788752], "27": [39, 3.038534625], "29": [41, 3.263037796], "31": [43, 3.348195604], "conversation": [217, 3.236190546], "32": [44, 3.340815497], "33": [45, 3.499880192], "34": [46, 3.417188476], "35": [47, 3.229589862], "entire": [318, 2.802431929], "music": [616, 3.378273059], "39": [49, 3.517271934], "late": [530, 2.855307681], "phone": [679, 3.571339156], "45": [52, 3.340815497], "force": [374, 2.980470824], "saying": [798, 2.960165558], "50": [53, 2.760408939], "finding": [365, 2.930460404], "old": [643, 2.375734601], "languages": [528, 4.15912582], "add": [72, 2.760408939], "comments": [194, 2.990780194], "debate": [246, 3.172066018], "standard": [854, 2.815391074], "theme": [897, 3.963010942], "2004": [17, 3.526082564], "leading": [534, 3.006446311], "case": [160, 2.29504569], "event": [326, 3.355630583], "net": [626, 3.47434689], "single": [828, 2.463510212], "paul": [666, 3.147524909], "uk": [934, 3.425156645], "applied": [88, 3.07732065], "went": [974, 3.006446311], "aggregate": [76, 3.976804264], "shown": [822, 3.033114558], "special": [847, 2.887494368], "designed": [260, 3.033114558], "friends": [384, 2.768673449], "attention": [105, 2.629452876], "output": [652, 3.441286027], "wage": [961, 3.609079484], "wages": [962, 3.482785758], "bring": [141, 2.756302157], "structure": [867, 2.86897532], "taken": [882, 2.640342276], "started": [857, 2.700510798], "period": [672, 2.864398653], "added": [73, 3.038534625], "industry": [466, 3.141482594], "sort": [842, 3.033114558], "sense": [811, 2.237313223], "competitive": [201, 3.401440119], "property": [737, 3.47434689], "industrial": [465, 3.441286027], "europe": [324, 3.417188476], "living": [556, 2.704394298], "rates": [755, 3.123571668], "offer": [640, 2.740041637], "face": [342, 2.748138847], "empirical": [309, 3.249524077], "2019": [32, 3.37066846], "shows": [823, 2.777006831], "curve": [235, 3.822653584], "measures": [591, 3.37066846], "choice": [178, 3.01702842], "levels": [543, 2.785410242], "european": [325, 3.348195604], "sources": [844, 3.269863761], "year": [995, 2.128786992], "policies": [694, 3.333489457], "marx": [582, 3.896761556], "sciences": [802, 3.46597864], "articles": [98, 2.935350389], "coming": [193, 2.846298611], "socialist": [838, 4.589908737], "durkheim": [286, 5.034594558], "activity": [69, 3.082986388], "rich": [785, 3.141482594], "german": [394, 3.590031289], "linguistic": [549, 4.886174553], "practical": [711, 3.141482594], "religion": [771, 3.776133568], "gender": [390, 3.764834013], "conditions": [208, 3.066084577], "oxford": [655, 3.689122191], "key": [516, 2.556376896], "james": [505, 3.283657083], "2002": [15, 3.526082564], "identity": [444, 3.47434689], "2013": [26, 3.159720182], "network": [627, 3.290625752], "inflation": [471, 3.896761556], "tax": [888, 3.348195604], "debt": [247, 4.019363878], "government": [410, 2.781199709], "employment": [310, 3.5621225], "unemployment": [937, 3.846751135], "fall": [348, 2.855307681], "investment": [496, 3.297643325], "reduce": [765, 3.263037796], "current": [234, 2.549687908], "title": [909, 3.571339156], "quickly": [751, 2.651351562], "drive": [285, 3.04398423], "higher": [430, 2.375734601], "federal": [356, 3.678759404], "firms": [367, 3.753660712], "vol": [958, 3.810819126], "security": [808, 3.340815497], "negative": [625, 2.906362852], "yes": [997, 3.011723368], "quality": [746, 2.864398653], "art": [96, 3.111806826], "moment": [608, 2.920751589], "car": [156, 3.393657978], "organization": [650, 3.263037796], "items": [504, 3.534971511], "stop": [862, 2.864398653], "page": [656, 2.940264404], "news": [630, 2.930460404], "trump": [925, 4.15912582], "involved": [497, 2.915932303], "values": [950, 2.732009465], "2014": [27, 3.027723709], "avoid": [112, 2.811052672], "features": [354, 3.054973351], "service": [816, 2.930460404], "includes": [452, 2.955153016], "facebook": [343, 3.590031289], "fit": [368, 2.970266654], "man": [577, 2.864398653], "black": [133, 3.340815497], "prefer": [713, 3.159720182], "jobs": [509, 3.256258109], "management": [578, 3.117671946], "cases": [161, 2.945202685], "healthy": [426, 3.159720182], "french": [381, 3.457679837], "piketty": [683, 4.094587299], "inequality": [467, 3.433188817], "germany": [395, 3.810819126], "moral": [613, 3.441286027], "france": [378, 3.628497569], "60": [54, 3.31182796], "internal": [487, 3.223032461], "table": [881, 3.340815497], "necessary": [621, 2.700510798], "water": [966, 3.229589862], "normal": [633, 3.038534625], "room": [793, 3.01702842], "vision": [957, 3.401440119], "freedom": [380, 3.409283296], "content": [214, 2.950165475], "instance": [478, 3.105975906], "choose": [179, 2.764532657], "medical": [593, 3.599510033], "index": [458, 3.764834013], "city": [182, 3.203614375], "topic": [915, 3.378273059], "compared": [199, 3.054973351], "socialism": [837, 4.539898316], "chicago": [174, 3.834629775], "wanted": [964, 3.066084577], "return": [782, 2.975355723], "interesting": [485, 2.955153016], "capitalism": [154, 3.678759404], "financial": [364, 2.945202685], "rights": [787, 3.46597864], "legal": [540, 3.393657978], "july": [512, 3.508538254], "check": [173, 2.748138847], "companies": [197, 3.100178788], "lower": [570, 2.748138847], "player": [689, 4.341447377], "poor": [698, 3.297643325], "left": [539, 2.436359223], "simple": [826, 2.5233706], "cars": [159, 4.079083113], "crisis": [229, 3.236190546], "california": [148, 3.526082564], "door": [284, 3.810819126], "institute": [480, 3.401440119], "hold": [434, 2.83736998], "notes": [636, 3.07732065], "included": [451, 2.995975011], "date": [240, 3.326216698], "january": [506, 3.499880192], "useful": [943, 2.940264404], "longer": [563, 2.633069517], "category": [162, 3.580641548], "wrote": [994, 2.841824331], "cost": [219, 2.864398653], "abstract": [59, 3.37066846], "ni": [631, 4.361650085], "se": [804, 4.063815641], "purpose": [745, 3.117671946], "services": [817, 2.995975011], "produced": [729, 3.27673664], "office": [641, 3.340815497], "users": [945, 3.297643325], "volume": [959, 3.499880192], "tools": [914, 3.242835089], "extra": [337, 3.111806826], "archived": [91, 3.776133568], "september": [813, 3.648300197], "2001": [14, 3.590031289], "80": [55, 3.433188817], "options": [647, 3.13547657], "medicine": [594, 4.110335656], "june": [514, 3.355630583], "video": [955, 3.256258109], "games": [389, 3.668502904], "israel": [501, 5.545420182], "machine": [571, 3.37066846], "wiki": [977, 5.545420182], "india": [459, 4.126335998], "fe": [352, 4.424828986], "amazon": [81, 3.834629775], "site": [829, 3.210045266], "100": [2, 2.785410242], "college": [190, 3.27673664], "whorf": [976, 5.85557511], "character": [171, 3.326216698], "indian": [460, 4.515800764], "close": [187, 2.587043695], "indo": [464, 6.307560234], "south": [845, 3.609079484], "characteristics": [172, 3.409283296], "canada": [152, 4.033962678], "wordpress": [982, 4.539898316], "fi": [360, 4.175932939], "images": [446, 3.499880192], "week": [972, 2.940264404], "march": [579, 3.31899645], "database": [239, 4.004975141], "click": [186, 3.599510033], "million": [602, 3.105975906], "august": [106, 3.658350533], "engine": [315, 3.976804264], "oil": [642, 4.142596519], "islam": [499, 6.056245805], "ad": [71, 3.909664961], "speed": [849, 3.482785758], "band": [117, 4.852273001], "displaystyle": [276, 5.162427929], "fear": [353, 3.449449338], "posts": [706, 3.787562264], "user": [944, 3.543940181], "server": [815, 4.361650085], "mini": [604, 4.819483178], "bike": [131, 4.669951444], "indians": [461, 5.768563733], "tribe": [922, 5.85557511], "wikipedia": [978, 4.78773448], "query": [747, 4.78773448], "php": [680, 4.995373845], "christianity": [180, 5.688521025], "ford": [375, 5.309031404], "sql": [852, 5.075416552]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_science.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_science.json deleted file mode 100644 index 075447d..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_science.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.699591886, "feature_log_probs": [-6.071872074, -7.962655972, -6.153749367, -6.906743143, -6.805558701, -6.533267521, -6.940342764, -7.102617639, -6.630072056, -6.985195233, -7.087823196, -6.86875486, -7.154625834, -6.616187459, -7.815862589, -7.694545242, -7.646790112, -7.755623372, -7.433725269, -7.207376701, -7.335012458, -7.170797934, -7.252402355, -7.197314443, -7.26184309, -7.081667532, -7.05590327, -6.925459093, -7.014092639, -7.014362435, -6.634609139, -7.192400644, -7.183098287, -7.356642931, -7.161834755, -6.902094792, -7.215958285, -7.436209425, -7.596295984, -7.690477982, -6.673242987, -7.837420988, -7.077997067, -6.746851717, -7.017151043, -8.218104576, -7.16251873, -7.036950055, -6.611891712, -6.500481516, -6.566477873, -6.419514986, -7.343657221, -6.90342255, -6.897928728, -7.26361199, -7.356755026, -6.37496009, -6.670483348, -6.334549803, -7.001217364, -7.191661173, -7.339312892, -7.347100762, -7.642207151, -7.195149362, -6.858070667, -7.522025279, -6.622789754, -7.65031873, -6.864142998, -8.304415635, -8.432511658, -8.413001376, -6.990455536, -7.031429901, -7.410155827, -6.8574869, -6.407273836, -7.327723208, -7.13708916, -6.658313433, -6.729965516, -7.076524109, -6.162137293, -7.277256193, -7.642529017, -7.776922815, -7.328017343, -7.300516454, -7.296657114, -7.81544255, -6.80817913, -7.060685061, -6.881542503, -6.87490317, -6.764934899, -7.236536149, -8.165561655, -6.698905876, -6.75083509, -7.517564695, -8.695770595, -6.931208064, -7.47850228, -6.897701347, -7.47650208, -6.552740136, -6.965304366, -6.996637082, -6.382081347, -6.828910299, -7.189610606, -6.339632569, -7.031021408, -8.532119801, -6.870131252, -7.29748741, -7.167006503, -6.740203436, -5.89770923, -6.207521748, -6.238568816, -5.77033314, -6.538663807, -8.192807378, -8.368539261, -6.590319814, -6.398308765, -6.243673082, -7.294585745, -7.435955337, -6.388433588, -6.110424125, -6.537594922, -6.847065, -7.261899004, -6.926321536, -7.032053194, -6.527042397, -6.657533914, -6.72355736, -6.104157953, -6.324297621, -6.68182857, -6.805783362, -6.974147029, -6.115845544, -7.632333977, -6.75573607, -6.660143914, -6.549877864, -6.94907951, -7.076126191, -7.523982965, -7.722271976, -7.538775258, -6.91244223, -7.123367526, -7.045289018, -7.265617371, -6.553119876, -6.925734902, -7.216685236, -6.516442658, -8.396668787, -8.431739002, -6.963549302, -7.194586599, -6.796861328, -7.737929842, -7.053572261, -6.203635713, -6.862049958, -6.884189441, -6.386630094, -6.843049665, -6.684070477, -7.222854049, -6.981836112, -6.296294062, -6.476639669, -7.050691267, -6.934183037, -6.666743668, -6.3791249, -5.945677106, -7.289915158, -7.15635486, -7.007806814, -7.264108132, -7.943381807, -7.604598057, -8.559746592, -7.212292356, -8.00214676, -8.214686993, -7.393321158, -7.416570941, -7.011206197, -6.985753324, -7.248062458, -6.394079961, -7.771940415, -6.947778438, -7.774867489, -6.765262496, -7.118728239, -7.893251265, -6.768446533, -7.035402973, -6.608350943, -6.901856345, -6.451339174, -6.443194368, -7.106976486, -7.141183982, -7.590312087, -7.015651556, -6.988623845, -7.073649468, -6.749374307, -7.631693092, -5.809483923, -6.64314176, -7.127205512, -7.550060257, -5.702420453, -6.380824003, -6.765496253, -6.816608428, -7.249074445, -7.085271665, -7.192113618, -7.902575485, -7.674829732, -8.296289567, -7.031479135, -7.407800752, -6.490287123, -7.046822502, -7.032224347, -7.67056652, -7.432201918, -7.621101723, -6.836265762, -6.983789539, -6.786655487, -6.338507953, -6.557342414, -7.196396548, -7.623222526, -6.263855738, -6.872035782, -7.263871146, -7.320110037, -7.781920723, -7.142849737, -7.724020656, -8.263287528, -7.181558218, -8.634199542, -7.50282761, -7.6823528, -7.725959823, -6.312437768, -6.427136956, -8.101528459, -6.353346639, -7.524860709, -5.619127369, -6.816243671, -6.848615105, -6.462946578, -7.034705691, -6.589338828, -7.803781136, -6.843612257, -6.948633345, -6.386865376, -6.982007592, -7.349678873, -6.641781739, -7.141551193, -7.11251102, -7.134143916, -7.376327414, -8.630492465, -7.611384776, -7.73570782, -6.414614089, -6.99439999, -6.602529703, -7.824679968, -7.149930715, -7.257480254, -8.23610268, -7.581940001, -6.712004221, -6.902196609, -6.497006013, -8.286737641, -7.105731699, -7.03642166, -7.054796634, -7.472824736, -6.944949799, -8.014474138, -7.118574054, -6.538200706, -7.599098079, -7.69787703, -7.338893568, -7.081818719, -7.29235876, -6.226824299, -7.826693689, -8.267516633, -8.415705324, -7.419811833, -8.108304962, -7.442449479, -6.876781402, -6.409304175, -6.699300549, -7.567733575, -7.519660789, -7.042323444, -7.966781524, -6.378862203, -6.652458663, -6.947817682, -7.328819809, -6.864015442, -6.91833162, -6.581628802, -7.451662719, -6.187983365, -6.967172826, -7.954944944, -7.317428481, -8.200587807, -7.302392885, -6.749056623, -7.437660481, -7.107495521, -6.698218195, -7.418716437, -6.903062987, -7.896436182, -8.668263166, -6.670337688, -7.44868349, -6.924555739, -6.781079767, -5.959202087, -7.446902998, -7.484464874, -6.868439151, -7.744220476, -8.695770595, -6.910041595, -6.34925258, -6.886418, -8.146653476, -6.469685021, -6.967005864, -7.003779031, -7.3852042, -7.929813146, -6.846148769, -5.830382553, -6.290544854, -6.913849857, -6.7555776, -7.038987096, -7.193726264, -7.11029201, -7.126754205, -6.420718571, -6.883500702, -7.004777414, -7.186512634, -7.021814902, -6.982074221, -6.199977506, -5.803693328, -5.815163588, -6.407093941, -6.787626853, -7.796487919, -6.049013134, -7.655289264, -7.311930062, -7.132364444, -6.562270955, -7.17688676, -7.174887248, -6.701082001, -7.026050482, -6.826396639, -6.859652542, -7.132067296, -7.226515566, -6.52924632, -6.466723817, -6.762658386, -6.322086921, -6.897233984, -5.847742354, -7.072779977, -6.259525117, -6.929831264, -7.343491827, -6.775145742, -7.031342542, -5.771310655, -7.313940764, -7.048580313, -6.532840331, -6.1870421, -7.004147594, -6.765937352, -7.527008598, -8.322688929, -7.365314003, -6.565622305, -6.974141048, -7.471586581, -7.923683403, -6.951913097, -7.203674379, -7.424042294, -8.659598603, -7.198326932, -6.387468498, -6.803822143, -6.708926096, -7.309402225, -6.995928688, -6.630184989, -6.779317946, -6.97531107, -7.27702893, -7.420900423, -7.581126876, -7.153563169, -6.676023383, -6.623732431, -8.20417819, -6.979511228, -7.380192855, -6.427797882, -7.722698994, -7.550676153, -7.160006146, -6.940952305, -6.730425719, -7.439172542, -6.668100952, -7.368940798, -8.421415145, -7.89312539, -6.52707953, -7.181310355, -7.071115273, -7.213083439, -6.371934485, -7.275655129, -7.48882911, -7.515479045, -7.535750526, -6.934962399, -6.645909254, -6.577461849, -7.63414716, -5.873655756, -7.194811731, -6.799144437, -7.891524607, -8.287081587, -8.262414669, -6.835275398, -6.731152311, -7.313871332, -6.989668804, -6.654078626, -6.655815235, -8.247484135, -7.086642564, -6.565685968, -6.687230152, -7.29328528, -6.748814334, -7.603965641, -6.331591787, -6.645118187, -6.844241722, -5.910419983, -6.767143471, -6.578066413, -7.375602478, -6.700391439, -8.329165442, -7.515698704, -6.698290012, -7.144967083, -8.032032198, -8.034976593, -6.380759074, -7.298551823, -6.194257354, -6.454840402, -6.883113822, -6.864339928, -5.737976353, -6.527920757, -8.180844506, -7.009632717, -6.07238986, -6.753536403, -6.169588204, -6.483613704, -6.969061676, -7.344781193, -6.129785624, -6.25456106, -6.729062398, -6.977853036, -8.030317266, -6.996458758, -7.289699451, -7.09302642, -6.7792337, -5.558104453, -6.513751256, -6.370031877, -6.526063716, -6.713100439, -7.708872312, -7.153794099, -6.144147939, -8.628906295, -7.792043568, -7.591342335, -7.890184731, -8.162943456, -8.524830543, -8.562472519, -7.111698938, -6.932542422, -7.006466245, -7.167123441, -6.574395149, -7.750802248, -6.442403648, -6.773214062, -7.345228475, -7.003655726, -7.189590878, -6.19079119, -7.287760782, -7.662666381, -8.58606908, -8.695770595, -7.126841524, -6.50924929, -6.491585127, -6.66129436, -6.860086879, -6.795865302, -7.185865915, -6.909773645, -8.643692828, -8.45237857, -6.989849872, -5.984856818, -6.35047892, -6.521583526, -7.168955407, -8.053385599, -6.958105873, -7.012954372, -7.042638304, -7.104866573, -7.409975364, -7.166523692, -7.072221935, -7.322487605, -5.859652689, -6.828918339, -6.946107253, -7.373517567, -6.690936544, -7.741708886, -8.461509232, -5.378804833, -6.515921233, -6.7156013, -8.057251887, -7.268912915, -7.116706948, -7.101136072, -7.020666254, -8.269273559, -6.555169484, -7.49805347, -7.471857646, -7.883741139, -8.334378724, -7.139471518, -6.627773108, -6.948630998, -6.564107316, -6.351324182, -7.034940783, -6.543928211, -6.462914648, -8.448114078, -6.808300836, -6.72247254, -6.755326982, -7.354129037, -7.351715439, -7.084329627, -7.636498804, -6.907544259, -7.165968696, -6.465686579, -7.103877282, -7.212201553, -8.051382829, -7.961188118, -8.260403304, -8.599676514, -8.590957937, -7.233867313, -7.215031462, -7.0398607, -6.566419012, -7.53531067, -6.873330986, -7.988491567, -7.721199484, -6.356468937, -7.800686034, -6.587799891, -6.635297059, -7.512372457, -6.504458445, -7.457974696, -6.359607331, -6.566195673, -7.398455796, -7.936309332, -7.804578751, -6.970529957, -8.433659079, -7.199909547, -6.259371389, -6.791597453, -8.111023094, -7.331253321, -7.252562022, -6.539338776, -6.4807751, -7.117303859, -6.824930925, -6.526193816, -6.869751886, -7.123252677, -6.796901649, -7.266341144, -7.265893053, -7.197076008, -6.797508768, -6.299786641, -6.777728283, -6.907484268, -6.59615203, -7.196688081, -7.892239238, -7.574247363, -6.94360396, -8.260746551, -7.346780995, -6.814454588, -7.217236877, -7.313453647, -6.781194017, -7.261715938, -6.409101174, -7.371030429, -8.131084509, -7.419494959, -8.15522952, -6.561295853, -6.763933673, -7.024847214, -6.765591145, -8.16034085, -7.881996824, -7.495574363, -7.576141288, -6.392046466, -6.965676068, -6.493859209, -6.900015194, -7.255814912, -6.81539336, -7.505001792, -6.415951025, -6.77065136, -7.127970595, -6.716263571, -6.949758141, -7.474110171, -7.366994873, -7.250161651, -6.44897396, -7.055594297, -7.067327973, -6.778376365, -8.55926787, -6.949949069, -6.940449882, -7.050230218, -6.802709771, -7.716663851, -6.851917554, -6.96684366, -7.662773813, -7.002643337, -6.181632543, -7.04483325, -6.109465809, -7.354025624, -6.102278039, -6.927935359, -7.009610587, -7.01578264, -6.890663019, -6.839842813, -7.156770433, -7.027402565, -7.428921586, -7.852881357, -7.657394655, -6.998752844, -6.981742528, -7.068580584, -7.656584429, -6.913564952, -6.597521546, -7.313085074, -8.318857705, -7.348583652, -7.120495746, -7.349508464, -6.616493013, -7.461043037, -8.153123359, -7.23406706, -7.348446767, -7.108430939, -7.036251415, -6.786052173, -6.982349581, -7.058050561, -7.206936671, -6.05784603, -6.769145876, -6.60982416, -7.127491633, -6.542754181, -7.22169392, -6.859223053, -6.557784534, -6.680142173, -6.711904561, -8.061582293, -8.234613674, -6.652962154, -7.071094616, -6.273976131, -6.996969619, -7.409711574, -8.327461963, -6.679497802, -7.164641213, -8.42589589, -7.736247819, -7.954137858, -7.714900788, -6.47710061, -6.751601727, -7.320003934, -6.83172596, -6.967552548, -6.532951556, -6.819104803, -6.976650323, -6.692250623, -6.31923188, -6.576070055, -6.17373853, -6.982264589, -7.616374204, -6.504792154, -7.005523499, -7.302400212, -6.48489107, -7.559315473, -6.795977868, -7.778605379, -7.268972178, -6.979953144, -6.750409133, -6.75822734, -6.642159562, -6.22377302, -6.959647383, -7.06210283, -6.394014681, -6.914981801, -6.30008606, -7.35968784, -6.194806891, -7.256302297, -6.810659413, -7.314847399, -7.653460783, -7.722555385, -6.968426627, -7.225789066, -7.401802589, -6.94313089, -7.504199899, -6.872439268, -7.148369597, -7.456445314, -6.830616001, -6.685298437, -6.400716033, -7.129618201, -7.023003235, -6.193720499, -6.588947088, -6.998797909, -6.706561361, -7.004211224, -6.910797175, -8.387750461, -7.916725323, -6.76758117, -6.932034419, -7.356964861, -6.83091836, -6.670382711, -6.738395395, -6.256759476, -6.77132336, -7.731374724, -8.109439004, -7.091917554, -7.113852523, -6.714617914, -6.971178434, -7.393712006, -6.69560632, -7.969250425, -7.11281171, -6.507457195, -6.248696188, -7.931081814, -7.20363515, -6.796297656, -7.117145947, -7.034864936, -6.832266901, -7.000798304, -7.356677131, -7.348262744, -6.565548196, -7.855813873, -7.911516711, -7.643007021, -7.175846847, -6.638708625, -7.90899527, -7.075424168, -6.835471425, -7.04856802, -7.010720833, -7.199003487, -7.052596214, -6.460873037, -8.215240727, -8.12232159, -7.298274386, -6.316320942, -5.939704444, -5.992759472, -7.030806938, -6.576738338, -6.167493613, -7.44641753, -6.51997453, -6.47729659, -6.823784752, -7.153944246, -7.027005629, -7.598686263, -7.139579237, -6.967492251, -6.948813269, -6.868350127, -7.326630257, -6.195920154, -6.864913909, -6.429631855, -7.614544483, -6.323246784, -6.700452009, -6.707420517, -6.389869912, -6.555596227, -6.892147761, -7.298999296, -7.35586134, -6.82876118, -7.433991001, -7.135664484, -6.806162523, -8.179888704, -6.981712317, -7.045047581, -5.747020136, -6.270275414, -7.209036161, -6.703026164, -6.27906881, -7.279926419, -6.268256522, -6.811243181, -6.739609654, -7.349157412, -8.205532315, -8.380537961, -7.429862336, -7.173565222, -5.807017586, -6.668166615, -6.424505201, -6.818292116, -7.395055905, -7.743246837, -7.221983151, -7.51774405, -5.658419267, -6.668367691, -6.945448938, -6.779943171, -6.396438476, -7.860744664, -8.221529013, -5.72547867, -6.644374016, -6.872098602, -6.279990206, -6.286977883, -7.019605069, -6.824942557, -6.591907776, -7.463427766, -8.342208223, -8.513304516, -8.695770595, -6.150223639, -6.675683145, -6.972792215, -6.153333973, -6.981417912, -5.732483208, -7.017709969, -6.590289762, -6.753811487, -5.911636504, -6.65909253, -6.77828992, -6.501145916, -6.879053577, -7.03043063, -6.757286502, -5.674130588, -5.932846163, -6.800099515, -6.363036971, -6.657611127, -7.890389224]}, {"log_prior": -0.686743744, "feature_log_probs": [-6.377760474, -7.101874539, -5.920578938, -7.042815469, -6.828387739, -6.956655362, -7.039320212, -7.191491533, -6.973571402, -7.192048071, -7.221599417, -7.101714571, -7.249772694, -6.908964538, -7.695072318, -7.887451076, -7.718179452, -7.472635284, -7.384681323, -7.437219685, -7.456418338, -7.35571668, -7.25762314, -7.202087127, -7.370615082, -7.427848806, -7.175418148, -7.248125854, -7.40847819, -7.28675888, -7.423865631, -7.536347025, -7.358747471, -7.583457055, -7.510963272, -7.472114606, -7.617997428, -7.740747843, -7.693758888, -7.641466017, -7.157177891, -7.903343684, -7.455078926, -7.241478711, -7.650867501, -8.715271875, -7.38230568, -6.872947859, -6.470193209, -7.388692748, -6.748470317, -7.361110303, -7.312856744, -7.334261909, -7.074447182, -6.721607312, -7.345882571, -6.643149349, -7.53084546, -7.518092592, -7.07887593, -7.411291053, -7.368889844, -7.374125897, -7.026066364, -7.710563275, -6.996793377, -7.385538625, -6.81913488, -6.349708874, -6.722296581, -6.68756269, -6.40158783, -6.514982553, -7.144167546, -7.024632787, -7.438333989, -7.71428703, -7.028214973, -6.231378829, -8.465090399, -7.200309588, -6.919370719, -6.781718895, -8.138177994, -7.070568915, -6.624260014, -6.846494586, -7.336841275, -6.69145913, -7.509702824, -7.902309852, -7.04989277, -6.930374593, -7.280663747, -7.065157954, -6.693558382, -7.338042438, -6.332701474, -7.343363473, -7.101799314, -7.255999511, -6.251298352, -7.405944478, -7.684335968, -6.79744882, -6.729412819, -7.049816832, -7.131714333, -7.74854479, -7.120833815, -7.357795279, -7.617587593, -6.235041334, -6.852514126, -6.982716989, -7.307992658, -7.304268603, -6.728949145, -6.94716941, -6.678542741, -6.454491365, -6.578585843, -8.751586845, -8.751586845, -6.268113599, -6.198274403, -7.076858941, -7.077749932, -7.568428255, -6.746725104, -7.273839396, -6.464319993, -6.531803521, -7.295709196, -7.413828785, -5.478771536, -8.093904464, -7.551432261, -6.832342837, -6.89801391, -7.046466711, -7.588061294, -8.255730073, -6.180685637, -7.119863676, -7.250661506, -8.205606829, -6.522786014, -7.675518361, -7.95860629, -6.57876102, -7.172848973, -6.94937708, -7.199038177, -6.442866531, -6.058924436, -7.012263991, -6.623392751, -6.788650205, -7.154739203, -6.360855928, -6.642780415, -7.364834773, -7.531712345, -6.381370379, -6.585350407, -7.708981883, -7.516370167, -7.863100916, -8.417431673, -7.29958035, -7.39307859, -7.151245489, -7.059386945, -7.847360751, -7.107421048, -6.630560786, -7.361365222, -6.795194968, -6.748409024, -7.015038911, -7.638979419, -6.968472458, -7.129046763, -7.71708357, -7.633950243, -7.273922138, -7.077574399, -7.137828968, -6.296045997, -6.54833646, -6.875914797, -6.807060562, -5.922781886, -6.508709081, -6.460583916, -7.026803691, -6.821298168, -7.387465345, -7.130325627, -7.310576753, -7.44579835, -7.113776986, -7.580532708, -7.262779875, -6.657010896, -7.123476107, -7.044420465, -7.114366934, -7.707887417, -7.900617015, -7.684977369, -6.897812298, -6.54536553, -6.677135284, -7.054154978, -7.166705155, -7.3563808, -6.80276223, -7.30169181, -7.735275982, -6.752706853, -5.273718086, -7.830923801, -7.272299597, -7.196604164, -6.768957736, -7.1990054, -7.353597822, -7.479751528, -7.086868668, -7.262251867, -6.486345607, -7.032120539, -7.242965702, -7.138690131, -7.347744225, -7.029069562, -6.346552498, -7.339563048, -7.130808239, -7.008690649, -7.1201533, -6.681749365, -6.783321521, -6.83890192, -7.033731043, -6.621551127, -7.03561612, -6.896395538, -7.428181584, -5.94223612, -7.103260902, -6.894366764, -7.278535267, -6.933958703, -7.231257848, -6.804549196, -6.434412807, -7.340272733, -6.003449932, -6.92470569, -6.90611663, -6.401085968, -6.390544058, -6.834353318, -6.242528957, -7.027139806, -7.387740592, -6.430279214, -8.301738294, -6.516278326, -8.004257951, -7.276629215, -6.777630118, -5.754706377, -7.472867679, -7.220224674, -7.101556663, -7.638470295, -7.450270826, -6.025530441, -7.42581733, -6.380969159, -7.391852611, -6.730513996, -6.367223947, -6.901089203, -7.855436097, -6.773786966, -6.015392712, -7.696694624, -6.769662538, -6.979891792, -6.724444487, -6.951762827, -6.898506936, -7.259652799, -7.420072715, -8.42997991, -6.819382704, -7.595696352, -7.279592489, -7.352572847, -7.099699887, -6.426743759, -6.319664444, -7.014798671, -6.0544407, -7.116414658, -7.156892495, -7.299251671, -7.215266231, -7.360046863, -7.189087117, -6.237977133, -6.83560799, -6.415591525, -6.914602978, -6.95842562, -7.176585517, -7.386657331, -7.777607345, -6.562238387, -7.328698649, -7.177556883, -7.465134289, -6.99354172, -7.708551331, -6.568000707, -7.13063381, -6.944838153, -7.748437192, -7.236225907, -6.914919057, -7.700358402, -7.451565106, -7.730042119, -8.577284255, -6.123432287, -6.871667966, -6.6869625, -8.156839491, -7.173785734, -7.140738968, -7.974560227, -7.13505924, -7.305707986, -6.896774829, -7.217599009, -7.14474224, -7.485268137, -7.356649817, -7.012946835, -7.229621194, -6.782946605, -8.54850141, -6.443645775, -7.013133608, -6.722173217, -7.202558977, -6.849115487, -7.941256336, -6.964770925, -8.087346385, -7.50095691, -6.206696194, -7.045882478, -6.893886544, -6.385615168, -7.508603389, -8.055329905, -8.534881826, -7.855448518, -6.844591665, -7.436929282, -7.223932938, -7.488688638, -7.255433331, -6.535989129, -7.262459757, -6.919640823, -7.017788623, -7.442446455, -6.721119575, -6.553920585, -7.29503793, -7.193155067, -7.280259555, -6.936806016, -6.910853396, -7.185731562, -7.136894954, -7.129299407, -6.561950052, -7.111683739, -7.333884608, -7.001470291, -7.414900141, -7.091240351, -7.107620674, -7.224540358, -7.196315244, -6.836089448, -7.136444753, -7.224016741, -6.962733536, -7.376092878, -6.750694635, -7.426660321, -6.249149501, -6.842478984, -7.107351495, -6.650982769, -7.403544661, -7.545314537, -7.072106494, -7.284130756, -7.423928477, -8.012039679, -7.216540904, -5.703990001, -6.395360226, -5.762369882, -6.860788174, -6.380931792, -6.571219773, -7.251638842, -7.364615304, -6.06396792, -6.403967174, -7.11469731, -6.568494122, -6.970620728, -6.461860302, -7.341414996, -7.278164586, -7.616745622, -7.618814221, -6.678167195, -8.563605575, -7.210726072, -7.453731831, -7.458118385, -7.396480076, -6.823933951, -7.728457999, -5.870036244, -6.883093899, -6.779394027, -6.888638976, -6.814357174, -6.594880203, -6.333811729, -6.854899448, -7.021086975, -7.47210127, -7.667921801, -8.118558195, -7.13462784, -7.537194663, -7.03562478, -6.943651733, -7.185087553, -7.35268233, -7.598131115, -7.612583641, -7.327501163, -6.322818948, -7.524019336, -7.090457429, -7.906124377, -6.868051064, -6.809691987, -7.180433188, -6.310761788, -6.3952261, -6.351236914, -6.573731651, -6.690375723, -7.417108349, -7.005318438, -6.477819229, -7.012816454, -7.665812263, -6.94246805, -6.962979719, -6.77937625, -6.775130222, -6.810368249, -5.987895137, -6.820239292, -6.866694643, -6.70079251, -6.583651632, -6.490781743, -6.959670844, -5.788755207, -5.7141277, -6.817052057, -7.299380024, -6.880764126, -6.854309068, -7.263930485, -7.276321142, -7.215116115, -8.628130742, -6.531534166, -7.269716868, -7.413364167, -6.880513221, -7.367314304, -7.334249396, -6.658127649, -6.831666082, -7.612927218, -7.026213411, -7.166024553, -6.438733939, -7.200900592, -6.525978927, -6.985198213, -7.217122895, -7.280924463, -6.83058655, -7.649149782, -6.956270646, -7.355351646, -8.18069873, -6.253240082, -7.002445261, -7.085367114, -7.140663978, -6.116719716, -6.770301605, -6.757446268, -7.20715515, -7.857099475, -7.114848201, -7.581848555, -8.121209791, -6.255345252, -6.739183844, -6.182518089, -6.250779585, -6.680157831, -6.462328192, -6.520403672, -6.545683213, -7.255543931, -6.67831876, -7.145691482, -6.631539024, -6.7582555, -7.353516235, -7.228547023, -7.172089521, -7.615656509, -7.096369169, -7.620311717, -6.227514178, -6.428815955, -6.032642811, -6.431757363, -7.489182001, -6.805761913, -6.969595382, -7.574683047, -8.236826945, -5.748473286, -6.20054868, -6.677832194, -6.599660021, -6.226079369, -7.240417823, -7.60488577, -7.674957951, -7.537992757, -7.404889947, -8.751586845, -6.979404493, -7.444976378, -6.655937884, -6.391046941, -5.955953801, -7.202626455, -7.21279871, -7.275399189, -6.356575219, -6.966088463, -7.391007294, -7.146502101, -6.467089621, -6.680450508, -6.318157641, -5.620652921, -7.151189685, -7.684167988, -6.745527377, -6.582081431, -7.054854831, -7.53023251, -7.089539169, -6.882805006, -6.129435408, -6.713083816, -6.621373551, -6.705569552, -6.826149053, -7.837214977, -7.839276192, -7.702261967, -7.66429233, -7.149772089, -7.042279349, -7.292469556, -6.799669699, -6.668474009, -8.148715587, -7.679944215, -6.622621125, -7.044975772, -7.47187487, -6.905839246, -6.884626742, -7.165344132, -7.683962632, -7.206321276, -7.733995458, -5.953208078, -6.769755659, -7.040729792, -7.201315892, -6.840139431, -6.311477625, -6.932971671, -7.304412612, -6.856575189, -7.0962753, -7.003593971, -7.705474387, -6.833141291, -6.535047017, -8.366759889, -7.370903567, -6.996210417, -7.504135795, -7.117315103, -6.968711142, -7.126203844, -7.256818225, -7.691308711, -7.306819829, -6.76935304, -6.975994865, -6.534444649, -5.841640992, -7.315549914, -6.985640007, -7.685394734, -6.529734244, -7.047949943, -6.99294172, -7.824717344, -7.346054562, -8.28115333, -8.368742192, -6.124830167, -6.944570755, -7.357891138, -7.35778041, -6.987388391, -7.085247341, -7.17747547, -6.443556298, -6.933371768, -7.84708243, -6.799607217, -6.409883028, -7.004668637, -7.18112451, -7.217805001, -7.455157171, -6.750463818, -6.883032327, -7.753859492, -6.838039477, -6.943834317, -7.024100531, -7.096526931, -8.152646301, -7.560029524, -7.012074505, -6.934343282, -6.790571076, -6.88026709, -6.063229354, -6.433517833, -5.970695564, -6.660179005, -6.958491315, -6.834899764, -6.928706021, -7.294974546, -7.35886239, -7.596989754, -8.083132534, -6.613779685, -7.026138248, -6.95672091, -6.572158474, -7.355477437, -6.438739944, -7.58073098, -6.939274446, -7.255874893, -7.23205209, -7.625565273, -6.873341848, -6.29093394, -7.522101162, -7.089904863, -5.74301668, -6.50339329, -6.658848207, -6.993631656, -7.005013311, -6.831000603, -6.946157236, -6.804832768, -7.234764438, -7.414156806, -6.779852408, -7.312211811, -6.482252406, -6.849729436, -6.513855433, -8.658038822, -6.855557536, -7.552565759, -6.923621366, -7.171783617, -7.342151703, -7.018224733, -7.545214438, -7.320021977, -7.151000451, -6.92570134, -7.38727376, -7.167952843, -7.336871053, -7.627726483, -7.210107129, -7.398750789, -7.269836971, -7.261245231, -7.109869149, -7.383684205, -5.485579161, -5.462854959, -6.467633678, -7.408204659, -7.184667952, -7.30496637, -6.42983771, -6.048220706, -7.195617094, -7.246159917, -7.052675558, -6.487567399, -7.467583732, -8.135155081, -7.067165679, -7.553121696, -7.221624104, -7.398828534, -7.183660554, -7.304789462, -8.463116947, -6.35422244, -6.659753637, -7.939337105, -7.392205785, -6.537062805, -7.540178439, -6.325079082, -7.194706144, -7.255061241, -4.94247714, -6.613514571, -5.419993044, -6.453967695, -5.298064553, -6.816079281, -6.705343458, -7.518585721, -6.843883214, -7.991422975, -6.909395232, -6.830727357, -6.734681661, -7.994036614, -7.999111336, -8.010959622, -6.371111195, -7.925121478, -6.601631253, -7.351877521, -7.64297295, -7.405825828, -7.169640809, -7.114595936, -7.261378138, -6.991690894, -6.862998282, -6.65111518, -6.440552947, -6.868962211, -6.432628457, -7.289294679, -7.917371114, -6.373989124, -7.889778677, -7.379545327, -6.427505441, -6.804443486, -7.082878378, -6.770580492, -7.154019485, -6.604728897, -7.040882231, -6.841294085, -7.174354772, -7.32952163, -7.051969432, -6.460319792, -7.261979875, -5.777178018, -7.162170785, -6.637863622, -6.701800458, -6.812380972, -8.480332137, -7.492732828, -7.12960915, -6.840547848, -7.117505206, -7.345223512, -6.413010087, -7.012669139, -6.861069492, -6.489712558, -7.103033648, -7.732435119, -6.654236646, -7.227852146, -7.613342107, -7.624036904, -7.493677091, -7.314740692, -7.360104594, -6.269385043, -6.756343173, -7.192108925, -6.587224609, -5.880476059, -7.679501461, -7.169677682, -7.626170035, -7.233606004, -7.270290232, -7.030320553, -7.200476751, -6.189316723, -6.201861546, -7.158253977, -7.103091974, -7.156169058, -7.25869301, -7.395852802, -7.367572845, -7.27510647, -5.991227275, -6.789481801, -6.697902265, -7.124196613, -6.204665107, -7.011862971, -6.472372413, -7.386345565, -6.895194261, -6.955283971, -6.347379941, -6.75589332, -7.477415409, -8.164579247, -6.876219873, -6.764829458, -5.785475623, -6.82802106, -6.393202152, -6.316053192, -6.952400739, -6.706059213, -6.679016453, -6.891143927, -6.521800015, -6.988714007, -7.046904173, -7.174335818, -6.996199152, -6.883527005, -7.421771881, -7.546445157, -7.384627237, -6.799726036, -8.336664137, -7.467663796, -6.503788192, -8.282765617, -7.123688346, -7.203128994, -7.170117245, -7.066432079, -7.624542192, -6.776813326, -6.896824399, -7.219562301, -7.482048189, -6.422415291, -6.357937674, -7.504671691, -7.518530612, -5.855133668, -5.900262708, -7.693578096, -5.962848018, -5.818171113, -6.816912369, -7.391713973, -7.735960785, -6.820849038, -5.94140031, -7.035371891, -6.455163593, -6.507252695, -6.860789462, -6.794361849, -7.318460821, -7.004245271, -6.494079589, -7.099342034, -6.886532086, -6.7932758, -7.244467201, -6.995472462, -7.73291514, -7.369302384, -6.668445367, -7.65104939, -7.27465897, -7.483058826, -5.756172528, -6.953294762, -6.801932118, -6.000726453, -6.796698084, -7.243799831, -7.687591008, -7.385559004, -7.385724704, -7.39124562, -6.971789951, -7.226071829, -8.19272007, -7.351686246, -7.604123839, -6.974993113, -7.28526547, -7.185605446, -8.656861081, -6.889247242, -5.993410753, -7.300236755, -6.695372846, -6.854492853, -5.834269724, -7.78837647, -7.144557204, -7.439996579, -7.492464181, -7.052157636, -7.061679251, -6.587326052, -5.952092485, -7.386551929, -7.397654946, -7.653115724, -7.285474902]}], "model_type": "nb", "positive_class_label": "science", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"box": [135, 3.347815268], "called": [144, 1.970893046], "language": [482, 3.19579906], "wrote": [993, 2.99338164], "look": [521, 2.061506177], "looking": [522, 2.384868844], "learn": [490, 2.654668087], "word": [980, 3.158058732], "rules": [776, 3.304012645], "use": [937, 1.61102171], "person": [651, 2.825120068], "quite": [727, 2.639853001], "possible": [675, 2.078138577], "different": [252, 1.698869657], "fact": [324, 2.297620078], "life": [498, 2.118785883], "space": [838, 2.384868844], "longer": [520, 2.740323532], "inside": [450, 2.94235016], "optical": [618, 3.968988949], "imaging": [433, 4.056000326], "fit": [348, 3.139709594], "near": [586, 3.063871517], "light": [499, 2.480463965], "create": [214, 2.362332679], "devices": [247, 3.458163325], "smaller": [826, 2.982964879], "resolution": [761, 3.713055574], "technology": [887, 2.548561581], "make": [534, 1.537570984], "week": [970, 2.865757714], "given": [380, 2.241768], "company": [186, 2.732226321], "red": [744, 3.208702465], "head": [406, 3.03071931], "beam": [115, 4.438992578], "making": [536, 2.080237213], "necessary": [588, 2.982964879], "finally": [345, 2.838483296], "properties": [713, 2.94235016], "brain": [136, 2.99338164], "focused": [352, 3.311181134], "created": [215, 2.643536247], "object": [607, 3.262048446], "wide": [974, 3.103991511], "components": [192, 3.275841768], "lab": [479, 3.41734133], "using": [943, 1.787316784], "liquid": [508, 3.888946241], "camera": [146, 3.955195626], "easy": [279, 2.483603685], "year": [994, 2.097186772], "products": [706, 3.151904867], "kind": [474, 2.512313791], "days": [228, 2.662158759], "earlier": [274, 3.025299243], "elements": [288, 3.355305939], "entire": [294, 2.790333952], "body": [132, 2.732226321], "techniques": [885, 3.139709594], "new": [596, 1.397649793], "years": [995, 1.81593559], "old": [614, 2.621637561], "thinking": [903, 2.884362902], "decades": [231, 3.189409262], "early": [275, 2.461829885], "research": [759, 2.011244342], "led": [492, 2.825120068], "development": [245, 2.720202128], "google": [387, 3.347815268], "facebook": [323, 3.527156196], "personal": [652, 3.019908394], "reasons": [740, 3.098160591], "care": [149, 3.241708762], "20": [13, 2.41670945], "ago": [68, 2.673501035], "months": [578, 3.036168915], "later": [486, 2.449597317], "ve": [951, 2.101469433], "according": [50, 2.53522805], "access": [49, 2.99338164], "medical": [556, 3.409373161], "machines": [531, 3.458163325], "room": [774, 3.176750865], "cost": [209, 2.952350243], "half": [400, 2.834009016], "million": [566, 2.842977686], "world": [987, 1.817549795], "simply": [818, 2.449597317], "device": [246, 3.393624804], "companies": [185, 3.202229951], "pay": [644, 3.325674142], "aren": [94, 2.988159696], "limited": [501, 2.998630995], "reading": [734, 3.063871517], "writing": [990, 3.133667279], "effective": [285, 3.208702465], "quality": [722, 2.922645088], "cells": [156, 3.208702465], "kinds": [475, 3.333000182], "reduce": [745, 3.340380289], "25": [35, 2.93738737], "times": [905, 2.212568846], "course": [213, 2.393452588], "read": [733, 2.51880732], "write": [989, 3.009213105], "idea": [426, 2.308118863], "shown": [812, 2.99338164], "machine": [530, 2.861160005], "scanning": [787, 4.256671021], "blood": [130, 3.582215973], "images": [431, 3.069505335], "better": [121, 2.003431802], "quickly": [726, 2.769191516], "talk": [880, 3.098160591], "science": [789, 2.045145894], "children": [167, 3.713055574], "play": [665, 2.861160005], "alternative": [76, 3.370457744], "things": [901, 2.069787797], "series": [801, 2.825120068], "come": [180, 2.236841882], "expected": [314, 3.139709594], "media": [555, 2.879679053], "field": [340, 2.589663257], "physics": [657, 2.834009016], "interesting": [455, 2.917778899], "results": [766, 2.264240856], "don": [270, 1.894769351], "know": [476, 1.912375439], "size": [822, 2.68113466], "human": [422, 2.302855692], "applied": [87, 3.003908053], "way": [966, 1.544923958], "great": [391, 2.136407485], "engineering": [293, 3.189409262], "working": [985, 2.359551036], "project": [711, 2.720202128], "type": [926, 2.548561581], "words": [982, 2.842977686], "think": [902, 1.984163383], "feel": [337, 2.692695483], "remember": [752, 3.170481252], "processes": [700, 3.215217146], "measure": [554, 3.139709594], "information": [448, 2.116604858], "states": [851, 2.773384394], "issue": [464, 3.069505335], "specific": [841, 2.446562413], "music": [582, 3.734795561], "thought": [904, 2.474213944], "shape": [807, 3.208702465], "color": [179, 3.458163325], "control": [206, 2.625254202], "social": [827, 2.732226321], "terms": [892, 2.752593624], "service": [803, 3.228375231], "real": [735, 2.241768], "response": [763, 3.176750865], "going": [385, 2.161155655], "want": [959, 1.986073604], "work": [983, 1.696004325], "result": [765, 2.356777109], "uses": [942, 2.728202171], "value": [945, 2.596680829], "young": [998, 3.311181134], "love": [526, 2.912936274], "explain": [319, 3.003908053], "open": [617, 2.568901265], "individual": [446, 2.769191516], "begin": [117, 3.189409262], "living": [514, 2.898547537], "ll": [515, 2.219789094], "day": [227, 2.188871054], "need": [589, 1.803114901], "stay": [854, 3.221774547], "end": [290, 2.134187728], "thing": [900, 2.362332679], "trying": [923, 2.684973437], "power": [679, 2.51880732], "researchers": [760, 2.468002744], "currently": [220, 3.019908394], "sound": [835, 3.41734133], "exist": [311, 3.215217146], "century": [158, 3.025299243], "biology": [126, 3.121691088], "shift": [810, 3.650535217], "previous": [690, 2.861160005], "universe": [934, 3.268921325], "outside": [626, 2.834009016], "reality": [736, 3.151904867], "past": [639, 2.565482459], "major": [533, 2.781823263], "nature": [585, 2.483603685], "goes": [384, 3.041648381], "far": [330, 2.222207475], "understanding": [931, 2.568901265], "requires": [758, 3.052698217], "consider": [200, 2.748486842], "simple": [817, 2.259203062], "concept": [197, 3.158058732], "instead": [452, 2.212568846], "fully": [366, 3.036168915], "long": [519, 1.926686954], "model": [570, 2.558679711], "equation": [296, 3.757018698], "view": [954, 2.639853001], "theory": [899, 2.647233109], "success": [869, 3.14578864], "students": [864, 3.500722939], "close": [176, 2.732226321], "came": [145, 2.842977686], "big": [122, 2.310760872], "theories": [898, 3.640484882], "account": [51, 2.957388037], "factor": [325, 3.425373502], "creating": [216, 2.957388037], "biological": [125, 3.158058732], "stories": [859, 3.425373502], "makes": [535, 2.224631718], "gives": [381, 2.875017039], "experience": [315, 2.586172852], "age": [66, 3.03071931], "directly": [257, 2.87037666], "means": [553, 2.177229479], "computing": [196, 3.362853145], "subject": [868, 3.158058732], "objects": [608, 3.325674142], "starting": [848, 2.952350243], "single": [819, 2.191215721], "scientific": [791, 2.558679711], "applications": [86, 3.086599768], "lives": [513, 3.318401382], "ways": [967, 2.300234459], "useful": [939, 2.829554665], "recently": [742, 2.712265579], "collection": [178, 3.41734133], "particles": [635, 3.601264168], "quantum": [723, 3.610926079], "problems": [698, 2.607300398], "current": [219, 2.658406409], "fundamental": [369, 3.28982801], "problem": [697, 2.297620078], "process": [699, 2.134187728], "forms": [359, 3.215217146], "say": [784, 2.154345186], "modern": [572, 2.736266731], "group": [395, 2.512313791], "molecules": [574, 3.492064876], "matter": [549, 2.555295613], "basic": [114, 2.769191516], "models": [571, 2.884362902], "issues": [465, 3.176750865], "comes": [181, 2.40501341], "13": [6, 2.752593624], "event": [303, 3.340380289], "understand": [930, 2.376358154], "details": [241, 3.003908053], "explanation": [320, 3.572826233], "best": [120, 2.011244342], "partial": [633, 4.438992578], "probably": [696, 2.522069966], "theoretical": [897, 3.268921325], "tend": [890, 3.133667279], "food": [355, 3.255222481], "point": [668, 2.076044335], "really": [737, 2.13863218], "doesn": [266, 2.376358154], "exactly": [308, 2.807575759], "animal": [81, 3.56352384], "physical": [656, 2.684973437], "parameters": [632, 3.691778176], "random": [728, 3.362853145], "standard": [845, 2.847492366], "allow": [74, 2.71622598], "yes": [996, 3.103991511], "right": [770, 1.978454519], "today": [907, 2.32139927], "good": [386, 1.887812801], "parts": [638, 2.898547537], "picture": [658, 3.208702465], "provide": [715, 2.593165887], "technologies": [886, 3.691778176], "knowledge": [477, 2.781823263], "area": [92, 2.811933064], "line": [502, 2.688827006], "state": [849, 2.496262082], "particular": [636, 2.639853001], "common": [183, 2.538544803], "sense": [800, 2.650943688], "turn": [924, 2.704391522], "scientists": [793, 2.318729042], "happen": [402, 3.080869094], "critical": [217, 3.208702465], "small": [825, 2.059446444], "did": [248, 2.186531872], "carbon": [148, 3.814838269], "hot": [418, 3.582215973], "short": [811, 2.654668087], "role": [773, 2.957388037], "difficult": [253, 2.684973437], "education": [283, 3.554307185], "external": [321, 3.19579906], "existing": [312, 3.235019773], "little": [511, 2.198282889], "experiments": [318, 3.202229951], "electron": [287, 4.086771984], "particle": [634, 3.997159826], "wave": [964, 3.997159826], "act": [53, 3.202229951], "experiment": [316, 3.063871517], "bit": [127, 2.696578983], "final": [344, 3.127661255], "tiny": [906, 3.340380289], "behavior": [118, 3.092363473], "waves": [965, 3.941589974], "list": [509, 2.643536247], "instance": [451, 3.052698217], "works": [986, 2.474213944], "special": [839, 3.025299243], "similar": [816, 2.332152062], "described": [238, 2.865757714], "face": [322, 3.262048446], "logic": [517, 3.803003811], "present": [685, 2.957388037], "known": [478, 2.143096473], "seen": [797, 2.528627366], "various": [950, 2.636183272], "complex": [190, 2.586172852], "set": [805, 2.019118398], "neural": [595, 3.713055574], "visual": [956, 3.610926079], "imagine": [432, 3.19579906], "night": [598, 3.378120617], "click": [175, 3.630534551], "energy": [291, 2.756717341], "tell": [888, 2.684973437], "actually": [57, 2.297620078], "place": [659, 2.282075724], "range": [729, 2.658406409], "probability": [695, 3.640484882], "statistical": [852, 3.527156196], "likely": [500, 2.480463965], "observed": [609, 3.28982801], "having": [405, 2.396330288], "position": [673, 3.109856631], "water": [963, 2.769191516], "mind": [567, 2.625254202], "values": [946, 3.109856631], "actual": [56, 3.183060035], "sciences": [790, 3.183060035], "clear": [174, 2.669705964], "let": [495, 2.34029322], "death": [230, 3.572826233], "black": [128, 3.139709594], "independent": [445, 3.409373161], "true": [919, 2.493082429], "greater": [392, 3.115756353], "correct": [208, 3.355305939], "rest": [764, 3.014546451], "start": [846, 2.236841882], "page": [628, 2.977796909], "example": [309, 1.926686954], "answer": [83, 2.777594926], "force": [356, 3.189409262], "try": [922, 2.525343291], "order": [621, 2.384868844], "atoms": [102, 3.791307771], "design": [239, 2.582694587], "computer": [194, 2.736266731], "saw": [783, 3.221774547], "including": [440, 2.198282889], "events": [304, 3.248442794], "john": [468, 3.139709594], "especially": [298, 2.625254202], "tools": [911, 3.014546451], "determine": [242, 3.069505335], "gets": [378, 3.058269262], "share": [808, 2.861160005], "function": [367, 2.720202128], "job": [467, 3.058269262], "cause": [153, 3.014546451], "got": [388, 2.728202171], "causes": [154, 3.401467981], "2007": [18, 3.483481133], "case": [151, 2.295012515], "meaning": [552, 2.967540408], "wrong": [992, 3.003908053], "points": [669, 2.825120068], "support": [872, 2.673501035], "does": [265, 1.928490381], "considered": [201, 2.998630995], "local": [516, 3.063871517], "truth": [921, 3.518267249], "travel": [918, 3.509456619], "faster": [332, 3.19579906], "effect": [284, 2.696578983], "core": [207, 3.318401382], "pattern": [642, 3.458163325], "produce": [702, 2.982964879], "material": [544, 3.019908394], "perfect": [647, 3.158058732], "total": [913, 3.063871517], "public": [719, 2.708320801], "reason": [739, 2.60020817], "huge": [421, 2.998630995], "live": [512, 2.752593624], "2005": [16, 3.791307771], "high": [411, 2.021096638], "levels": [497, 3.014546451], "designed": [240, 2.852027521], "microscope": [563, 3.901849646], "scale": [786, 2.781823263], "level": [496, 2.402110651], "discovered": [258, 3.098160591], "powerful": [680, 2.957388037], "fast": [331, 3.069505335], "develop": [243, 3.127661255], "strong": [861, 2.852027521], "percent": [646, 3.202229951], "hold": [415, 3.215217146], "principle": [693, 3.56352384], "moment": [575, 3.202229951], "conditions": [198, 2.977796909], "option": [619, 3.401467981], "late": [485, 3.325674142], "required": [757, 2.865757714], "bring": [138, 3.208702465], "happens": [403, 3.121691088], "ones": [615, 2.829554665], "important": [435, 2.061506177], "ideas": [427, 2.829554665], "usually": [944, 2.614443286], "change": [161, 2.214969807], "frame": [361, 3.691778176], "soon": [833, 3.014546451], "target": [881, 3.691778176], "image": [430, 2.847492366], "feet": [338, 3.968988949], "ground": [394, 3.347815268], "zero": [999, 3.449864522], "path": [640, 3.409373161], "built": [141, 2.773384394], "perspective": [653, 3.318401382], "defined": [234, 3.164250703], "period": [650, 3.248442794], "mean": [551, 2.62888397], "changes": [162, 2.650943688], "tool": [910, 3.28982801], "evidence": [306, 2.927535074], "laboratory": [480, 3.509456619], "software": [829, 3.333000182], "sort": [834, 3.275841768], "patterns": [643, 3.275841768], "multiple": [581, 2.700477623], "false": [328, 3.640484882], "speed": [842, 2.927535074], "distance": [262, 3.527156196], "completely": [189, 2.875017039], "self": [799, 2.790333952], "offers": [612, 3.241708762], "natural": [584, 2.708320801], "areas": [93, 3.003908053], "include": [437, 2.607300398], "artificial": [98, 3.318401382], "intelligence": [454, 3.385842663], "eventually": [305, 3.164250703], "algorithms": [73, 3.492064876], "typically": [928, 3.052698217], "non": [600, 2.60020817], "associated": [101, 3.215217146], "generally": [376, 3.086599768], "study": [866, 2.343021734], "term": [891, 2.708320801], "health": [407, 3.103991511], "nearly": [587, 2.982964879], "shows": [813, 2.777594926], "2017": [28, 3.362853145], "future": [370, 2.51880732], "mars": [542, 4.374454057], "international": [456, 3.014546451], "2015": [26, 3.151904867], "2016": [27, 3.208702465], "american": [78, 2.786069553], "advantage": [65, 3.296895177], "test": [893, 2.704391522], "program": [709, 3.202229951], "data": [223, 2.110090177], "statement": [850, 3.248442794], "effects": [286, 3.139709594], "needed": [590, 2.53522805], "cases": [152, 2.889068793], "return": [768, 3.215217146], "went": [972, 3.098160591], "step": [855, 2.636183272], "hours": [419, 3.121691088], "lot": [525, 2.31340988], "finding": [347, 3.036168915], "dna": [264, 3.713055574], "normal": [601, 3.235019773], "significant": [815, 2.903320816], "performance": [649, 2.962451339], "compared": [187, 3.075171073], "month": [577, 3.115756353], "earth": [276, 3.063871517], "large": [483, 2.184198149], "numbers": [606, 3.170481252], "related": [748, 2.515555285], "impact": [434, 3.080869094], "low": [527, 2.658406409], "paper": [630, 2.636183272], "published": [720, 2.474213944], "papers": [631, 3.483481133], "follow": [353, 2.903320816], "original": [624, 2.769191516], "article": [96, 2.489912854], "didn": [249, 2.765016144], "story": [860, 2.856583338], "deal": [229, 3.063871517], "scientist": [792, 3.103991511], "primary": [692, 3.527156196], "goal": [383, 2.967540408], "disease": [260, 3.745845397], "started": [847, 2.589663257], "doing": [268, 2.431524536], "skin": [824, 4.185212057], "attention": [103, 3.19579906], "certain": [159, 2.528627366], "money": [576, 2.922645088], "discovery": [259, 3.333000182], "maybe": [550, 3.121691088], "wasn": [962, 3.19579906], "law": [487, 3.268921325], "table": [876, 3.370457744], "sure": [873, 2.40792462], "pretty": [689, 2.879679053], "used": [938, 1.739871007], "coming": [182, 3.086599768], "questions": [725, 2.647233109], "relationship": [749, 3.151904867], "center": [157, 2.908116988], "second": [795, 2.387721913], "evolution": [307, 3.347815268], "green": [393, 3.610926079], "humans": [423, 3.052698217], "believe": [119, 2.700477623], "white": [973, 3.098160591], "processing": [701, 3.492064876], "looks": [523, 3.041648381], "property": [714, 3.572826233], "isn": [463, 2.477334072], "form": [358, 2.316065924], "approach": [89, 2.704391522], "resources": [762, 3.268921325], "needs": [591, 2.865757714], "able": [48, 2.161155655], "predict": [684, 3.500722939], "deep": [233, 2.908116988], "digital": [254, 3.248442794], "task": [882, 3.492064876], "perform": [648, 3.268921325], "ability": [47, 2.712265579], "available": [107, 2.471103522], "method": [561, 2.786069553], "introduced": [458, 3.591694717], "based": [113, 2.017144064], "continue": [204, 3.121691088], "temperature": [889, 3.474970443], "unique": [932, 3.282810437], "involved": [460, 3.009213105], "lead": [489, 2.696578983], "purpose": [721, 3.282810437], "output": [625, 3.660687589], "solution": [830, 2.852027521], "require": [756, 3.109856631], "highly": [413, 2.94235016], "input": [449, 3.670944089], "production": [705, 3.601264168], "sum": [870, 3.928166954], "added": [60, 2.847492366], "product": [704, 2.977796909], "variables": [948, 3.82681446], "addition": [62, 3.121691088], "easily": [278, 2.669705964], "build": [139, 2.5723318], "adding": [61, 3.282810437], "000": [0, 2.493082429], "100": [3, 2.720202128], "potential": [678, 2.700477623], "add": [59, 2.756717341], "steps": [856, 3.19579906], "identify": [428, 3.347815268], "complete": [188, 2.87037666], "written": [991, 3.109856631], "connected": [199, 3.347815268], "direct": [255, 3.202229951], "review": [769, 3.092363473], "chemical": [165, 3.248442794], "layer": [488, 3.814838269], "allows": [75, 2.807575759], "rate": [730, 2.952350243], "number": [605, 2.090796974], "improve": [436, 3.025299243], "history": [414, 2.528627366], "systems": [875, 2.647233109], "linear": [503, 3.660687589], "feature": [334, 3.086599768], "changing": [163, 3.063871517], "factors": [326, 3.275841768], "left": [493, 2.621637561], "dark": [222, 3.610926079], "heart": [408, 3.28982801], "sample": [780, 3.28982801], "features": [335, 2.760858134], "took": [909, 2.781823263], "density": [236, 4.026147362], "provides": [717, 3.075171073], "sources": [837, 3.466531574], "couple": [212, 3.262048446], "produced": [703, 3.103991511], "practical": [682, 3.241708762], "lines": [504, 3.385842663], "reported": [754, 3.393624804], "overall": [627, 3.282810437], "error": [297, 3.483481133], "square": [844, 3.691778176], "increasing": [444, 3.248442794], "ask": [99, 2.884362902], "note": [603, 2.807575759], "home": [416, 2.68113466], "2011": [22, 3.362853145], "doi": [267, 3.255222481], "10": [2, 1.924886773], "11": [4, 2.610865464], "19": [12, 3.103991511], "species": [840, 3.527156196], "planet": [661, 3.650535217], "analysis": [79, 2.790333952], "16": [9, 2.847492366], "report": [753, 3.133667279], "journal": [469, 2.728202171], "university": [935, 2.222207475], "40": [42, 3.133667279], "30": [40, 2.625254202], "12": [5, 2.545211494], "away": [110, 2.551922929], "version": [952, 2.803237357], "mass": [543, 3.458163325], "technique": [884, 3.362853145], "environment": [295, 3.075171073], "author": [105, 2.889068793], "site": [820, 3.092363473], "variety": [949, 3.164250703], "larger": [484, 2.879679053], "positive": [674, 3.189409262], "city": [172, 3.092363473], "york": [997, 2.967540408], "help": [409, 1.995679825], "style": [867, 3.41734133], "europe": [302, 3.876207215], "brand": [137, 3.757018698], "math": [546, 3.928166954], "easier": [277, 2.99338164], "methods": [562, 2.879679053], "choice": [168, 3.228375231], "saying": [785, 3.262048446], "map": [539, 3.591694717], "edge": [281, 3.601264168], "getting": [379, 2.565482459], "economic": [280, 3.691778176], "complexity": [191, 3.441634023], "agent": [67, 4.220303377], "expect": [313, 3.063871517], "plant": [662, 3.928166954], "house": [420, 3.19579906], "web": [968, 3.282810437], "global": [382, 3.262048446], "essential": [299, 3.355305939], "services": [804, 3.483481133], "studies": [865, 2.998630995], "taking": [879, 2.748486842], "focus": [351, 2.765016144], "types": [927, 2.781823263], "organization": [623, 3.610926079], "animals": [82, 3.660687589], "professor": [708, 3.052698217], "plants": [663, 3.83893582], "air": [70, 3.268921325], "key": [473, 2.614443286], "2003": [14, 3.814838269], "loss": [524, 3.630534551], "developed": [244, 2.811933064], "functions": [368, 3.409373161], "united": [933, 3.268921325], "class": [173, 3.098160591], "track": [914, 3.370457744], "provided": [716, 3.14578864], "north": [602, 3.56352384], "dr": [272, 3.691778176], "practice": [683, 3.075171073], "topic": [912, 3.518267249], "prize": [694, 3.803003811], "book": [133, 2.704391522], "guide": [399, 3.208702465], "following": [354, 2.538544803], "relevant": [751, 3.572826233], "representation": [755, 4.056000326], "learning": [491, 2.720202128], "hand": [401, 2.712265579], "growth": [398, 3.208702465], "business": [142, 2.879679053], "rule": [775, 3.492064876], "school": [788, 2.932449089], "building": [140, 2.688827006], "general": [375, 2.505862155], "decision": [232, 3.370457744], "philosophy": [655, 3.982975191], "avoid": [109, 3.127661255], "figure": [342, 2.879679053], "helps": [410, 3.121691088], "includes": [439, 3.03071931], "distribution": [263, 3.572826233], "negative": [592, 3.449864522], "takes": [878, 2.72419415], "engine": [292, 3.968988949], "moving": [579, 3.052698217], "hard": [404, 2.425572137], "bad": [111, 2.932449089], "options": [620, 3.262048446], "mathematics": [548, 3.582215973], "variable": [947, 3.876207215], "market": [541, 3.158058732], "ad": [58, 4.056000326], "mathematical": [547, 3.189409262], "average": [108, 3.109856631], "man": [537, 3.215217146], "500": [44, 3.304012645], "men": [560, 3.492064876], "samples": [781, 3.56352384], "examples": [310, 3.103991511], "weight": [971, 3.554307185], "apply": [88, 3.296895177], "sports": [843, 4.011548563], "team": [883, 2.5723318], "family": [329, 3.003908053], "additional": [63, 3.063871517], "population": [672, 3.591694717], "traditional": [915, 3.19579906], "higher": [412, 2.658406409], "culture": [218, 3.393624804], "network": [593, 3.063871517], "lower": [528, 2.893796934], "length": [494, 3.362853145], "women": [978, 3.441634023], "shared": [809, 3.449864522], "drive": [273, 3.362853145], "algorithm": [72, 3.650535217], "fall": [327, 3.255222481], "application": [85, 3.158058732], "14": [7, 2.889068793], "15": [8, 2.541872593], "jump": [471, 3.151904867], "phase": [654, 3.768318253], "17": [10, 2.952350243], "18": [11, 2.879679053], "text": [895, 3.536124866], "direction": [256, 3.282810437], "21": [31, 3.262048446], "difference": [250, 2.856583338], "action": [54, 3.14578864], "stop": [857, 3.133667279], "source": [836, 2.708320801], "included": [438, 3.235019773], "particularly": [637, 2.998630995], "cell": [155, 3.441634023], "groups": [396, 3.133667279], "game": [371, 3.362853145], "war": [961, 3.620682254], "running": [778, 2.982964879], "structures": [863, 3.474970443], "select": [798, 3.713055574], "networks": [594, 3.500722939], "choose": [169, 3.115756353], "users": [941, 3.318401382], "psychology": [718, 3.914921727], "recent": [741, 2.639853001], "memory": [559, 3.723866491], "base": [112, 3.582215973], "run": [777, 2.643536247], "solve": [832, 3.362853145], "post": [676, 2.586172852], "record": [743, 3.409373161], "training": [916, 3.385842663], "22": [32, 3.121691088], "offer": [611, 2.972655509], "solutions": [831, 3.425373502], "23": [33, 3.325674142], "hypothesis": [424, 3.582215973], "generation": [377, 3.311181134], "testing": [894, 3.228375231], "free": [362, 2.477334072], "financial": [346, 3.601264168], "david": [226, 3.401467981], "countries": [210, 3.713055574], "middle": [565, 3.28982801], "oil": [613, 3.982975191], "income": [441, 4.2026038], "check": [164, 2.852027521], "flow": [349, 3.610926079], "chance": [160, 3.183060035], "50": [43, 2.794616614], "buy": [143, 3.282810437], "price": [691, 3.401467981], "members": [558, 3.449864522], "community": [184, 2.917778899], "domain": [269, 4.026147362], "search": [794, 2.662158759], "asked": [100, 2.982964879], "department": [237, 3.425373502], "progress": [710, 3.355305939], "2019": [30, 3.248442794], "org": [622, 3.433470712], "experimental": [317, 3.483481133], "ratio": [731, 3.888946241], "fields": [341, 3.275841768], "america": [77, 3.536124866], "frequency": [364, 3.791307771], "minutes": [568, 3.458163325], "sex": [806, 4.151310505], "content": [202, 3.052698217], "achieve": [52, 3.296895177], "signal": [814, 3.745845397], "noise": [599, 3.968988949], "blue": [131, 3.723866491], "main": [532, 2.829554665], "differences": [251, 3.527156196], "national": [583, 2.838483296], "super": [871, 3.433470712], "sites": [821, 3.691778176], "question": [724, 2.596680829], "books": [134, 3.41734133], "graph": [390, 4.256671021], "art": [95, 3.385842663], "computers": [195, 3.545174702], "link": [505, 3.041648381], "references": [747, 3.14578864], "taken": [877, 2.838483296], "2012": [23, 3.158058732], "worth": [988, 3.009213105], "hope": [417, 3.115756353], "structure": [862, 2.781823263], "began": [116, 3.069505335], "2014": [25, 3.296895177], "authors": [106, 3.235019773], "microscopy": [564, 4.275363154], "et": [301, 3.545174702], "al": [71, 3.518267249], "molecular": [573, 3.713055574], "activity": [55, 3.208702465], "fluorescence": [350, 5.154612614], "contrast": [205, 3.536124866], "january": [466, 3.536124866], "save": [782, 3.393624804], "october": [610, 3.702360285], "pressure": [688, 3.393624804], "definition": [235, 3.449864522], "links": [506, 3.098160591], "edit": [282, 3.282810437], "displaystyle": [261, 4.484454952], "frac": [360, 4.582093421], "27": [37, 3.536124866], "24": [34, 3.19579906], "36": [41, 3.901849646], "advanced": [64, 3.268921325], "volume": [958, 3.601264168], "isbn": [462, 3.757018698], "2004": [15, 3.757018698], "chemistry": [166, 3.500722939], "2006": [17, 3.56352384], "french": [363, 3.968988949], "2009": [20, 3.340380289], "pp": [681, 3.791307771], "society": [828, 3.063871517], "london": [518, 3.582215973], "press": [687, 3.036168915], "retrieved": [767, 3.83893582], "online": [616, 2.847492366], "industry": [447, 3.139709594], "government": [389, 3.483481133], "materials": [545, 3.235019773], "door": [271, 3.997159826], "computational": [193, 3.670944089], "investment": [459, 3.83893582], "2010": [21, 3.347815268], "2013": [24, 3.241708762], "won": [979, 2.740323532], "update": [936, 3.640484882], "wolfram": [977, 6.299744919], "march": [540, 3.640484882], "theme": [896, 3.888946241], "context": [203, 3.41734133], "wanted": [960, 3.109856631], "favorite": [333, 3.660687589], "worked": [984, 3.009213105], "ai": [69, 3.968988949], "section": [796, 3.362853145], "user": [940, 3.340380289], "website": [969, 3.183060035], "growing": [397, 3.158058732], "release": [750, 3.378120617], "code": [177, 2.912936274], "60": [46, 3.311181134], "reference": [746, 3.702360285], "cities": [171, 4.040962448], "blog": [129, 3.318401382], "2008": [19, 3.311181134], "app": [84, 3.723866491], "vision": [955, 3.650535217], "mobile": [569, 3.997159826], "platform": [664, 3.582215973], "internet": [457, 3.275841768], "linux": [507, 5.473066345], "projects": [712, 3.458163325], "05": [1, 3.901849646], "institute": [453, 3.183060035], "2018": [29, 3.282810437], "surface": [874, 3.092363473], "reach": [732, 3.103991511], "ice": [425, 3.997159826], "june": [472, 3.492064876], "29": [39, 3.572826233], "pdf": [645, 3.723866491], "archived": [91, 4.151310505], "estate": [300, 4.353834769], "april": [90, 3.582215973], "video": [953, 3.019908394], "literature": [510, 3.713055574], "popular": [671, 2.803237357], "player": [666, 4.071267798], "increase": [442, 2.962451339], "28": [38, 3.509456619], "en": [289, 4.811667863], "increased": [443, 3.340380289], "medicine": [557, 3.572826233], "date": [225, 3.275841768], "professional": [707, 3.401467981], "null": [604, 4.507985449], "statistics": [853, 3.863628433], "news": [597, 3.019908394], "risk": [771, 3.235019773], "road": [772, 3.591694717], "posts": [677, 3.82681446], "car": [147, 3.640484882], "server": [802, 4.238321882], "games": [372, 3.982975191], "daily": [221, 3.393624804], "august": [104, 3.757018698], "articles": [97, 3.483481133], "26": [36, 3.333000182], "july": [470, 3.757018698], "wiki": [975, 5.412441724], "pages": [629, 3.601264168], "sales": [779, 3.791307771], "patients": [641, 4.256671021], "wikipedia": [976, 4.878359238], "file": [343, 3.997159826], "uk": [929, 3.863628433], "february": [336, 3.863628433], "told": [908, 2.977796909], "database": [224, 4.026147362], "skills": [823, 3.650535217], "ii": [429, 3.863628433], "gender": [374, 4.313829435], "policy": [670, 3.650535217], "players": [667, 4.151310505], "store": [858, 3.325674142], "plan": [660, 3.183060035], "twitter": [925, 3.518267249], "chrome": [170, 5.301216088], "iran": [461, 5.760748418], "country": [211, 3.304012645], "management": [538, 3.500722939], "president": [686, 3.670944089], "gay": [373, 4.913450557], "trump": [920, 4.532083001], "friends": [365, 3.378120617], "lambda": [481, 5.412441724], "android": [80, 4.98755853], "m3": [529, 5.760748418], "wordpress": [981, 4.634737155], "cars": [150, 4.056000326], "ford": [357, 5.537604866], "trans": [917, 4.484454952], "voice": [957, 4.134781203], "fiat": [339, 6.299744919], "537": [45, 6.299744919], "rear": [738, 4.532083001], "bike": [123, 4.484454952], "mozilla": [580, 6.299744919], "bikes": [124, 4.878359238]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_shopping.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_shopping.json deleted file mode 100644 index 737140c..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_shopping.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.702773319, "feature_log_probs": [-7.280188584, -6.764645672, -6.672550321, -7.010265911, -7.055273354, -6.927072017, -7.051407418, -7.037735598, -6.970937812, -7.053178298, -7.099637198, -7.06485778, -7.120334134, -6.942360987, -7.231120826, -7.248686597, -7.216284711, -7.177602014, -7.162172133, -7.196545343, -7.153836597, -7.100317344, -7.058028422, -7.149228137, -7.042815233, -7.080624346, -7.109008846, -6.979053986, -7.145565921, -7.119656554, -7.121234118, -7.136512126, -7.124088319, -7.380509943, -7.18684075, -7.199807629, -7.184620455, -7.202654547, -7.008054746, -7.274433038, -7.197169173, -7.173196323, -7.23072275, -7.206142636, -7.256209992, -7.132361612, -7.283349963, -7.28481573, -7.104291885, -7.213999908, -7.380098613, -7.305158276, -7.219309874, -7.275464536, -7.441646716, -7.245511517, -7.313371254, -7.218608942, -7.036972223, -6.890991532, -7.007015089, -7.398749943, -6.879497721, -6.987917533, -7.04915884, -7.120823274, -7.128332653, -7.18877654, -6.870285842, -6.832531183, -6.992928435, -7.157927645, -7.164098424, -7.2245813, -7.1120077, -7.306499609, -7.213032125, -7.212053035, -7.06125558, -7.243206853, -7.103749852, -6.913069103, -7.05792498, -7.110582375, -7.172195409, -7.144085104, -7.406764794, -7.083312076, -7.228067238, -6.891220901, -7.025974618, -7.095989884, -7.335102456, -6.85954019, -6.862630347, -7.08434509, -6.840952089, -7.151523483, -7.061941236, -7.173736985, -7.285300218, -7.019307055, -7.091682717, -7.066435114, -7.012091551, -7.163269598, -7.009740705, -7.070565448, -7.413084968, -7.156863056, -7.129290681, -7.116758412, -7.188697207, -7.019211511, -7.02186239, -7.131833439, -7.164840223, -6.86956944, -7.437432369, -6.983887494, -7.183637733, -7.284893265, -7.188687274, -7.144721937, -7.143458989, -7.214393868, -7.278371648, -6.791840957, -7.108136092, -7.371597379, -7.2958643, -7.435450802, -7.155658655, -7.091085388, -7.132158399, -7.043195918, -7.185597313, -7.081214021, -6.608790456, -6.744856191, -7.421677349, -7.441646716, -6.83818376, -7.273989173, -7.138912846, -7.344748267, -7.419546153, -7.438890075, -7.097851797, -6.912666641, -6.985028361, -6.675804315, -7.096486699, -6.785362711, -6.628855317, -6.888285195, -7.198271958, -7.118782303, -7.420106555, -7.415224365, -7.40012129, -7.430451363, -7.109890724, -7.237420837, -7.178193969, -7.064160259, -7.389362107, -7.157091678, -6.882366608, -7.322535898, -6.946375071, -7.097978347, -6.767187648, -7.195987684, -6.991344565, -7.222516754, -7.289624534, -6.871696571, -6.941096849, -6.894988802, -6.990551835, -7.300970077, -6.931694782, -6.78187821, -7.280822315, -7.121435077, -6.985841063, -7.25904573, -6.93799552, -6.914953814, -7.115202189, -7.441646716, -7.253953629, -7.121080354, -7.16228389, -7.065865332, -7.075105665, -7.24507487, -7.351906093, -7.441646716, -7.169667056, -6.884733146, -7.187387483, -7.084924942, -7.208694913, -7.274237233, -7.26762563, -7.348826127, -6.903862802, -7.012575836, -6.865028506, -7.075441472, -7.246078545, -7.095060517, -7.344400271, -7.20444604, -6.825942487, -7.010187258, -7.185218736, -6.963267628, -7.067120467, -7.438480369, -7.088896003, -7.086502778, -7.339325376, -7.241748182, -7.343642988, -6.935869984, -7.441646716, -7.029980946, -7.32012889, -6.841087236, -6.974438494, -7.362178668, -7.276283313, -7.087008201, -7.140764094, -7.225619644, -7.025658335, -6.898020855, -7.4342116, -7.364926431, -6.867906833, -6.660227241, -7.258869436, -7.106117339, -7.135503485, -7.100577042, -7.281768397, -7.001069598, -7.183421812, -7.163247634, -7.225147211, -7.101105159, -7.184332974, -7.267802089, -7.162810903, -6.747724346, -7.116586997, -6.925966989, -7.189552412, -7.031319627, -7.088604856, -7.120891724, -7.159751076, -6.952523857, -7.124166879, -6.951536312, -7.191312642, -7.416642508, -6.815354132, -7.087058158, -7.070303851, -7.087260162, -7.242623117, -6.960490479, -7.064919522, -7.140127321, -7.219628969, -7.20220049, -7.100510945, -7.092816908, -7.281965516, -7.412388358, -7.384777748, -7.426962623, -7.099888902, -6.504220908, -6.971974973, -6.581119105, -6.915305918, -7.10662207, -7.246080058, -7.14638148, -7.220337941, -7.112409614, -7.026814414, -7.22543025, -7.2075253, -7.118532236, -7.26584366, -7.285265029, -7.441646716, -7.350549474, -7.002643269, -7.188876255, -7.377017186, -7.101109234, -7.08089235, -7.187442351, -6.983481587, -7.064670658, -6.995780845, -7.400519421, -6.723346391, -6.785940015, -7.154978688, -6.707017681, -7.103545892, -6.938049387, -7.194094361, -7.131584778, -7.355385784, -7.407070386, -7.152388327, -7.300680721, -6.852688231, -6.826733789, -6.967064774, -6.910514649, -6.833950909, -6.447113531, -7.265954234, -7.434881987, -7.108876169, -7.245980506, -7.441646716, -7.131487074, -7.441646716, -7.370574697, -7.011089989, -7.109111456, -7.126389303, -6.959010983, -7.39015005, -7.415796841, -7.120567799, -7.154105828, -7.279859197, -7.372592082, -6.800148617, -7.02709484, -7.19208864, -6.999512088, -7.301673069, -7.218743121, -7.31863723, -7.055975386, -6.796925772, -7.002642509, -7.035284796, -7.133295148, -7.203378683, -7.088458609, -7.321702307, -7.049644551, -7.092668871, -7.210080805, -7.17940339, -7.219053483, -7.136544085, -7.088889634, -6.790437763, -7.315805922, -7.343805371, -7.233936757, -7.173937999, -7.212426203, -6.894187056, -7.181074197, -7.252820084, -7.204782666, -7.239320568, -7.148989128, -7.002496583, -6.902290438, -6.962568415, -7.264427061, -7.180564791, -6.856507312, -7.094679925, -6.970976901, -7.238208867, -7.13675731, -7.23173607, -7.13776614, -7.091475969, -7.177581927, -7.041272253, -7.238455691, -7.061062598, -6.744764117, -7.04472847, -7.195666396, -7.246298622, -7.11626588, -7.277253124, -7.05052483, -7.112980257, -7.111310917, -7.019072839, -7.116760798, -7.076092802, -6.997809843, -7.120204524, -7.18404301, -7.145906179, -7.200563313, -7.243389042, -7.363943057, -7.275891881, -7.363905638, -7.17094673, -6.967523563, -7.409912905, -6.931533446, -7.019648183, -6.758357408, -7.302623255, -7.122859273, -7.401357798, -7.421554163, -7.005414249, -7.205084723, -7.352126094, -7.390755411, -7.220179204, -6.802941659, -6.993917507, -6.821277481, -7.363344242, -7.155377895, -7.068573674, -7.043773949, -6.878302508, -6.580605345, -6.822785375, -7.374938145, -7.428470769, -7.048823365, -7.193480309, -7.298660185, -7.416846044, -7.189433279, -7.077699088, -6.917258988, -7.036935275, -7.16563073, -7.140167722, -7.140168815, -6.989315617, -7.081681419, -6.643706086, -6.571886636, -6.455494866, -6.808226035, -6.858643845, -7.44147108, -6.682444489, -7.266522369, -7.155931369, -7.396676381, -7.106249694, -6.886665592, -7.137482289, -7.115486032, -7.028731516, -7.13719643, -7.018455735, -7.003862432, -7.287748715, -7.441646716, -7.441646716, -7.37015885, -7.204838612, -7.080513863, -7.135545772, -6.917578628, -6.878497626, -7.017817396, -6.759753253, -7.057642696, -7.403403887, -7.275318406, -7.378106792, -7.431282168, -7.434821591, -6.666288892, -7.300395962, -7.155452315, -6.777206037, -7.060290253, -7.138299025, -7.331171931, -7.419485162, -6.927453811, -7.109281454, -7.13856585, -6.642303471, -7.142647812, -7.09570411, -7.147182636, -6.911070686, -6.795431189, -7.320398113, -7.414263437, -7.120539596, -6.762663562, -7.389323102, -7.441646716, -7.186344423, -7.233245029, -6.927931037, -7.295326304, -7.060134068, -6.897243997, -6.904033161, -7.126586675, -6.795522684, -7.13283368, -7.305930316, -7.335984393, -7.035690032, -7.140169706, -7.165273435, -6.906520904, -7.103621501, -7.223258609, -7.132920863, -7.118309626, -7.051741039, -6.801028748, -7.154550195, -7.077020749, -7.047045891, -7.253833954, -7.228473644, -6.920881752, -7.127564676, -7.355517536, -7.067662363, -7.304304009, -7.047930397, -6.972073429, -7.055076783, -7.180798691, -6.92144235, -7.118584539, -7.090501724, -7.352286346, -7.213625816, -7.134772251, -7.138124938, -7.038459528, -6.804830324, -7.006791615, -7.13113869, -7.243366772, -7.206278816, -7.229289381, -7.211847491, -6.995452924, -7.112600849, -6.923860046, -7.269832178, -7.34054768, -7.419572234, -6.544591447, -6.998200002, -7.18323012, -6.943818493, -6.996463039, -6.984673656, -7.184268317, -7.229431309, -7.056835054, -6.921527617, -7.083288527, -6.944286193, -7.099952198, -6.916237606, -6.910521325, -7.105668723, -7.145071416, -6.994240806, -7.12609133, -7.174307246, -6.825355112, -6.981448022, -7.058985499, -7.425566686, -6.411658323, -6.964493644, -7.384861757, -7.244893547, -7.349808138, -7.012148945, -7.261523395, -7.190303419, -6.979408958, -7.10270977, -7.077337261, -7.223799276, -6.847868901, -6.78774164, -6.904203628, -7.039398583, -6.539692169, -7.237462842, -7.020776887, -7.251023737, -7.333673666, -7.124671716, -6.715541128, -7.079120194, -6.754670852, -6.976311216, -7.188404737, -7.105785396, -6.749953916, -7.217262064, -6.758530475, -7.075536866, -7.161258141, -7.420280354, -7.167987681, -7.102164747, -7.29581427, -7.073038395, -6.430607422, -6.889890198, -6.881198444, -7.407638126, -6.935864139, -7.112275145, -7.358391282, -7.394526297, -7.179152788, -7.354283107, -6.924252673, -7.168885287, -7.222701956, -7.197856118, -7.211800437, -7.270369977, -7.075144448, -7.361592081, -6.998279858, -7.049571159, -6.933454165, -7.309424237, -7.365374133, -6.89003216, -7.027471573, -7.112153195, -6.883356136, -7.17410071, -7.292712251, -7.187105095, -7.256952877, -6.919079978, -6.901520108, -6.951356541, -7.366634403, -7.037166177, -7.278930345, -6.964969705, -7.116069536, -7.102544177, -6.745276952, -6.952994327, -6.911307791, -7.357651456, -7.34511647, -7.357690344, -7.344375728, -7.11673253, -7.412004678, -7.254641383, -7.086133477, -7.027327708, -7.200633924, -6.986015202, -7.015420651, -7.15246924, -7.134512307, -7.182414868, -6.495796716, -7.034038509, -6.969135387, -6.997939498, -6.231068227, -7.000113135, -7.146442877, -6.9485284, -7.21744098, -7.038280792, -7.193027777, -7.126919015, -7.12703268, -7.137885861, -6.83743128, -7.272871142, -6.795420329, -7.064625221, -7.283919816, -7.215478058, -7.11661719, -7.253706726, -7.195178616, -7.006972756, -6.907925857, -6.886580966, -7.185352764, -7.050844998, -6.952865851, -6.908037402, -7.104629451, -7.077914274, -6.936912651, -7.108099349, -7.201076546, -7.051263823, -7.223533564, -7.185886167, -7.192687508, -6.830903158, -7.152534622, -7.192268985, -7.273919517, -7.441646716, -7.038765276, -7.301286051, -7.140210785, -7.085720885, -7.20157136, -7.160235291, -6.965151925, -7.133104152, -7.163042837, -7.016623307, -7.437975409, -7.441646716, -7.441577914, -6.748016289, -7.083098506, -7.090129069, -7.136520601, -6.815368661, -6.947666068, -6.994272418, -7.170617808, -7.106177012, -7.133180962, -7.158713722, -7.16954057, -6.815454789, -7.136052978, -6.996947237, -7.090101665, -7.0224963, -6.942163228, -7.085346046, -7.084555815, -7.213778424, -7.051498446, -7.226295362, -6.882835499, -7.119778576, -7.060569792, -7.194299245, -7.058355826, -7.002705258, -6.738377485, -6.965284291, -7.057389419, -7.312749378, -6.938686499, -7.336245726, -7.142534112, -6.985799749, -7.246005525, -7.118495373, -7.110621813, -7.216512263, -7.065333845, -7.185597171, -7.11543946, -7.099321814, -7.309005288, -7.022861541, -7.234304441, -6.955167213, -6.916590499, -6.983994346, -6.829396428, -7.18987074, -7.236116029, -7.047931376, -7.07461785, -6.963160084, -7.195091798, -7.054483802, -6.757572514, -6.919216086, -6.838356666, -7.231496622, -7.245928278, -7.120386157, -7.204829682, -6.897010313, -6.91114766, -7.224177244, -7.185290746, -7.353829023, -7.188366129, -7.209449466, -7.223066347, -7.079670953, -7.174752628, -7.060016882, -7.04682559, -7.188705958, -7.101398094, -7.074001728, -7.256978386, -7.348520118, -7.355392155, -7.441565292, -7.441646716, -7.117423716, -6.990145861, -7.169018683, -6.696725827, -7.082267312, -7.005213757, -7.136111225, -6.667911284, -6.57745992, -7.347225744, -7.1076228, -7.159354141, -7.035453279, -7.023410517, -7.221689073, -7.147594232, -7.441646716, -7.082936947, -7.175470642, -7.214942274, -7.030061236, -7.242729468, -7.167567242, -7.06925982, -7.093510093, -7.290170071, -7.062861066, -7.203136823, -7.166113853, -7.195178764, -6.817189006, -7.125499335, -7.021031404, -7.0286819, -7.380951101, -7.069831429, -7.081194718, -7.004831356, -7.294371431, -7.232318838, -7.437180994, -7.3972135, -7.395832677, -7.392059398, -6.717403749, -6.933224929, -7.369787425, -7.439421997, -7.28340602, -7.13249536, -7.276584912, -7.343775732, -6.994548643, -7.296215731, -7.270066902, -7.000056087, -7.253281963, -7.323066058, -7.12468258, -7.052693646, -6.924101077, -7.010483, -7.434093873, -7.317933452, -7.142425694, -7.260342349, -7.22951216, -6.991584273, -7.09035368, -7.13818282, -6.751691478, -7.210737666, -6.901833093, -6.886021339, -7.127009816, -6.907769707, -7.090889279, -7.32306591, -6.915790705, -7.207813883, -7.165936202, -6.96161299, -7.008555882, -7.042243427, -6.909966013, -7.180788845, -7.261465706, -7.001163135, -7.182178436, -6.903252552, -6.963943138, -6.941954828, -7.033335445, -7.336941402, -6.736285414, -7.150976336, -7.195148457, -7.304470917, -7.249489799, -6.869374391, -7.182014959, -7.359457365, -7.252061571, -7.430956819, -7.375186669, -7.441646716, -7.351305628, -7.386626309, -7.34063748, -7.329734301, -7.344763758, -7.388655226, -7.047798331, -7.353328508, -7.204379558, -7.075833185, -7.079761389, -7.125998553, -7.054403281, -6.914567358, -7.005171812, -7.031548912, -7.253747892, -6.916742136, -7.11426886, -7.095335753, -7.374985259, -7.430801159, -7.288639184, -7.21686159, -7.40345955, -6.863820691, -7.217891425, -7.16664754, -7.352341842, -7.345622165, -6.598548226, -7.302522463, -6.95199786, -7.240785164, -7.286367382, -7.131167987, -7.162616602, -7.139903383, -6.969745038, -7.059902755, -6.904800959, -7.132480682, -7.38948885, -7.047024412, -7.249586024, -7.125546247, -7.339241248, -7.058710661, -7.18013065, -7.001481006, -7.31506722, -7.316081528, -7.441646716, -7.230738653, -7.012524415, -7.182726935, -7.206804528, -7.419965142, -7.261647519, -7.441646716, -7.379990588, -7.276485366, -7.290658018, -7.184525063, -7.195713468, -7.244873211, -6.805776379, -6.891504196, -7.146912997, -6.765163074, -6.975409252, -7.058821022, -7.340059969, -7.415591119, -6.998204653, -7.187580899, -7.206153439, -7.082912906, -7.103135914, -7.112414239, -7.303867049, -6.898360136, -6.899698158, -7.216883886, -7.173949021, -7.102159497, -7.221104726, -7.296438099, -7.142684473, -6.785817805, -7.032150805, -7.07832072, -7.02654101, -7.196109943, -7.242521324, -6.901842933, -6.834151609, -7.408804906, -7.309719563, -7.082942066, -6.997526149, -7.078561117, -6.999945298, -7.025641184, -6.960444194, -7.128019698, -6.795681287, -7.147043792, -7.172870488, -7.010559673, -6.937205475, -7.1463993, -7.398831676, -7.322644727, -6.936013746, -7.045789668, -7.366298948, -7.054875471, -7.314704713, -7.22843951, -7.10060253, -7.270933173, -6.727599561, -6.547284844, -6.618169073, -6.926104478, -7.173941536, -6.972880611, -7.388759591, -7.441646716, -7.376939669, -6.863678201, -7.131047103, -7.420700057, -7.423543717, -7.153210398, -6.851276219, -6.852984534, -7.012661031, -7.141358974, -7.039179645, -7.40269389, -7.14139983, -7.251250141, -7.219814164, -7.386256454, -7.223290782, -7.252337206, -7.150974811, -7.063650007, -7.18957357, -7.381420252, -7.40861567, -7.218912901, -7.041163029, -6.728656267, -7.422211872, -7.190795656, -7.023537349, -6.969046262, -6.880735533, -6.86857296, -6.931505974, -7.423259649, -7.423307185, -7.034915513, -7.163897054, -6.929305873, -6.863526264, -7.033418226, -7.254930209, -7.216047503, -7.127573138, -7.441646716, -6.999233991, -7.111644821, -7.321411338, -7.045331034, -7.290538818, -6.869886901, -7.205678527, -7.181302252, -7.300204911, -7.430649827, -7.316765911, -6.435129516, -6.717293704, -7.12636158, -7.053094831, -6.986894623, -7.075095155, -6.713971514, -7.123270787, -6.928930852, -7.108619942, -7.190341867, -7.04857842, -6.528798525, -7.199012093, -7.180104859, -6.954904319, -6.788951348, -7.008787933, -7.077232183, -7.2794391, -7.246744186, -7.133985146, -7.150655092, -6.466504278, -6.97848611, -7.052213559, -7.049237988, -7.102850608, -6.841203431, -6.452728556, -6.9245057, -7.304926964, -6.979885364, -6.943055549, -6.887668909, -7.08982159, -7.160008417, -7.041945239, -7.326254484, -7.338347925, -6.894271162, -7.172941581, -7.330476175, -7.367434974, -7.086676495, -7.286114653, -6.764448389, -6.94680678, -7.019750343, -6.723666428, -7.000882113, -6.395525285, -7.103060093, -7.031727693, -6.766539283, -6.978186079, -6.450070363, -7.120512585, -7.143677767, -6.85026053, -6.857658172, -7.082719732, -7.072700071, -7.023142428, -6.535170258, -6.520532003, -7.044086312, -6.942220942, -6.937663162]}, {"log_prior": -0.683612822, "feature_log_probs": [-7.15989726, -6.764276263, -6.794177216, -7.044577137, -6.95063043, -7.009776493, -7.154760933, -7.187825472, -6.992845967, -7.17303157, -7.170674965, -7.190587096, -7.190926898, -6.863445309, -7.138644349, -7.406493764, -7.338658129, -7.342823188, -7.313310204, -7.318769357, -7.265060723, -7.289674443, -7.247098282, -7.245169323, -7.202304948, -7.232352385, -7.124569054, -7.134119232, -7.256621873, -7.204017567, -7.298472395, -7.184407599, -7.071570383, -7.128038602, -7.111482846, -7.053374442, -7.175162883, -7.166800879, -6.967588989, -7.228904637, -7.322895964, -7.267545592, -7.313570944, -7.202595503, -7.257070154, -7.079424403, -7.225036841, -7.182538554, -7.00884385, -6.98139187, -7.457821484, -7.295155592, -7.191195976, -7.273376482, -7.188477839, -7.241777483, -7.214782265, -7.095816133, -7.201733168, -7.001707146, -7.200972149, -7.000849771, -7.050799544, -7.323430759, -7.406523323, -7.193516831, -7.339070091, -7.310712533, -7.001172433, -6.978097371, -7.132142645, -7.266120494, -7.208169059, -7.184366486, -7.319560362, -7.175457517, -7.291046428, -7.282383171, -7.214872004, -7.095265597, -7.301160669, -7.169018597, -7.092003349, -7.154555512, -7.308397425, -7.147161909, -6.864179113, -6.336790294, -7.293428895, -7.246839471, -7.407731246, -7.395618769, -7.048515003, -7.457866871, -7.442887252, -7.198865691, -6.964602661, -7.283138445, -7.305501611, -7.358145718, -7.366145628, -7.160232448, -7.26297595, -7.117814391, -7.152902375, -7.312859409, -7.201304772, -7.240631248, -6.879710792, -7.405323031, -7.250528147, -7.383537403, -7.310182981, -7.373782837, -6.756167597, -7.124129447, -7.230709364, -7.070812583, -7.067298029, -7.149129136, -6.878486579, -7.080209041, -7.118248813, -7.135569355, -7.377724662, -6.983703248, -7.077720174, -7.020789362, -7.198982697, -6.977978371, -6.259143892, -7.096721378, -7.242795429, -7.295421104, -7.290267199, -7.262624582, -7.276966986, -7.222015688, -6.506750053, -6.783229678, -6.018628307, -6.564030817, -6.779086547, -7.183209428, -7.165951676, -4.775738409, -5.481634904, -6.941428271, -7.231608985, -6.863888364, -7.041417503, -7.319390674, -6.882964707, -7.093329504, -7.306411921, -7.304044774, -7.175407751, -7.118128859, -7.042696302, -6.766138377, -6.577108014, -7.196179661, -6.911649448, -6.882890683, -7.195554584, -7.206452104, -6.81764122, -7.081638188, -6.968571852, -7.35157551, -7.192499764, -6.853838166, -7.04362894, -7.182261538, -6.519522561, -6.957773969, -7.012662027, -7.108801324, -7.213987404, -7.305003995, -7.17721846, -7.16094849, -7.350505323, -6.905018221, -6.685045797, -7.242398446, -7.266518367, -7.011796946, -7.043170389, -7.041889132, -7.281837329, -6.902943083, -7.139335503, -7.301921136, -7.015989178, -7.314699486, -7.204759137, -7.169304916, -6.487591353, -6.977858707, -7.210377801, -7.038307488, -7.264121766, -7.257515001, -7.236952554, -6.971626388, -6.984768975, -7.1194079, -6.803026243, -7.242084298, -7.314126896, -7.18090986, -7.099720854, -7.017491486, -7.420021689, -7.107411375, -6.759676427, -7.218369736, -7.149860442, -7.156328277, -7.270108241, -7.112438913, -7.145125093, -7.147427066, -7.085791162, -7.427299046, -7.284528458, -7.231454323, -7.098317718, -7.245553271, -7.226613471, -6.894516689, -6.847881683, -6.964610352, -6.904786917, -7.195061716, -7.239391618, -7.250429408, -7.129890704, -7.247187223, -6.962475316, -7.145401393, -7.059756462, -6.597754462, -7.154422014, -7.062611812, -7.207262839, -7.366831879, -6.839324039, -7.189268146, -7.277791609, -7.176083206, -7.324510039, -7.120325732, -7.319180188, -7.21252734, -7.180864076, -7.33832673, -7.314109628, -7.0357515, -7.19750092, -7.334006611, -6.903078081, -7.201789275, -7.333954674, -7.124685926, -7.162408033, -7.002479538, -7.236498882, -7.128561894, -7.201901095, -7.216487926, -7.332614843, -7.204519192, -7.116493771, -7.317482522, -7.230028298, -7.268410062, -7.089052615, -7.112692561, -6.983160397, -7.135565276, -7.024380672, -7.073618843, -6.57350035, -6.943560253, -7.236175442, -7.134156243, -7.428784051, -6.72528816, -6.997574393, -7.038880255, -6.857292158, -7.384138796, -7.286112394, -7.235469458, -7.29999954, -7.190594868, -7.245303581, -7.27529698, -7.133089392, -7.461547609, -6.757956301, -7.409281551, -6.670952299, -6.787123662, -7.087267526, -7.252366104, -7.164427856, -7.317233387, -7.301572797, -7.220931832, -7.34223027, -7.204953503, -7.033180525, -7.043823385, -7.126312834, -6.844270916, -7.237788782, -7.313961234, -7.167731744, -7.209699891, -7.137139215, -6.847277139, -7.136025784, -6.992323982, -6.890409101, -6.932626433, -7.397843703, -7.441007816, -7.134254829, -6.567965836, -7.114803741, -7.134813028, -6.697509157, -7.263021616, -7.030759137, -7.050610743, -7.149431101, -7.243368725, -7.119601822, -7.001166369, -6.995121013, -6.800741374, -7.091785418, -6.919877777, -7.428046115, -7.417081269, -7.176899293, -7.382122743, -7.264872577, -7.304690348, -7.256705198, -7.409091189, -7.182592015, -7.179286586, -6.00669037, -7.298672644, -6.809127602, -7.122658777, -7.358803649, -7.290453479, -7.21357494, -7.226632938, -7.096205648, -7.057187518, -7.333495391, -7.21020374, -7.150771091, -7.237754628, -7.321036867, -7.218297295, -7.121522621, -7.160482577, -7.447833848, -7.301343778, -7.216845253, -6.963672816, -7.015783661, -7.240523597, -7.347256698, -6.937457062, -7.231529587, -7.285025354, -7.246825386, -7.288728957, -7.110729118, -7.253202135, -7.180918598, -7.271333635, -7.267818924, -6.974459017, -7.113378549, -6.923214112, -7.071415935, -7.071934677, -7.178127101, -7.129287873, -6.852008617, -7.33983884, -7.439187946, -6.896094623, -7.250729962, -7.16908612, -7.061772822, -7.135729973, -7.136751975, -7.318558369, -7.310539392, -7.368832187, -7.316811642, -7.250119601, -7.195634251, -7.391949525, -7.258739766, -7.194032628, -7.26200071, -7.412089047, -6.696160582, -7.151911752, -7.064797359, -6.941483608, -7.225831023, -7.26877459, -6.710783383, -7.226033759, -7.233198025, -7.227944701, -7.07268235, -7.199677478, -6.721671904, -7.137521895, -7.199024158, -7.134966621, -6.156603177, -6.83738434, -7.219172609, -6.866902854, -7.260269533, -7.266152998, -7.407015941, -7.128785223, -6.955228453, -7.247800139, -7.200215216, -7.239656782, -7.36133294, -6.48215761, -6.741331221, -7.205841614, -7.102348084, -7.404630655, -6.973259873, -7.290497978, -7.209520648, -6.926647146, -7.191499331, -7.187180681, -7.250498844, -7.295260267, -7.2995315, -7.156129535, -6.817899474, -6.596843712, -7.249065371, -6.962773911, -7.424518828, -7.01682896, -6.704100708, -7.300915067, -7.240145982, -7.090524465, -7.077202446, -7.175341819, -7.341162438, -7.310121735, -7.364521789, -7.072075148, -7.10094954, -6.983192579, -7.092538133, -6.82966562, -6.836890164, -7.134796184, -7.143455933, -7.275158995, -7.253052632, -6.938140295, -7.08557488, -6.801434329, -7.278124663, -7.300275159, -7.186575014, -7.001615257, -6.975739682, -6.656339081, -7.065369145, -6.894472912, -7.195185866, -7.200826205, -6.650392153, -7.033495281, -7.280060332, -7.145057714, -7.065160038, -7.302318666, -7.12051944, -7.122487291, -6.974209945, -7.288918084, -7.279753735, -7.082500922, -7.013050894, -7.262454347, -6.77416663, -7.195117257, -7.192189769, -7.319813754, -7.073387999, -7.11602991, -7.251633927, -7.376052117, -7.11853628, -7.194047613, -7.306888373, -7.180766675, -7.336249428, -7.256750665, -7.029026865, -7.325660334, -6.979978946, -7.074669125, -7.066810285, -7.224058173, -7.182925032, -6.996507337, -7.188757258, -7.252514154, -7.319388741, -7.329439607, -7.085754268, -7.06253971, -7.295723809, -7.032202593, -7.393047, -7.25136775, -7.344667465, -7.015331624, -7.385370325, -7.055987702, -7.288655187, -7.200431527, -7.289828295, -7.266973705, -7.28964583, -7.440083103, -6.932791777, -7.218093618, -7.262635495, -7.123914175, -6.795241194, -7.339247893, -7.339133492, -7.362916021, -7.213352043, -7.239955672, -7.407748491, -7.276675841, -7.229236495, -7.344914601, -7.200783159, -7.174437487, -7.14910366, -7.072362574, -7.448652234, -6.932256165, -6.935525103, -6.872288358, -7.154025706, -7.302346975, -7.3732966, -7.4307357, -7.027215219, -7.069806418, -7.241375996, -7.314750005, -7.214409357, -7.142089586, -7.390365009, -7.287953292, -7.076537897, -7.327714447, -7.249022724, -7.16877452, -7.050845084, -7.254495992, -6.939364687, -7.03521269, -6.967672021, -7.249030957, -7.158972928, -7.138887782, -6.591910157, -7.078585693, -6.787588604, -7.028117703, -7.075748361, -7.269969928, -7.210336786, -6.96358123, -7.173923586, -7.201539157, -7.458582676, -6.936198521, -6.792343458, -7.080813193, -7.332642088, -6.529526016, -7.120701793, -7.026438048, -7.240137828, -7.0955291, -7.08926635, -6.681688934, -6.958456963, -6.777260619, -6.879650879, -7.032306715, -7.324973192, -6.797623017, -7.168264996, -7.100801871, -6.791570363, -6.943565375, -7.397010711, -7.100935697, -7.200832686, -7.13325578, -7.238718252, -6.532705463, -6.849060875, -6.926207039, -7.148443021, -7.254465552, -7.372486522, -7.194832384, -7.059243641, -7.352090883, -7.464533535, -6.771692882, -7.271819174, -7.216078936, -7.224119762, -7.151930009, -7.152901458, -7.197956801, -7.204135474, -7.200579976, -7.16703965, -6.952088199, -7.167481074, -7.150575305, -7.328736417, -7.441911034, -7.289539905, -7.223879396, -7.276706239, -7.013304643, -7.137060881, -6.74954935, -7.132134424, -7.197225426, -7.097352301, -7.118054165, -7.279550522, -7.079251085, -6.879533525, -6.900654526, -7.072263498, -6.92189546, -7.193873869, -7.14522786, -6.316756663, -6.993117135, -7.022272345, -6.333661268, -7.183404143, -6.92297805, -7.246637151, -7.240644957, -7.464533535, -7.335648091, -7.310065146, -7.247622618, -7.159290319, -7.118292295, -7.257582236, -6.591982853, -7.149081936, -7.111366955, -7.376160538, -6.46808322, -7.253783187, -7.064252003, -7.190396978, -7.464533535, -7.188217902, -7.162171332, -7.287550232, -7.085966577, -7.38666083, -7.45048042, -7.317897579, -7.021388086, -7.254981645, -7.34653555, -7.344983584, -6.874678214, -7.130450617, -6.995793555, -7.220431083, -7.291222225, -6.926192224, -7.247840205, -7.188909666, -6.742810914, -7.108649553, -6.992747071, -6.948367052, -7.06110136, -7.181196303, -7.308458877, -7.218197389, -7.16504981, -7.230189122, -6.994962284, -7.153796698, -7.333790918, -7.309145813, -7.030994192, -7.003223314, -7.356293369, -7.181734292, -7.267137123, -7.230695634, -6.769319848, -7.327559587, -7.176004112, -7.318563736, -7.379682535, -7.10328918, -6.515585822, -6.925081927, -6.802423035, -7.027235167, -7.020969916, -6.804797427, -7.286288363, -7.241563179, -7.213916933, -7.082836748, -7.10993342, -7.241294022, -7.137714223, -7.312471743, -7.151624372, -6.908593378, -7.25580202, -7.209461428, -7.297700052, -7.220606721, -7.216815407, -7.358557124, -7.266678007, -7.092345317, -7.441336683, -6.95032875, -6.971669264, -7.242991356, -7.077142703, -6.920117279, -7.347887255, -7.019264121, -6.949801803, -7.342536173, -7.311558326, -6.998314828, -6.45515145, -7.069760193, -7.201301357, -7.311929419, -7.241554461, -7.397661763, -7.254045967, -7.086127649, -6.956942848, -7.244944762, -6.492310464, -6.875019672, -6.959697038, -7.326614934, -7.002458209, -6.965982853, -7.134150802, -7.200481164, -7.179737763, -7.262679974, -7.312567536, -6.809216359, -7.165403486, -6.714780725, -7.20875605, -7.273444549, -7.208777237, -7.356545539, -7.386127059, -7.285593525, -7.22062084, -7.131480986, -7.214981485, -7.202294555, -7.361122216, -7.250903514, -7.082909546, -7.181429187, -7.266655763, -7.172688304, -7.207534939, -6.830417955, -7.464155202, -7.16677818, -7.214547964, -7.071302017, -7.106069593, -7.062743514, -6.928372122, -7.036672095, -6.702011904, -7.003957766, -7.140291602, -6.600620126, -7.228900215, -7.077682239, -7.04987195, -7.340140386, -7.349608487, -7.142212793, -7.105257257, -6.773817037, -6.381908458, -7.207787716, -7.32122735, -7.225093693, -7.193135366, -7.182686601, -7.256901405, -7.187065587, -7.225419718, -7.234179515, -7.13560979, -7.278328524, -7.172555415, -7.213066439, -7.232432996, -7.172583028, -7.192773893, -7.289560453, -7.206168895, -7.245630764, -7.243186337, -7.236706905, -7.211612925, -7.201730475, -7.245700264, -6.92386833, -7.210906863, -7.166883568, -6.973019263, -7.153707322, -6.16364005, -6.746548321, -6.665284668, -6.946132862, -6.276852452, -6.737297893, -7.43433243, -7.019184724, -7.130838409, -7.068923505, -7.273174278, -6.1940023, -7.128098058, -7.416637914, -7.150188682, -7.148752441, -7.208503351, -7.146677655, -7.444515873, -7.347651913, -7.350472448, -7.019979521, -7.131542223, -6.740892189, -7.451534006, -7.182499463, -7.105016665, -7.045372689, -6.855223954, -7.068310726, -7.1927729, -7.01406252, -7.323844138, -7.293982455, -7.383315246, -7.278033355, -7.226133252, -7.186507347, -6.612655224, -7.059729705, -7.189120917, -7.157540691, -7.344695325, -7.112174794, -7.300585474, -7.24708212, -7.001713282, -7.064460319, -7.208375328, -7.384889349, -7.168799242, -7.278934128, -7.023356226, -7.279249115, -7.351584976, -6.86751168, -7.272230926, -7.333255322, -7.164780807, -7.146546284, -7.194214204, -7.310857846, -7.228871989, -7.032570088, -7.143056326, -7.019461643, -6.644457052, -6.96802323, -7.123589249, -7.141794117, -6.638857864, -6.584478991, -6.812821672, -6.987861117, -7.162500165, -7.32898826, -7.235610787, -7.301670244, -7.293697526, -7.056069705, -7.049674345, -7.103115095, -6.933746446, -7.206777369, -6.998487307, -7.130789533, -6.626304152, -7.037687671, -7.049326416, -7.068433663, -7.226971022, -7.461712615, -6.73292421, -7.013737317, -7.078470032, -7.07149819, -7.164141276, -7.37599937, -7.154787892, -7.349089247, -7.02821558, -7.143396796, -7.127841111, -7.162938993, -7.27829023, -7.262210485, -7.328685922, -7.09360506, -7.201801688, -6.926477869, -7.116064226, -7.274799637, -6.300329267, -7.053350785, -7.08733766, -7.325165795, -7.250884566, -7.162203528, -7.225363834, -7.109644347, -7.059048364, -7.164794788, -7.194170271, -7.193246314, -7.389757026, -7.185335752, -6.962888557, -7.183255678, -7.190665335, -7.224094917, -7.113399823, -6.901661218, -7.297308552, -6.979810502, -7.117710211, -7.148371309, -7.304972433, -7.31657955, -7.190348294, -6.784078194, -6.930974083, -7.017667058, -7.277337175, -7.128561706, -7.099098695, -7.126378546, -6.662708915, -6.7174244, -7.361412546, -7.266531634, -7.166183011, -7.362395146, -6.915094068, -7.242517676, -7.278988327, -7.208493869, -7.327599202, -7.075673288, -6.988363165, -7.316677897, -7.253981576, -7.073570038, -7.201081197, -6.888190279, -6.580437512, -7.220637554, -7.145858559, -7.271148228, -7.246972182, -7.106780227, -7.149573761, -7.303808656, -7.319116837, -7.06915916, -7.142944425, -7.222156737, -6.976245629, -7.172398874, -7.202179863, -7.150260387, -7.222318406, -7.308564547, -7.221961554, -6.980008134, -6.93708235, -7.141598782, -7.170040237, -7.395970112, -7.062630912, -6.930339085, -6.886879438, -6.907879807, -7.366389236, -7.365124703, -7.19938188, -6.963498893, -6.720194928, -6.782363545, -7.037327131, -7.253838165, -6.738869697, -6.556732732, -7.424407646, -7.090643563, -7.210317186, -7.114509567, -7.065105764, -7.118632978, -7.067122596, -7.225500461, -7.244301158, -7.020244513, -6.655622424, -7.176615616, -7.446898265, -7.173865739, -7.108770071, -7.190425911, -6.806525839, -7.014903769, -7.174997941, -6.989456233, -6.914600525, -7.050842892, -7.209315978, -7.176937618, -7.192693907, -7.433069807, -7.025087126, -7.165217264, -6.698352467, -7.108975788, -6.971081312, -7.167341602, -7.322496207, -7.101907029, -7.201889016, -7.255347727, -7.164867147, -6.946659688, -7.143288403, -7.290238356, -7.16326025, -7.114447517, -7.346830499, -7.2361362, -7.371586765, -7.276245416, -7.224765194, -7.169843997, -7.12188423, -7.03562468, -6.576545794, -6.774238837, -7.198856121, -7.169424252, -7.202140129, -7.119079382, -6.905095576, -6.989448576, -7.118333729, -7.384358157, -7.226027522, -7.252475842, -6.603670209, -7.211591094, -7.249703322, -7.075846904, -7.052926024, -7.186742222, -7.176248671, -7.212410064, -7.295351673, -7.211799238, -7.145588462, -6.589889448, -7.153189261, -7.424315073, -7.232560326, -7.230434924, -7.057242655, -6.676373229, -7.205138687, -7.105327482, -7.230632421, -7.123176614, -7.072954749, -7.178590813, -6.620046929, -7.185150883, -6.352090133, -6.458092255, -7.209381958, -6.968767891, -7.152504728, -7.081020356, -7.402203406, -7.039139019, -7.087830323, -7.000538169, -7.286364068, -7.427455497, -7.33269583, -6.786360083, -7.253248654, -7.34820675, -7.198835341, -7.09761003, -6.996567437, -7.072514264, -7.299764489, -7.398797572, -7.371977526, -7.373284943, -7.229807223, -7.362355121, -6.722558633, -6.835592834, -7.191559887, -7.203314433, -7.373102646]}], "model_type": "nb", "positive_class_label": "shopping", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"google": [464, 3.369581222], "company": [243, 2.187902334], "global": [459, 3.681168815], "search": [915, 2.972021293], "huge": [516, 2.8384899], "website": [1164, 3.020811457], "ability": [58, 2.758447193], "business": [172, 2.656940246], "engine": [360, 4.070633582], "face": [384, 2.972021293], "pressure": [794, 3.189887787], "campaign": [180, 3.807049061], "groups": [474, 3.46883618], "comes": [232, 2.09567111], "legal": [595, 3.522420426], "action": [65, 3.189887787], "use": [1131, 1.559615788], "platform": [770, 3.46883618], "help": [497, 1.900220262], "tickets": [1076, 4.658420247], "want": [1154, 1.605767683], "make": [639, 1.445275096], "sure": [1042, 2.065300012], "experience": [378, 2.311134975], "necessary": [696, 3.048982334], "stop": [1023, 2.660808723], "money": [679, 2.378957571], "place": [766, 2.048350454], "ticket": [1074, 4.385126912], "open": [726, 2.500035503], "body": [153, 2.700339562], "uk": [1118, 3.338570985], "year": [1195, 1.916658988], "buying": [175, 2.797667906], "sports": [1000, 3.203133014], "taking": [1049, 2.575413639], "thought": [1073, 2.815605607], "taken": [1047, 2.885892139], "multiple": [689, 2.857182033], "including": [535, 2.136126065], "best": [138, 1.744517991], "road": [890, 2.300265302], "bike": [145, 1.99119204], "wheel": [1169, 2.604296513], "upgrade": [1128, 3.608598122], "options": [728, 2.575413639], "author": [113, 3.486380489], "december": [293, 3.807049061], "12": [5, 2.442327185], "2019": [27, 3.203133014], "review": [877, 2.915450942], "bikes": [146, 2.195175094], "rim": [886, 3.951088431], "brakes": [160, 2.881049515], "wheels": [1170, 2.660808723], "improve": [529, 3.196488471], "cycling": [284, 2.915450942], "performance": [756, 2.526792952], "modern": [678, 2.758447193], "ride": [879, 2.175897388], "come": [231, 1.905669867], "aren": [103, 2.645423804], "level": [598, 2.361565828], "frames": [435, 3.107822834], "sit": [962, 3.385454571], "drivetrain": [336, 3.807049061], "components": [248, 2.861910175], "power": [787, 2.281523121], "cyclists": [285, 3.346233858], "couple": [266, 2.9104634], "years": [1196, 1.849017551], "new": [701, 1.446425183], "course": [267, 2.393685378], "brand": [162, 2.712510098], "set": [934, 1.975443683], "bought": [156, 3.315928508], "good": [463, 1.637298739], "brake": [159, 3.196488471], "chance": [200, 3.107822834], "ve": [1143, 1.749180004], "thinking": [1071, 3.10178052], "attention": [110, 3.037618576], "wider": [1173, 3.377486401], "tires": [1080, 3.037618576], "pair": [739, 3.377486401], "came": [178, 2.829273245], "ones": [724, 2.811090926], "comfortable": [234, 2.749936503], "range": [840, 2.281523121], "riding": [883, 2.358696386], "right": [884, 1.80195004], "far": [391, 2.200053152], "better": [139, 1.852465831], "comfort": [233, 3.144864106], "speed": [991, 2.237417399], "handling": [483, 3.495269437], "braking": [161, 3.896280195], "current": [276, 2.881049515], "great": [468, 1.854194439], "value": [1139, 2.700339562], "compared": [244, 2.9104634], "carbon": [184, 3.043284313], "update": [1127, 3.417977763], "added": [70, 2.724830582], "reviews": [878, 3.531637081], "category": [192, 3.265008418], "kind": [573, 2.480427031], "click": [222, 3.183330387], "choose": [213, 2.557776497], "2018": [26, 3.265008418], "need": [697, 1.626218293], "know": [577, 1.835342124], "red": [857, 3.279294375], "directly": [321, 2.951078119], "yes": [1197, 2.900562329], "true": [1105, 2.668590864], "major": [638, 2.797667906], "include": [532, 2.506658043], "hubs": [515, 4.153325298], "rims": [887, 3.979661804], "10": [2, 1.893000014], "cost": [262, 2.533595699], "17": [10, 2.866660777], "inside": [543, 2.712510098], "width": [1174, 3.628800829], "offer": [717, 2.496740607], "excellent": [373, 3.30849353], "wide": [1172, 2.526792952], "19": [12, 3.083869593], "thing": [1068, 2.080370265], "ll": [617, 1.803593426], "real": [847, 2.347300251], "benefit": [136, 3.301113422], "industry": [540, 2.824696578], "marketing": [650, 3.46883618], "buy": [174, 2.263125756], "selling": [926, 3.243955009], "prefer": [791, 3.330966386], "long": [623, 1.736795945], "rides": [882, 3.107822834], "usually": [1138, 2.543887385], "frame": [434, 2.364443528], "lower": [633, 2.500035503], "won": [1178, 2.333235322], "stock": [1022, 3.385454571], "traditional": [1095, 2.793233309], "reduce": [858, 3.196488471], "putting": [827, 3.107822834], "price": [797, 2.276232103], "advantage": [77, 3.286514623], "actually": [68, 2.245060748], "turn": [1111, 2.47076512], "saddle": [902, 3.257941251], "line": [609, 2.448577205], "known": [578, 2.516674822], "tend": [1057, 2.998832551], "heavy": [493, 2.820140762], "day": [289, 1.981320292], "standards": [1011, 3.63905733], "200": [14, 3.138594493], "300": [39, 3.401583953], "increase": [536, 2.857182033], "typically": [1117, 2.935653649], "don": [331, 1.592362656], "roll": [893, 3.369581222], "effort": [355, 3.144864106], "provide": [818, 2.634038482], "pretty": [795, 2.486920561], "basic": [128, 2.833870955], "look": [625, 1.845581122], "probably": [802, 2.30568537], "half": [478, 2.656940246], "reasons": [851, 3.138594493], "companies": [242, 2.728971375], "high": [500, 1.893000014], "reason": [850, 2.696315412], "sales": [907, 2.972021293], "little": [614, 1.914819061], "higher": [501, 2.486920561], "sell": [925, 3.015271277], "expensive": [377, 2.649247901], "greater": [469, 3.32341918], "total": [1088, 3.020811457], "volume": [1150, 3.736431494], "similar": [958, 2.439216763], "ring": [888, 3.659891417], "cheap": [206, 3.132363943], "house": [513, 3.048982334], "focus": [423, 3.015271277], "quality": [828, 2.493456532], "size": [965, 2.361565828], "location": [620, 3.393486743], "forward": [433, 3.060476714], "purchase": [823, 3.060476714], "learning": [591, 3.46883618], "later": [586, 2.668590864], "soon": [982, 2.993412483], "hub": [514, 3.020811457], "recently": [853, 2.797667906], "riders": [881, 2.724830582], "used": [1132, 1.84729786], "weight": [1167, 2.423808137], "tire": [1079, 3.361738044], "post": [783, 2.411649933], "2016": [24, 3.132363943], "sizes": [966, 3.163912301], "news": [702, 3.015271277], "article": [104, 2.708436772], "sold": [979, 2.998832551], "11": [4, 2.645423804], "000": [1, 2.294874454], "gear": [447, 2.712510098], "shop": [949, 2.797667906], "disc": [323, 3.369581222], "looking": [626, 2.113449356], "likely": [606, 2.381885831], "really": [848, 1.893000014], "doing": [330, 2.448577205], "way": [1160, 1.511807942], "big": [142, 1.985257305], "bigger": [143, 3.272125886], "run": [900, 2.341650519], "air": [82, 2.982659691], "having": [488, 2.224806891], "needed": [698, 2.716600083], "hold": [507, 2.829273245], "larger": [583, 2.767030936], "space": [986, 2.716600083], "certainly": [197, 3.144864106], "faster": [394, 2.852476142], "turns": [1112, 3.10178052], "happen": [485, 3.223335721], "outside": [732, 2.815605607], "track": [1094, 3.015271277], "create": [270, 2.589750802], "20": [13, 2.173513597], "22": [29, 3.066273831], "mm": [673, 4.363620706], "creating": [272, 3.196488471], "extra": [381, 2.530188541], "cause": [193, 3.196488471], "add": [69, 2.358696386], "issue": [557, 2.982659691], "speeds": [992, 3.32341918], "doesn": [327, 2.035824194], "effect": [351, 3.151173275], "feel": [401, 2.171135474], "increased": [537, 3.209822002], "support": [1041, 2.708436772], "going": [462, 1.884047403], "flat": [421, 2.951078119], "pull": [822, 3.393486743], "away": [117, 2.2683477], "say": [910, 2.14534272], "shape": [938, 3.243955009], "left": [594, 2.486920561], "square": [1004, 3.725131938], "provides": [819, 2.988021634], "contact": [256, 3.272125886], "area": [101, 2.775688999], "length": [596, 2.945910149], "budget": [167, 3.170343191], "expect": [376, 3.031984758], "different": [317, 1.878714057], "combination": [230, 3.301113422], "view": [1148, 3.026382502], "box": [157, 3.083869593], "35": [43, 3.176815706], "nice": [703, 2.9104634], "average": [115, 3.009761621], "especially": [365, 2.344471395], "deep": [296, 3.30849353], "spokes": [998, 4.429578674], "list": [613, 2.442327185], "plenty": [774, 3.031984758], "start": [1012, 2.071730903], "written": [1192, 3.346233858], "section": [920, 3.265008418], "writing": [1191, 3.393486743], "parts": [745, 2.523408854], "things": [1069, 1.907493021], "seen": [922, 2.56832141], "data": [287, 2.724830582], "difference": [316, 2.780046305], "developed": [309, 3.346233858], "straight": [1029, 3.216556034], "connect": [252, 3.670473526], "easier": [341, 2.405625818], "ready": [846, 2.895648314], "tubes": [1110, 3.725131938], "angle": [92, 3.443083684], "running": [901, 2.784422679], "distance": [325, 3.048982334], "diameter": [313, 4.024113566], "heavier": [492, 3.47756986], "using": [1137, 1.920349029], "instead": [547, 2.185489788], "tube": [1109, 3.157522503], "inner": [542, 3.713958638], "hit": [506, 2.900562329], "try": [1107, 2.33044592], "consider": [253, 2.607966242], "design": [304, 2.367329533], "related": [860, 3.009761621], "making": [641, 2.009210546], "read": [843, 2.361565828], "note": [709, 2.724830582], "write": [1190, 3.196488471], "products": [810, 2.660808723], "longer": [624, 2.399637776], "normal": [707, 2.972021293], "materials": [654, 3.57903932], "spoke": [997, 3.857059481], "important": [528, 2.183083048], "rolling": [894, 3.504238107], "example": [372, 2.260524974], "end": [358, 1.90385003], "light": [602, 2.289512511], "double": [332, 3.203133014], "easily": [342, 2.426870927], "break": [164, 2.988021634], "happy": [486, 3.163912301], "based": [127, 2.089084917], "eye": [383, 3.377486401], "cool": [260, 3.223335721], "tech": [1053, 3.237034566], "features": [398, 2.496740607], "100": [3, 2.4207547], "250": [33, 3.691979731], "spend": [993, 2.741497634], "able": [59, 2.164034853], "online": [725, 2.615346349], "stores": [1026, 3.353955904], "prices": [798, 3.026382502], "group": [473, 2.724830582], "development": [310, 3.163912301], "general": [449, 2.708436772], "500": [49, 2.866660777], "got": [465, 2.347300251], "14": [7, 2.915450942], "23": [30, 3.196488471], "strength": [1032, 3.569377409], "clear": [220, 2.94076875], "analysis": [90, 3.965273066], "hours": [512, 2.656940246], "recommend": [854, 3.138594493], "kit": [575, 3.495269437], "site": [963, 2.998832551], "save": [908, 2.811090926], "links": [611, 3.060476714], "posts": [784, 3.559807958], "low": [632, 2.313870955], "customer": [279, 3.504238107], "pay": [750, 2.716600083], "commission": [237, 3.951088431], "helps": [499, 2.94076875], "cover": [268, 3.189887787], "costs": [263, 3.176815706], "model": [676, 2.467565118], "2017": [25, 3.293787382], "changed": [202, 3.237034566], "steel": [1018, 3.144864106], "bearings": [131, 4.243476395], "aluminum": [86, 3.369581222], "rear": [849, 2.540445041], "24": [31, 2.881049515], "27": [35, 3.089804329], "middle": [668, 3.037618576], "pack": [735, 3.32341918], "market": [649, 2.361565828], "400": [46, 3.486380489], "order": [729, 2.408633339], "store": [1025, 2.793233309], "cycles": [283, 3.63905733], "results": [873, 2.951078119], "product": [808, 2.586147194], "id": [521, 4.576182148], "friend": [438, 3.32341918], "question": [830, 2.824696578], "models": [677, 2.668590864], "love": [631, 2.473975396], "90": [56, 3.315928508], "felt": [405, 3.10178052], "typical": [1116, 3.32341918], "roads": [891, 3.417977763], "handle": [480, 2.988021634], "slow": [969, 3.196488471], "super": [1040, 2.96149488], "overall": [733, 2.935653649], "biggest": [144, 2.993412483], "issues": [558, 2.966744236], "lack": [579, 3.138594493], "solution": [981, 3.183330387], "works": [1186, 2.473975396], "large": [582, 2.250188965], "small": [971, 1.925909748], "thanks": [1067, 3.020811457], "bit": [149, 2.252762968], "fans": [390, 3.831741673], "brands": [163, 3.026382502], "racing": [836, 3.315928508], "rest": [871, 2.885892139], "share": [939, 2.749936503], "patterns": [749, 4.119423746], "shell": [941, 4.206435123], "decide": [294, 3.250923678], "option": [727, 2.59699721], "built": [171, 2.364443528], "looks": [627, 2.745708167], "stand": [1009, 3.054713009], "talking": [1051, 3.293787382], "quite": [834, 2.554286092], "simply": [960, 2.442327185], "15": [8, 2.370223891], "ago": [81, 2.767030936], "allow": [83, 2.56479407], "number": [713, 2.187902334], "type": [1114, 2.506658043], "depending": [300, 2.9104634], "measure": [660, 3.401583953], "lighter": [603, 3.126171973], "50": [48, 2.56479407], "head": [489, 2.480427031], "places": [767, 3.120018107], "drive": [334, 2.720706865], "non": [706, 2.762729855], "key": [571, 2.696315412], "getting": [455, 2.147660218], "continue": [258, 3.170343191], "shimano": [945, 3.30849353], "sram": [1005, 4.009075689], "cassette": [191, 3.819319153], "work": [1182, 1.69462102], "case": [189, 2.350137133], "wasn": [1157, 3.037618576], "didn": [315, 2.540445041], "strategy": [1030, 3.725131938], "lot": [629, 1.967661543], "early": [340, 2.696315412], "close": [223, 2.641614276], "family": [389, 3.004282155], "bad": [119, 2.852476142], "care": [186, 3.072104752], "requires": [869, 3.083869593], "mountain": [685, 2.664692223], "21": [28, 3.216556034], "times": [1077, 2.286842282], "quickly": [833, 2.578978705], "relatively": [861, 3.004282155], "makes": [640, 1.961864425], "fast": [393, 2.500035503], "shows": [955, 3.066273831], "days": [290, 2.402627315], "training": [1100, 3.443083684], "think": [1070, 2.005178282], "benefits": [137, 3.043284313], "hard": [487, 2.178286876], "unless": [1126, 3.196488471], "content": [257, 3.330966386], "30": [38, 2.373126651], "black": [150, 2.96149488], "25": [32, 2.554286092], "wear": [1162, 3.265008418], "pounds": [786, 3.369581222], "second": [918, 2.352982085], "went": [1168, 2.915450942], "standard": [1010, 2.540445041], "technology": [1055, 2.749936503], "testing": [1065, 3.443083684], "actual": [67, 3.32341918], "16": [9, 2.815605607], "slightly": [968, 2.885892139], "pro": [801, 3.257941251], "remove": [864, 3.237034566], "rate": [841, 3.301113422], "believe": [135, 2.966744236], "points": [778, 3.031984758], "install": [545, 3.713958638], "core": [261, 3.504238107], "regular": [859, 3.066273831], "includes": [534, 2.966744236], "80": [55, 3.272125886], "feeling": [402, 3.163912301], "published": [821, 3.301113422], "bicycle": [140, 2.550807828], "tell": [1056, 2.676434041], "friends": [439, 3.043284313], "matter": [655, 2.696315412], "self": [924, 2.982659691], "fat": [395, 3.831741673], "nearly": [695, 2.780046305], "changes": [203, 2.852476142], "tried": [1103, 3.203133014], "specialized": [988, 3.522420426], "despite": [307, 3.020811457], "version": [1146, 2.688315369], "history": [505, 3.009761621], "areas": [102, 3.066273831], "link": [610, 3.144864106], "reading": [845, 3.216556034], "comments": [236, 3.30849353], "readers": [844, 3.725131938], "asked": [107, 3.043284313], "did": [314, 2.229832027], "building": [170, 2.775688999], "cross": [274, 3.265008418], "today": [1082, 2.387768201], "fact": [386, 2.439216763], "isn": [556, 2.185489788], "short": [952, 2.414675654], "moving": [686, 2.900562329], "downhill": [333, 3.831741673], "easy": [343, 2.093470889], "addition": [72, 2.945910149], "goes": [461, 2.716600083], "local": [619, 2.653086677], "shops": [951, 3.486380489], "carry": [187, 3.054713009], "items": [560, 3.293787382], "maintenance": [637, 3.409747263], "solid": [980, 3.151173275], "check": [208, 2.322124096], "shopping": [950, 3.243955009], "26": [34, 3.120018107], "service": [931, 2.767030936], "previous": [796, 3.144864106], "particularly": [744, 2.876230228], "point": [777, 2.217316219], "handlebars": [482, 3.183330387], "told": [1083, 2.998832551], "oil": [721, 3.896280195], "miles": [669, 2.852476142], "55": [51, 3.7949277], "test": [1063, 2.696315412], "home": [508, 2.313870955], "edge": [348, 3.540939474], "perfect": [755, 2.634038482], "deal": [291, 2.762729855], "available": [114, 2.069582674], "race": [835, 3.11390188], "trek": [1102, 3.979661804], "started": [1013, 2.473975396], "giving": [458, 3.043284313], "internal": [551, 3.434644815], "produce": [806, 3.426276565], "smooth": [974, 3.315928508], "uses": [1136, 2.69230739], "piece": [765, 3.048982334], "hand": [479, 2.461195669], "took": [1084, 2.793233309], "gives": [457, 2.84313028], "mid": [667, 3.043284313], "direct": [320, 3.126171973], "united": [1123, 3.47756986], "states": [1016, 3.209822002], "offers": [719, 2.696315412], "scale": [911, 3.443083684], "unique": [1121, 2.96149488], "maybe": [657, 2.885892139], "spring": [1002, 3.63905733], "does": [326, 1.940891302], "adding": [71, 3.138594493], "white": [1171, 3.020811457], "worth": [1188, 2.684339221], "plus": [776, 2.704379971], "2014": [22, 3.30849353], "season": [916, 3.486380489], "definitely": [297, 3.163912301], "choice": [212, 2.69230739], "difficult": [318, 2.824696578], "manufacturers": [646, 3.170343191], "led": [593, 3.144864106], "floor": [422, 3.618648458], "plan": [768, 2.998832551], "hills": [504, 3.495269437], "north": [708, 3.598647791], "free": [437, 2.164034853], "begin": [134, 3.203133014], "trail": [1097, 3.330966386], "natural": [693, 3.265008418], "hybrid": [518, 3.807049061], "room": [895, 2.96149488], "lost": [628, 3.353955904], "bring": [165, 2.900562329], "ideal": [523, 3.216556034], "designed": [305, 2.442327185], "mode": [675, 3.57903932], "gravel": [467, 3.994260603], "round": [896, 3.346233858], "leave": [592, 2.920463483], "let": [597, 2.195175094], "ask": [106, 2.895648314], "questions": [831, 2.9104634], "coming": [235, 2.871434056], "ebay": [344, 4.385126912], "rover": [897, 5.728861658], "amazon": [87, 3.144864106], "stay": [1017, 2.852476142], "form": [432, 2.700339562], "follow": [425, 2.771350598], "twitter": [1113, 3.401583953], "facebook": [385, 3.550329214], "instagram": [544, 4.342567297], "enjoy": [361, 3.183330387], "beautiful": [132, 3.513287942], "user": [1134, 3.183330387], "social": [976, 3.060476714], "highly": [502, 3.072104752], "pedal": [751, 2.885892139], "powered": [788, 3.550329214], "takes": [1048, 2.490183206], "style": [1037, 2.641614276], "child": [209, 3.782951509], "germany": [453, 4.153325298], "japan": [562, 4.26252459], "bicycles": [141, 3.004282155], "electric": [356, 2.956272936], "image": [525, 3.460178117], "mobile": [674, 3.747860189], "old": [722, 2.284179165], "rider": [880, 2.935653649], "battery": [130, 2.993412483], "motor": [682, 3.120018107], "quick": [832, 2.767030936], "daily": [286, 3.223335721], "commuter": [240, 3.598647791], "future": [444, 2.771350598], "cycle": [282, 3.393486743], "charge": [205, 3.043284313], "pedals": [753, 3.196488471], "world": [1187, 1.973492463], "object": [715, 4.407105818], "exactly": [371, 2.861910175], "success": [1038, 3.286514623], "october": [716, 3.7949277], "created": [271, 2.890758329], "century": [195, 3.47756986], "shifting": [944, 3.46883618], "lights": [604, 3.293787382], "dirt": [322, 3.681168815], "allows": [85, 2.668590864], "figure": [408, 3.279294375], "green": [470, 3.569377409], "book": [154, 2.993412483], "terrain": [1062, 3.230161686], "ski": [967, 5.218036035], "handlebar": [481, 3.330966386], "accessories": [61, 3.618648458], "simple": [959, 2.373126651], "included": [533, 2.930564579], "racks": [838, 3.782951509], "idea": [522, 2.458026095], "customers": [280, 3.189887787], "worked": [1183, 3.144864106], "purpose": [825, 3.30849353], "folding": [424, 3.736431494], "chain": [198, 2.8384899], "completely": [246, 2.972021293], "integrated": [549, 3.265008418], "release": [862, 3.286514623], "seat": [917, 2.84313028], "street": [1031, 3.138594493], "lead": [589, 2.977326345], "weeks": [1166, 3.157522503], "rack": [837, 3.315928508], "demand": [298, 3.531637081], "match": [652, 3.338570985], "stem": [1019, 3.771117052], "car": [183, 2.871434056], "fixed": [420, 3.486380489], "feet": [404, 3.223335721], "walk": [1152, 3.293787382], "japanese": [563, 4.206435123], "decided": [295, 3.196488471], "push": [826, 3.11390188], "living": [616, 3.196488471], "effects": [353, 3.702908802], "public": [820, 2.871434056], "control": [259, 2.578978705], "machine": [635, 3.32341918], "called": [177, 2.355835154], "cars": [188, 3.330966386], "change": [201, 2.292189888], "single": [961, 2.30568537], "urban": [1130, 3.495269437], "university": [1125, 3.393486743], "act": [64, 3.451594373], "main": [636, 2.668590864], "event": [368, 3.426276565], "page": [736, 2.824696578], "story": [1028, 2.993412483], "sign": [956, 3.301113422], "week": [1165, 2.708436772], "stories": [1027, 3.522420426], "culture": [275, 3.47756986], "capital": [182, 3.831741673], "travel": [1101, 2.802122256], "jump": [568, 3.385454571], "fork": [430, 3.183330387], "suspension": [1043, 3.223335721], "forks": [431, 3.979661804], "axle": [118, 3.883034968], "term": [1060, 3.089804329], "designs": [306, 3.426276565], "external": [380, 3.691979731], "edit": [350, 3.747860189], "word": [1179, 3.230161686], "shock": [947, 3.807049061], "ground": [472, 2.895648314], "trails": [1098, 3.540939474], "40": [45, 2.749936503], "touring": [1091, 3.63905733], "account": [63, 3.286514623], "rule": [898, 3.57903932], "require": [867, 2.96149488], "center": [194, 2.951078119], "13": [6, 2.861910175], "700c": [54, 4.342567297], "maximum": [656, 3.401583953], "edges": [349, 4.779781104], "height": [494, 3.495269437], "stack": [1008, 4.206435123], "manufacturer": [645, 3.513287942], "following": [426, 2.758447193], "original": [730, 2.920463483], "geometry": [452, 3.486380489], "terms": [1061, 2.861910175], "fit": [418, 2.464375322], "inch": [530, 3.353955904], "biking": [147, 3.495269437], "instance": [546, 3.747860189], "country": [265, 2.861910175], "conditions": [251, 3.176815706], "popular": [779, 2.604296513], "advanced": [76, 3.513287942], "recent": [852, 2.788818291], "offering": [718, 3.144864106], "limit": [607, 3.434644815], "inches": [531, 3.691979731], "specific": [989, 2.637819205], "feature": [397, 2.833870955], "lock": [621, 3.57903932], "efficient": [354, 3.522420426], "cable": [176, 3.495269437], "lever": [600, 4.102894444], "material": [653, 3.353955904], "property": [815, 3.883034968], "common": [238, 2.575413639], "effective": [352, 3.301113422], "limited": [608, 2.890758329], "needs": [699, 2.473975396], "pass": [746, 3.725131938], "mechanical": [661, 3.628800829], "torque": [1087, 3.807049061], "special": [987, 2.920463483], "means": [659, 2.113449356], "additional": [73, 2.920463483], "clearance": [221, 3.965273066], "fiber": [406, 3.771117052], "various": [1142, 2.806596537], "near": [694, 3.004282155], "retrieved": [875, 4.385126912], "2011": [19, 3.691979731], "2010": [18, 3.608598122], "2009": [17, 3.659891417], "2008": [16, 3.807049061], "18": [11, 2.829273245], "dual": [339, 3.883034968], "older": [723, 3.434644815], "archived": [100, 4.658420247], "29": [37, 3.203133014], "2012": [20, 3.460178117], "generally": [450, 2.784422679], "july": [567, 3.725131938], "45": [47, 3.361738044], "cm": [226, 4.717260747], "american": [89, 3.054713009], "january": [561, 3.569377409], "build": [168, 2.540445041], "media": [662, 3.151173275], "fits": [419, 3.301113422], "personal": [759, 2.802122256], "vs": [1151, 3.63905733], "shoes": [948, 3.819319153], "guide": [477, 2.915450942], "stable": [1007, 3.460178117], "significant": [957, 3.026382502], "photo": [761, 3.369581222], "foot": [428, 3.47756986], "systems": [1045, 3.107822834], "practice": [790, 3.293787382], "energy": [359, 3.163912301], "technical": [1054, 3.377486401], "cut": [281, 2.982659691], "smaller": [972, 2.767030936], "lightweight": [605, 3.346233858], "99": [57, 3.550329214], "watch": [1158, 3.230161686], "types": [1115, 2.833870955], "variety": [1141, 3.037618576], "research": [870, 2.8384899], "snow": [975, 4.281942675], "tension": [1059, 4.136230864], "settings": [936, 3.819319153], "force": [429, 3.138594493], "replace": [865, 3.46883618], "mind": [671, 2.619056929], "members": [664, 3.47756986], "grip": [471, 3.63905733], "protection": [817, 3.618648458], "according": [62, 2.619056929], "users": [1135, 3.257941251], "crank": [269, 3.923308867], "articles": [105, 3.63905733], "tips": [1078, 3.401583953], "science": [913, 3.361738044], "stuff": [1036, 2.905500611], "avoid": [116, 2.977326345], "problems": [804, 2.9104634], "ways": [1161, 2.600640202], "load": [618, 3.513287942], "series": [929, 2.935653649], "panniers": [740, 4.576182148], "bags": [121, 3.759421012], "helmets": [496, 4.602850395], "mount": [684, 3.540939474], "bag": [120, 3.486380489], "finding": [414, 3.10178052], "feels": [403, 3.144864106], "particular": [743, 2.998832551], "person": [758, 2.684339221], "late": [585, 3.11390188], "answer": [95, 2.998832551], "man": [643, 3.144864106], "changing": [204, 3.209822002], "construction": [255, 3.569377409], "strong": [1034, 2.861910175], "field": [407, 3.361738044], "shipping": [946, 3.725131938], "gets": [454, 2.811090926], "credit": [273, 3.540939474], "card": [185, 3.883034968], "possible": [782, 2.313870955], "interesting": [550, 3.196488471], "class": [217, 3.144864106], "insurance": [548, 4.17071704], "sale": [906, 3.330966386], "item": [559, 3.951088431], "fun": [442, 2.641614276], "60": [52, 3.054713009], "extremely": [382, 3.279294375], "capacity": [181, 3.486380489], "investment": [554, 3.513287942], "trip": [1104, 3.443083684], "color": [229, 3.522420426], "finally": [412, 2.802122256], "august": [112, 3.7949277], "ultegra": [1119, 4.748032405], "retail": [874, 3.598647791], "expert": [379, 3.569377409], "talk": [1050, 3.072104752], "touch": [1089, 3.279294375], "compact": [241, 3.736431494], "complete": [245, 2.634038482], "bar": [125, 3.196488471], "entire": [363, 2.847792293], "physical": [762, 3.361738044], "hot": [510, 3.417977763], "pedaling": [752, 3.434644815], "assist": [108, 3.628800829], "hour": [511, 3.163912301], "park": [742, 3.486380489], "levels": [599, 3.293787382], "economy": [347, 4.281942675], "mph": [687, 3.736431494], "traffic": [1096, 3.393486743], "currently": [277, 3.138594493], "reach": [842, 2.871434056], "powerful": [789, 3.043284313], "approach": [98, 3.144864106], "switch": [1044, 3.495269437], "gears": [448, 3.209822002], "europe": [367, 3.46883618], "button": [173, 3.540939474], "city": [216, 2.615346349], "security": [921, 3.649420117], "adjust": [75, 3.353955904], "upright": [1129, 3.807049061], "position": [780, 2.847792293], "recumbent": [856, 5.505718107], "minutes": [672, 2.972021293], "march": [647, 3.759421012], "2013": [21, 3.434644815], "billion": [148, 3.883034968], "tour": [1090, 3.460178117], "france": [436, 3.896280195], "million": [670, 3.107822834], "month": [680, 2.925501277], "network": [700, 3.550329214], "team": [1052, 2.84313028], "largest": [584, 3.434644815], "complex": [247, 3.460178117], "children": [210, 3.559807958], "cheaper": [207, 3.330966386], "kids": [572, 3.460178117], "computer": [249, 3.401583953], "winter": [1176, 3.736431494], "began": [133, 3.223335721], "affordable": [79, 3.301113422], "notes": [710, 3.681168815], "prime": [799, 3.994260603], "process": [805, 2.615346349], "young": [1199, 3.346233858], "past": [747, 2.586147194], "february": [399, 3.831741673], "management": [644, 3.588795495], "eventually": [370, 3.144864106], "sport": [999, 3.286514623], "board": [152, 3.369581222], "wouldn": [1189, 3.272125886], "specifically": [990, 3.250923678], "books": [155, 3.460178117], "blog": [151, 3.265008418], "activity": [66, 3.670473526], "return": [876, 3.216556034], "considered": [254, 3.170343191], "working": [1185, 2.47076512], "equipment": [364, 3.504238107], "motors": [683, 3.896280195], "saw": [909, 3.196488471], "ensure": [362, 3.230161686], "report": [866, 3.393486743], "months": [681, 2.708436772], "firm": [416, 3.559807958], "fashion": [392, 3.747860189], "london": [622, 3.649420117], "deals": [292, 3.522420426], "ice": [520, 4.385126912], "fall": [388, 3.054713009], "cities": [215, 3.486380489], "problem": [803, 2.645423804], "spending": [994, 3.504238107], "result": [872, 2.724830582], "government": [466, 3.702908802], "john": [565, 3.598647791], "starting": [1014, 2.758447193], "latest": [587, 3.004282155], "paper": [741, 3.598647791], "video": [1147, 2.94076875], "dogs": [329, 4.550206662], "named": [691, 3.63905733], "required": [868, 2.945910149], "wanted": [1155, 2.930564579], "mass": [651, 3.659891417], "games": [446, 3.909703215], "impact": [527, 3.209822002], "town": [1092, 3.522420426], "derailleur": [302, 3.522420426], "tool": [1085, 3.209822002], "york": [1198, 3.183330387], "period": [757, 3.30849353], "multi": [688, 3.513287942], "shift": [942, 3.250923678], "custom": [278, 3.230161686], "trying": [1108, 2.506658043], "keeping": [570, 3.176815706], "helmet": [495, 3.994260603], "method": [666, 3.486380489], "string": [1033, 4.407105818], "information": [541, 2.543887385], "community": [239, 3.237034566], "learn": [590, 2.672504763], "production": [809, 3.330966386], "app": [96, 3.330966386], "spent": [995, 3.037618576], "associated": [109, 3.691979731], "train": [1099, 3.513287942], "office": [720, 3.30849353], "wrote": [1194, 3.434644815], "understand": [1120, 2.977326345], "concept": [250, 3.504238107], "sense": [927, 2.712510098], "apply": [97, 3.32341918], "values": [1140, 3.883034968], "given": [456, 2.688315369], "setting": [935, 3.203133014], "numbers": [714, 3.138594493], "output": [731, 3.896280195], "bars": [126, 3.443083684], "bracket": [158, 3.522420426], "remember": [863, 2.9104634], "shorter": [953, 3.30849353], "images": [526, 3.628800829], "wrong": [1193, 2.920463483], "unit": [1122, 3.759421012], "fine": [415, 2.993412483], "driver": [335, 3.937102189], "hands": [484, 3.089804329], "mean": [658, 2.745708167], "project": [813, 3.089804329], "age": [80, 3.243955009], "web": [1163, 3.385454571], "audience": [111, 3.994260603], "pick": [763, 2.852476142], "state": [1015, 3.020811457], "food": [427, 3.279294375], "spot": [1001, 3.196488471], "live": [615, 2.619056929], "spin": [996, 3.702908802], "growing": [475, 3.223335721], "events": [369, 3.550329214], "tools": [1086, 2.988021634], "national": [692, 3.279294375], "south": [985, 3.63905733], "owner": [734, 3.504238107], "favorite": [396, 3.095774496], "film": [410, 4.136230864], "hill": [503, 3.486380489], "wild": [1175, 4.206435123], "lots": [630, 3.095774496], "certain": [196, 2.758447193], "percent": [754, 3.054713009], "job": [564, 2.784422679], "safe": [904, 3.237034566], "cases": [190, 3.237034566], "study": [1035, 3.417977763], "journal": [566, 3.896280195], "2007": [15, 3.994260603], "essential": [366, 3.670473526], "hydraulic": [519, 3.923308867], "ideas": [524, 3.460178117], "sort": [983, 3.377486401], "press": [793, 3.346233858], "batteries": [129, 3.659891417], "factor": [387, 3.301113422], "digital": [319, 3.559807958], "36": [44, 3.608598122], "email": [357, 3.434644815], "pain": [738, 3.937102189], "life": [601, 2.270968933], "summer": [1039, 3.385454571], "wall": [1153, 3.434644815], "helpful": [498, 3.659891417], "program": [812, 3.385454571], "advice": [78, 3.243955009], "department": [299, 3.513287942], "code": [227, 3.451594373], "generated": [451, 4.385126912], "access": [60, 2.982659691], "smart": [973, 3.301113422], "internet": [553, 3.301113422], "table": [1046, 3.417977763], "plans": [769, 3.559807958], "step": [1020, 2.847792293], "role": [892, 3.338570985], "trump": [1106, 4.917931442], "ebike": [345, 4.602850395], "play": [771, 2.9104634], "players": [773, 4.070633582], "racquet": [839, 5.911183215], "stability": [1006, 3.807049061], "safety": [905, 3.301113422], "player": [772, 4.086633923], "balance": [122, 3.286514623], "tennis": [1058, 5.078274092], "individual": [539, 3.209822002], "game": [445, 3.11390188], "address": [74, 3.628800829], "path": [748, 3.434644815], "water": [1159, 2.905500611], "ball": [123, 3.979661804], "shown": [954, 3.540939474], "potential": [785, 3.026382502], "professional": [811, 3.30849353], "details": [308, 3.004282155], "ticketmaster": [1075, 5.035714478], "screen": [914, 3.807049061], "purchased": [824, 3.759421012], "select": [923, 3.369581222], "00": [0, 4.153325298], "text": [1066, 3.923308867], "protect": [816, 3.57903932], "hope": [509, 3.257941251], "file": [409, 3.896280195], "steps": [1021, 3.522420426], "phone": [760, 3.176815706], "final": [411, 3.203133014], "soft": [977, 3.702908802], "produced": [807, 3.57903932], "human": [517, 3.107822834], "useful": [1133, 3.026382502], "services": [932, 3.353955904], "bank": [124, 3.896280195], "drop": [337, 2.84313028], "vehicle": [1144, 3.896280195], "rules": [899, 3.504238107], "allowed": [84, 3.243955009], "china": [211, 3.7949277], "heart": [491, 3.401583953], "women": [1177, 3.151173275], "clothing": [224, 3.771117052], "builder": [169, 4.717260747], "words": [1181, 3.144864106], "paid": [737, 3.63905733], "school": [912, 3.083869593], "fish": [417, 4.602850395], "dog": [328, 4.086633923], "men": [665, 3.250923678], "display": [324, 3.46883618], "setup": [937, 3.434644815], "chainring": [199, 3.965273066], "record": [855, 3.361738044], "28": [36, 3.163912301], "vehicles": [1145, 4.136230864], "shifters": [943, 4.17071704], "visit": [1149, 3.550329214], "positive": [781, 3.47756986], "tested": [1064, 3.369581222], "34": [42, 3.522420426], "32": [41, 3.286514623], "units": [1124, 4.136230864], "sites": [964, 3.57903932], "goal": [460, 3.209822002], "existing": [375, 3.460178117], "session": [933, 4.779781104], "descriptions": [303, 4.846472478], "cog": [228, 4.602850395], "fully": [441, 2.857182033], "picture": [764, 3.63905733], "countries": [264, 3.691979731], "brompton": [166, 4.717260747], "night": [704, 3.163912301], "seconds": [919, 3.504238107], "index": [538, 4.119423746], "september": [928, 3.844320456], "growth": [476, 3.434644815], "70": [53, 3.417977763], "law": [588, 3.659891417], "clean": [219, 3.279294375], "sharing": [940, 3.747860189], "km": [576, 4.054885225], "function": [443, 3.417977763], "present": [792, 3.434644815], "thomas": [1072, 4.26252459], "software": [978, 3.713958638], "workers": [1184, 4.102894444], "america": [88, 3.681168815], "classic": [218, 3.385454571], "2015": [23, 3.385454571], "private": [800, 3.513287942], "storage": [1024, 3.63905733], "projects": [814, 3.807049061], "april": [99, 3.736431494], "economic": [346, 4.281942675], "international": [552, 3.401583953], "land": [580, 3.608598122], "source": [984, 3.196488471], "war": [1156, 4.17071704], "kingdom": [574, 4.917931442], "31": [40, 3.649420117], "isbn": [555, 4.63024937], "health": [490, 3.30849353], "june": [569, 3.896280195], "camera": [179, 3.844320456], "chrome": [214, 5.32339655], "risk": [889, 3.293787382], "device": [311, 3.702908802], "language": [581, 3.670473526], "mall": [642, 4.881563798], "devices": [312, 3.7949277], "android": [91, 4.363620706], "financial": [413, 3.63905733], "plugin": [775, 5.035714478], "novel": [711, 4.500196241], "november": [712, 3.965273066], "execute": [374, 5.269329329], "federal": [400, 4.188416617], "cluster": [225, 4.994892483], "animal": [93, 4.224784262], "sq": [1003, 6.134326766], "title": [1081, 3.831741673], "m2": [634, 6.267858159], "dropshipping": [338, 6.267858159], "toyota": [1093, 5.648818951], "medical": [663, 4.153325298], "database": [288, 4.32194801], "ft": [440, 5.218036035], "wordpress": [1180, 4.687407784], "server": [930, 4.363620706], "animals": [94, 4.342567297], "537": [50, 6.134326766], "safari": [903, 5.728861658], "rights": [885, 3.965273066], "depression": [301, 4.994892483], "query": [829, 5.078274092], "slug": [970, 6.267858159], "linux": [612, 5.035714478], "mysql": [690, 5.648818951], "mariadb": [648, 6.422008839], "node": [705, 5.505718107]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_sports.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_sports.json deleted file mode 100644 index 7d15547..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_sports.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.70953515, "feature_log_probs": [-6.036634477, -6.042680168, -7.106720994, -7.094693764, -6.847803837, -7.064162417, -7.140474003, -6.731130489, -7.182701681, -7.422850629, -7.231392773, -7.557375878, -6.48011353, -7.763578977, -7.763248521, -7.574838755, -7.656345477, -7.596131067, -7.229951603, -7.090067071, -7.113925239, -7.292944341, -7.280512043, -7.281593605, -6.790901386, -6.845692939, -7.481002432, -7.616551591, -7.501885795, -7.291220308, -7.174029011, -7.67582263, -7.665309526, -7.53046585, -7.584731767, -6.592450552, -7.278582563, -6.851298241, -7.010205729, -7.506812443, -7.359742407, -6.493583846, -6.486878325, -6.575038109, -6.514540351, -7.132285775, -7.136871067, -7.68714189, -7.380466041, -6.424033676, -7.012694229, -6.245460475, -7.045972813, -7.087904327, -7.294972406, -6.918922026, -7.584600175, -7.203525821, -6.92346064, -7.571606306, -7.289872698, -6.951542465, -7.76213612, -7.207772701, -6.240808523, -7.180312355, -6.637534713, -7.535935794, -7.245508037, -6.663267703, -6.423465592, -6.952298179, -6.174333233, -6.969585578, -6.902257885, -7.408931861, -8.084450429, -6.878456559, -7.115985479, -7.012690555, -6.788944427, -6.708129454, -6.725475735, -6.955766981, -8.297338764, -9.976235224, -9.614719839, -10.487125779, -11.931300618, -6.985653393, -7.074612257, -7.716305939, -6.882646841, -6.490924402, -7.10775507, -7.125553638, -6.662297217, -6.92786948, -7.587984487, -8.002491036, -7.151820092, -7.279385047, -9.480724173, -6.069482034, -7.09951145, -11.607505958, -7.303074172, -7.511720888, -7.640764541, -6.894611075, -6.904583946, -6.806922461, -5.948841326, -6.099670877, -6.457472938, -7.331949658, -6.046641887, -7.025383429, -8.854333569, -6.739299902, -6.566387492, -6.189292402, -7.125296613, -7.009658189, -7.553453618, -6.282444272, -6.010514431, -6.518092249, -7.913537623, -7.276725193, -6.915788355, -6.700529779, -7.132022446, -7.211698004, -7.376368573, -7.703958512, -6.427902384, -6.700328054, -6.424993949, -10.312862608, -6.146956898, -6.503532233, -7.283421083, -6.398412418, -7.290955118, -6.911859553, -6.81777273, -6.029209515, -7.05985551, -6.582235507, -7.31209089, -6.377697736, -6.426798861, -7.118811234, -7.132746088, -6.956795096, -7.230864046, -6.938162354, -7.352985247, -9.369451293, -9.816616097, -7.160668806, -6.346827491, -7.34438994, -7.027407564, -6.513911584, -7.363591589, -6.856673655, -7.300907256, -6.953910111, -6.201161816, -7.210814674, -6.688020605, -6.675816819, -7.282491077, -8.096474056, -8.394642842, -11.021557743, -6.413555838, -7.55768104, -6.49448277, -6.542174527, -7.148764625, -6.798614924, -6.855986733, -6.443554224, -6.443549551, -5.857486998, -7.515381134, -9.239253118, -8.284366017, -8.406591746, -7.072019611, -7.114689723, -7.014326829, -6.675080444, -6.918259768, -7.396775081, -6.886227677, -7.488783284, -7.164433607, -6.036528378, -7.280696342, -6.491093081, -7.528425919, -6.522274055, -6.992324745, -7.547334506, -7.399231227, -6.839730935, -7.029729114, -6.676324731, -7.718001781, -7.353805679, -6.256084458, -6.86188241, -6.9324893, -6.842091868, -7.454742885, -8.432173044, -7.321275535, -7.145573578, -7.577523818, -6.887299913, -7.117983202, -6.661826058, -7.167121635, -6.901825079, -5.593755315, -6.494909677, -7.115956513, -7.401423497, -5.881113004, -6.41888372, -6.861171051, -7.327472561, -7.293896411, -7.367507744, -7.239216519, -6.787286655, -7.4925456, -6.151748942, -6.806715046, -7.14642655, -7.406446249, -7.311986672, -6.868115658, -6.496905274, -6.40500036, -6.578873705, -7.046644765, -6.079978233, -7.113431836, -7.181132875, -7.053898289, -7.170418805, -8.058588586, -6.313869354, -6.390414483, -6.326196681, -6.770085675, -6.591387265, -5.610027502, -6.855058461, -7.533282515, -6.774341728, -7.217476577, -6.790529526, -6.937466765, -7.061744959, -6.315191594, -6.931664296, -6.678978498, -6.957998688, -7.121576616, -7.328710704, -7.668449043, -8.964553237, -6.668395626, -7.343108191, -6.413418742, -8.835020728, -6.877548793, -6.744599315, -7.394703866, -7.236441609, -7.080083072, -7.19937345, -6.938324295, -15.444648702, -6.95774148, -6.377038804, -7.301429658, -7.66524698, -7.515156574, -6.832306018, -7.111374534, -6.175042659, -7.209560331, -7.241375553, -6.282718159, -7.066651758, -7.294437542, -7.309444213, -6.810845562, -6.374807852, -6.762996064, -7.687723596, -7.173620131, -6.461480219, -7.326397654, -7.748456181, -7.705090576, -6.870336695, -6.909382653, -7.526673871, -7.829362021, -6.99937154, -7.524647289, -6.493062336, -6.186405479, -7.025785898, -7.256760481, -7.872682611, -7.202799317, -7.685329791, -7.348748931, -7.844333339, -7.102876214, -6.299112884, -6.878345879, -7.398321578, -7.069454761, -6.829737781, -7.245779509, -8.056609052, -6.954031198, -7.458432817, -6.947686155, -6.55655568, -6.024434038, -7.668756304, -10.013455901, -7.615926763, -6.719731887, -7.271435012, -6.126611568, -7.104948697, -6.795377323, -6.86390737, -6.49475, -6.697938797, -6.317650255, -6.954336722, -7.540025581, -6.82980359, -7.172930257, -7.077098282, -6.591625157, -7.874416706, -6.685600303, -6.972241316, -7.25726864, -7.346313521, -7.830175491, -7.126955206, -6.128034488, -8.145852569, -10.608816128, -7.732948762, -5.871781468, -5.809661872, -6.614298678, -6.29054811, -6.096543545, -7.547613978, -7.866496681, -7.206298572, -6.616984451, -7.094456392, -7.243457035, -7.047603045, -6.787412064, -7.790302109, -8.110099276, -8.76328643, -6.702190896, -7.173684143, -6.777964056, -7.349931726, -7.279815695, -7.885581223, -7.352421599, -7.512303689, -6.658574443, -6.608000677, -6.780716284, -6.146855043, -6.851390917, -7.481378074, -7.509091448, -7.152973254, -7.640138397, -5.996466274, -7.687832174, -6.912905814, -6.195247048, -6.874537257, -7.285006993, -6.71061397, -7.51133705, -10.489302023, -7.319249463, -5.875213655, -7.429622421, -9.241672934, -9.660344466, -7.560158768, -7.097186721, -7.300909477, -7.005629164, -6.630546391, -6.379889494, -7.266913038, -6.444707217, -7.398291112, -6.473603244, -6.975833739, -6.646476038, -6.668505119, -7.183199347, -6.449565069, -7.129820216, -6.567983815, -7.49092068, -7.448482146, -6.307811978, -6.643887933, -7.170532087, -7.464727886, -6.942540284, -7.586605201, -7.79415389, -7.355922024, -7.221330127, -6.736593025, -6.11778951, -8.734371446, -6.926136238, -6.973421788, -6.593962746, -6.953957432, -7.474213221, -6.394117529, -7.435818838, -8.035049545, -6.497143589, -7.095284582, -6.949480882, -7.612684651, -7.464595087, -6.503387377, -7.297931079, -8.120426423, -7.443830606, -8.074066687, -7.909750574, -9.783102538, -9.256597171, -7.62033799, -7.799826417, -6.645770156, -7.177750056, -6.619524402, -7.435126841, -5.89050656, -6.936363018, -6.655754442, -7.358944349, -7.110275151, -6.816455912, -6.681634312, -7.494907041, -7.142724506, -6.707303269, -6.88376969, -6.921223719, -10.785018153, -6.601547217, -7.315243076, -6.670820529, -6.89383387, -7.078633985, -6.821725813, -8.019080498, -7.249250784, -8.086417555, -7.500802265, -6.288167008, -6.672011981, -7.116601285, -5.809721442, -6.470032345, -6.681772311, -7.730488975, -7.255636345, -6.742293413, -6.841759815, -6.468624227, -6.224388392, -6.655229346, -6.923289502, -6.796377648, -5.610561628, -6.571600491, -7.238531303, -6.048803159, -6.886157052, -6.086194886, -7.947394374, -6.338779939, -7.114540806, -7.50577412, -7.164606538, -7.617788778, -6.337500043, -6.274781753, -6.670367894, -7.111616125, -7.203583625, -7.020653698, -7.012275427, -5.575556374, -6.457995394, -6.355804111, -7.513268287, -6.691071229, -6.801480687, -7.434293152, -7.870795447, -7.637603542, -7.699600928, -6.159008957, -6.933671385, -7.550882206, -6.786413128, -6.760319963, -6.887727236, -7.178026041, -6.537293508, -7.485496001, -7.344009121, -10.768269451, -6.563518172, -7.149214519, -6.929500356, -7.436248073, -7.580998551, -7.300991783, -6.917440522, -6.880847256, -7.435845758, -7.492882868, -7.696814198, -7.310562539, -8.208216629, -7.662937099, -6.672573674, -6.668310731, -7.963617698, -7.685260496, -6.703288631, -6.824304698, -6.305125339, -6.924810869, -6.909771961, -6.921666933, -6.121542182, -6.640703941, -7.055558361, -7.159948727, -7.268919626, -7.573482945, -7.688717227, -7.608898287, -7.342415825, -6.267377791, -7.054399451, -8.232585236, -8.511703861, -6.986004009, -7.450647783, -7.644997535, -7.205739041, -6.880488781, -7.143772212, -11.210931577, -7.24950704, -7.143241651, -7.372211782, -5.696262279, -7.253623727, -6.859757041, -6.48586, -5.222482191, -6.676342505, -11.020448708, -6.759256013, -6.652743731, -7.264774117, -6.807444857, -6.349310215, -7.174357766, -7.433322881, -6.716030377, -7.065388934, -7.026463246, -7.772238329, -8.416170032, -6.502822235, -6.408625064, -9.740622885, -10.841236865, -7.03177496, -6.394505882, -6.467787171, -7.502982749, -6.872142903, -6.820786841, -6.699273788, -6.893612513, -7.163236033, -7.237405091, -7.085668885, -6.002990819, -6.780283935, -7.222642697, -7.007357297, -7.01822315, -7.653564516, -7.504485631, -6.985397549, -7.270275715, -7.05436519, -7.951732998, -6.939396344, -6.697312361, -6.523937748, -6.927821641, -7.896237449, -7.009636325, -7.339051049, -6.557127674, -6.860563835, -6.968860698, -6.676251193, -7.1645882, -7.229443635, -7.429610028, -7.063834924, -6.320533111, -7.46067725, -6.986101988, -6.639017091, -6.983097806, -7.713262958, -7.901075773, -7.84965085, -7.56820777, -7.126341729, -6.521506475, -7.182069618, -6.961059226, -7.301463293, -6.862970102, -7.17682519, -6.995283384, -6.591998917, -6.28677713, -6.707321116, -6.949413406, -6.457266195, -7.342932139, -7.321648767, -7.247302208, -6.996420423, -7.280734025, -7.789687522, -6.910064772, -7.476771641, -6.223310411, -6.808851412, -6.928220938, -7.85748878, -6.502346671, -6.615090198, -6.848245202, -6.324113095, -7.181788662, -6.303229886, -6.84175111, -6.407413698, -7.673979416, -6.903406205, -6.322455861, -6.769489408, -6.707310173, -7.043733306, -6.718408734, -6.880582604, -7.422777322, -6.651200046, -6.909824164, -6.648695073, -7.422865659, -7.034609756, -6.854652215, -7.583943476, -8.885897943, -7.991216495, -8.058208772, -6.71106608, -7.249045769, -7.265508405, -6.161308294, -6.814526662, -7.160865551, -6.095327911, -7.414067586, -6.002497852, -6.814429914, -7.375083022, -6.937307789, -6.973881592, -7.233350747, -7.175709492, -7.462094596, -6.929585293, -6.892129423, -7.332128222, -6.71589349, -7.208990418, -6.2527709, -7.109581901, -7.36187796, -7.255636053, -7.038505114, -6.679067275, -7.385158212, -7.192045608, -7.745795449, -6.697224062, -6.862652786, -7.645566367, -5.983588083, -7.108032481, -8.411532833, -6.989326459, -6.993982721, -7.042120653, -6.668834986, -9.809161816, -7.495566015, -7.569463053, -7.153983041, -6.533760235, -8.535309078, -7.085847942, -7.557722574, -6.936188901, -7.104669451, -7.052247631, -7.434039399, -6.286238895, -7.303173822, -7.132970084, -6.960816249, -6.59425166, -7.546358848, -6.247448813, -7.352849795, -6.840808009, -7.603022586, -7.098404814, -6.74569641, -6.788268848, -6.517086705, -7.086362129, -6.853505089, -7.399027866, -7.730753262, -6.395167585, -6.555079439, -6.540482616, -6.608862422, -6.161195626, -7.276486927, -7.140965166, -7.825445414, -6.413285439, -7.130439402, -6.718848441, -7.714325804, -7.347675987, -7.079621516, -7.142119205, -7.483357804, -6.707351766, -6.455661094, -6.598342416, -6.620112198, -6.302261886, -7.27943095, -6.641641046, -7.823241291, -7.153082917, -7.393357653, -7.127416047, -6.321304402, -6.544122389, -11.893741885, -6.203571766, -7.285928215, -7.615444951, -7.128063745, -7.173501557, -7.027738081, -6.480534331, -7.654607518, -6.493225705, -6.94020624, -6.917199122, -6.823764183, -7.036455402, -7.594757961, -8.809599209, -10.114268654, -8.450960837, -7.66903944, -10.645338856, -7.818579332, -7.354795881, -7.169480559, -7.532381464, -7.335546856, -6.226770288, -6.55823037, -7.043577567, -6.58631084, -7.281584805, -6.870049759, -6.978518914, -6.596431462, -6.639310706, -6.765017595, -6.998445734, -6.662915197, -7.275360061, -7.219750039, -6.721851212, -8.079902741, -7.239876853, -6.820589998, -7.077207834, -6.980794934, -6.576134785, -7.354573368, -6.778008296, -7.383007742, -7.119526329, -7.488827157, -7.156561045, -6.359824246, -6.39659618, -6.806636157, -6.938461243, -6.992924727, -6.754834114, -6.766746607, -6.933695229, -7.256126949, -6.828966621, -8.624707404, -6.516364416, -8.108093914, -6.873849785, -11.403055321, -6.969235365, -7.156678763, -6.884866823, -7.353056212, -7.853025208, -7.086042349, -6.568462757, -6.969373992, -6.26277242, -5.871315878, -6.071616269, -6.769130463, -6.958156571, -8.128057525, -6.614669846, -7.655267299, -6.64713602, -6.774298635, -6.976131048, -6.872171369, -7.004770302, -7.06112489, -8.12730563, -7.192956011, -7.35118242, -6.866807312, -7.857120072, -7.098728605, -6.172290453, -7.631360449, -6.524991182, -6.802044621, -6.761327645, -6.480075014, -6.717147478, -6.804706944, -7.520064734, -7.452323612, -6.653094738, -6.524278522, -6.812816209, -6.725451579, -7.046662404, -6.977546717, -7.270600123, -6.722313738, -5.426630088, -5.966309552, -7.179437166, -6.423708235, -6.144921656, -6.931499999, -5.89181738, -6.847855073, -6.227890795, -7.315477395, -7.169325374, -5.76075994, -6.391227266, -6.407031044, -6.846747869, -11.491752969, -7.093325951, -7.343936749, -7.246598584, -7.013424873, -5.715678663, -6.99744899, -7.311727578, -7.168920026, -7.13545959, -7.261405319, -7.860642288, -6.366169661, -5.697329003, -6.685600092, -6.515047036, -6.407493356, -6.567728711, -7.097846615, -6.713705061, -6.943919968, -7.24417482, -6.598344079, -7.979353407, -8.523960438, -8.333204936, -7.057174489, -6.481211686, -6.691965534, -7.042807988, -6.283384077, -7.088484875, -5.831495165, -7.305026303, -6.483179808, -8.697402141, -6.606891498, -5.963402002, -6.787632692, -7.400076321, -6.736417045, -7.088697128, -6.693238549, -7.088087329, -6.994627683, -7.005778422, -5.956401798, -5.941982477, -7.198166266, -6.631696272, -7.345448048, -8.533462467]}, {"log_prior": -0.677023452, "feature_log_probs": [-6.323010704, -6.240314406, -6.804612618, -6.901735052, -6.759969367, -7.168879909, -7.27856836, -6.712391797, -7.168863982, -7.195252922, -7.057855363, -7.132972522, -6.547624042, -7.718842518, -7.35019107, -7.676918811, -7.229070378, -7.276495643, -6.814274742, -7.258867566, -7.183352981, -7.18337163, -6.886470244, -7.348112836, -7.41758658, -7.360587787, -7.679248018, -7.542878805, -7.665129881, -7.429241567, -7.163604071, -7.605810534, -7.958093784, -7.878938799, -7.923259533, -6.631273747, -7.180700512, -7.098531793, -7.357154362, -7.507573032, -6.832979456, -6.605220583, -7.348483502, -6.621930813, -7.561817594, -7.364932268, -6.765766943, -7.050962387, -7.184061167, -6.648347166, -6.964475899, -7.384912561, -7.297905269, -7.979211972, -7.737292101, -8.252543456, -7.113436597, -6.548086246, -6.719759254, -7.28264632, -6.91800404, -7.246677742, -7.077625646, -7.746845845, -7.694193479, -7.06149797, -6.445500153, -7.45699284, -7.303490609, -7.76532474, -8.23634313, -7.000348159, -7.112663272, -8.761084424, -6.934114085, -7.510823648, -8.798713346, -7.168600679, -7.466740922, -7.237834474, -7.616194628, -6.850699784, -7.255167769, -6.702280252, -6.978746493, -5.789847295, -5.055162355, -6.425351864, -6.776451723, -7.089599089, -7.264590872, -7.632934514, -7.443246276, -7.066972183, -7.109802007, -7.801040264, -6.43112594, -6.687501651, -7.06288766, -5.968920314, -7.259143771, -7.470538527, -6.297404702, -6.880114738, -7.456203086, -6.205892541, -6.87802185, -7.402335095, -7.582948611, -7.793079734, -6.925482464, -7.375244111, -6.094413489, -6.175824808, -6.171251791, -7.281786511, -7.131455989, -7.253340756, -7.822478579, -6.698668229, -6.687076214, -7.975454069, -7.219292877, -6.802348881, -7.091169922, -5.890809136, -6.552585796, -7.718687752, -7.262396609, -6.963022763, -6.908908231, -7.606352324, -7.097876224, -7.214920671, -6.963265087, -7.480487998, -7.116936919, -6.964420522, -7.105054444, -6.791404052, -6.537000395, -7.541044568, -7.63430175, -6.548616778, -7.562466919, -6.536434678, -7.83065333, -7.077617896, -7.816423292, -7.489898954, -6.58703056, -8.440890836, -6.705386653, -7.702200178, -7.661885065, -6.846358306, -7.350113081, -7.244163796, -6.959030609, -6.784735202, -6.989003692, -7.073691189, -6.834810951, -7.362853456, -7.439549376, -7.365357476, -7.268500186, -6.656875678, -7.661801131, -7.686709143, -6.145497962, -6.898122627, -6.972394659, -7.882630617, -7.003292449, -6.513594334, -5.953313063, -6.323047433, -8.334531532, -6.442165506, -6.374283428, -6.888755543, -6.831197723, -7.427602378, -7.322757583, -7.395281032, -7.160284281, -6.565014986, -7.640690178, -6.678563717, -6.380557534, -7.091986992, -7.355810799, -7.614343469, -7.555892751, -8.207375524, -7.805347082, -7.487353352, -7.562833408, -7.614660585, -7.797622162, -7.117790978, -7.003691598, -6.855546148, -7.206689675, -7.407547799, -7.978381166, -6.993733828, -7.262012291, -6.401344947, -7.179636147, -6.383964084, -6.395324532, -7.415643569, -7.011806737, -7.265955855, -7.532616089, -8.247221897, -7.173804879, -7.055012306, -7.782531095, -6.976883452, -6.240556605, -7.316304981, -7.632633723, -8.052478133, -7.332384404, -7.074266366, -6.321754741, -9.52427246, -7.805679307, -7.57766122, -5.697787421, -6.40281826, -7.025545162, -6.875645022, -7.034963522, -6.678757411, -7.408735638, -9.854066327, -7.53727887, -7.129498538, -7.347958176, -7.078907429, -7.332080795, -7.585028103, -7.19919751, -8.289952197, -5.997647884, -6.092721124, -7.34910345, -6.396025631, -7.134499026, -7.424173309, -7.659191045, -7.290978568, -6.832013266, -6.466086411, -6.517588957, -8.035593365, -8.764023712, -6.289462434, -5.789350966, -7.835507978, -6.787606013, -7.438507956, -7.149627842, -6.743738873, -7.598771568, -7.457241394, -7.057768199, -7.997299573, -7.180119417, -7.503791611, -7.565296031, -7.427691759, -6.998933113, -6.614863599, -7.773654177, -8.250351292, -6.310048048, -6.686632044, -7.010983838, -8.650641222, -7.339745936, -7.516687593, -7.076061132, -7.354967198, -6.960509601, -5.697906807, -8.037165337, -8.498200253, -6.319482112, -6.251633604, -7.223953883, -7.124480203, -7.188152448, -6.713714866, -6.521697226, -7.460191799, -6.77641171, -7.384720377, -7.173512047, -7.221689632, -6.671176115, -7.322579353, -6.602221099, -7.417995458, -7.056056596, -6.573366348, -7.272386141, -7.127945015, -6.207935381, -6.484189871, -6.911086207, -7.18418737, -7.017417806, -7.364872806, -7.026135982, -7.840863225, -6.498335086, -7.141223499, -7.652241473, -6.506372438, -6.854648757, -6.459906472, -6.362904425, -6.862031096, -6.820475376, -8.826682375, -7.246327229, -6.532346576, -7.236622409, -7.677093891, -7.286203232, -6.602265047, -6.614806744, -7.315968759, -7.121003095, -7.008848702, -7.855386536, -6.573962793, -5.626087942, -7.208893226, -6.852797091, -6.842865224, -6.707190983, -7.331037196, -6.887750241, -7.0103642, -7.751474733, -6.814900381, -5.396574659, -5.448472564, -7.122664541, -7.122958475, -7.664420579, -7.388541879, -6.48533259, -6.833560748, -6.848341178, -7.599855433, -7.468291301, -6.127751085, -6.368740312, -7.1290088, -5.909696893, -6.380350248, -6.752156816, -7.338735467, -5.963438059, -7.74123718, -6.099721499, -7.310910629, -6.246561724, -7.422305994, -7.214545665, -7.069896788, -6.645396714, -7.780457426, -7.563261419, -7.502906552, -7.831332022, -6.756931162, -7.079220129, -6.862374824, -7.572094907, -6.740534068, -6.51802046, -6.91504273, -7.140963648, -7.139314023, -7.385923338, -7.409350515, -6.297786231, -6.562131775, -6.245595865, -7.163873851, -7.654939375, -7.284576526, -7.40282438, -6.828137075, -7.037271135, -6.257605111, -7.255387658, -7.406190929, -5.927536862, -7.130428455, -7.84406028, -6.768839534, -6.49681, -7.258379876, -7.127083427, -6.451023547, -7.286926267, -6.570245998, -7.028812444, -7.02185136, -7.403392589, -6.864405316, -6.490744439, -7.013365915, -8.344964726, -7.242041994, -6.960338429, -6.660140838, -6.81079387, -7.478105031, -7.255158769, -7.625957854, -7.192319613, -6.478927103, -6.932713765, -7.539901814, -7.198677626, -7.643374416, -6.725949026, -8.175514369, -7.267569537, -7.587338354, -8.544530432, -7.092257928, -7.836434043, -7.183405583, -7.766268054, -7.18730658, -7.049914007, -6.506658463, -7.098757601, -7.386770161, -6.683500983, -7.157511277, -6.506996614, -7.569035482, -7.379223553, -8.353465218, -6.666510853, -7.038101848, -7.653055642, -7.383257622, -7.572812198, -6.7212818, -6.910901631, -7.46204479, -7.486480995, -7.312892089, -6.417545714, -6.999050448, -7.020383684, -7.224991078, -7.271192551, -6.99279294, -6.364680583, -6.788917402, -6.854477041, -6.029503774, -7.60936228, -6.860112483, -7.506491265, -7.503385212, -7.782164634, -7.144478293, -7.705362278, -7.163892189, -6.518507525, -7.323528894, -7.029232267, -6.212865101, -6.743626486, -7.219682503, -6.921842367, -7.170819006, -7.063356474, -6.37756934, -6.938416258, -7.512321179, -7.014592678, -7.632649686, -6.522480643, -6.42038093, -6.822523466, -5.935649493, -7.271778285, -6.718145991, -7.587903901, -7.511143814, -6.491728786, -7.931886333, -7.205900024, -6.325445161, -6.284849557, -7.169724298, -7.127079498, -6.252079196, -6.94414313, -6.640853909, -6.043078131, -7.062712013, -6.383293021, -6.9660854, -6.836236107, -7.288554906, -7.209543134, -7.341508707, -6.953991269, -6.19533527, -6.859652446, -7.025934654, -7.02552899, -7.944932137, -7.466843019, -6.82990355, -5.916475265, -6.755884853, -6.592266769, -7.038547418, -6.099068863, -7.740066219, -7.130168838, -6.922794865, -7.526572226, -7.240688218, -7.307462449, -7.357099381, -6.510304954, -6.803055919, -6.912176598, -7.10814489, -7.903192496, -6.766542195, -7.484655915, -7.632861718, -6.375229655, -6.32397654, -7.403714845, -7.78081517, -7.489863885, -7.383878307, -7.211982199, -7.813370461, -6.061917582, -6.780347586, -7.399738475, -7.252354564, -7.169880691, -7.02691956, -6.846198603, -6.477291391, -6.642368557, -9.038115346, -6.894237281, -6.392818719, -7.708222078, -7.008620898, -7.702636187, -7.071835006, -6.660770872, -6.587065647, -6.986965107, -6.63927982, -6.977205374, -7.221874644, -6.799875037, -7.45252603, -6.749696167, -7.321032919, -6.165873906, -7.543397336, -6.77360909, -6.694328878, -7.701509402, -7.389514804, -7.338901823, -6.348780357, -7.352559296, -7.361607266, -6.636532134, -7.162215686, -7.092912817, -7.465788663, -6.219536949, -6.889122886, -7.2636745, -7.027478404, -5.738867928, -6.706182778, -6.577284196, -6.478064077, -7.316326476, -7.413665711, -7.581321275, -6.693326344, -7.484264858, -7.768839697, -7.483656818, -7.897872443, -7.398066537, -7.374090479, -6.976614762, -8.649244728, -6.261706366, -5.463354711, -5.686296836, -7.323264477, -7.141650465, -6.857362669, -7.335344474, -8.025367895, -7.908057971, -7.06548737, -7.552038381, -6.778498319, -7.609457687, -8.083520014, -7.402791595, -7.820749948, -7.145329136, -7.053979802, -7.553920041, -6.788619556, -7.048255487, -7.411676166, -7.384377091, -7.849552424, -7.268830603, -6.685186134, -6.952673034, -6.581105186, -7.157683144, -7.059182175, -6.042356604, -7.600281412, -6.772315054, -7.166735228, -7.580243681, -7.028795205, -6.535290686, -7.517105885, -7.338860607, -7.338693108, -6.43488995, -7.790964872, -6.967618802, -7.612621197, -5.868167136, -6.376802168, -5.869084205, -5.463138347, -6.293326844, -7.425608744, -6.278709838, -6.766292029, -7.576004988, -7.396490393, -7.262271151, -6.715127262, -7.191559379, -6.700313988, -6.956072482, -8.018337007, -7.291392551, -6.644229144, -7.377382474, -6.16315326, -7.565184626, -6.91800422, -6.987098593, -6.862454419, -6.961785408, -7.34160538, -7.565342208, -9.208438416, -7.794517397, -7.016241158, -6.717150682, -6.989538268, -7.742242631, -6.69291793, -7.919191701, -7.286035112, -7.89928418, -7.838948375, -6.467811096, -6.883934938, -7.283241481, -8.588347693, -7.22805696, -7.798126781, -6.700879855, -7.405991284, -6.891519611, -7.262222017, -6.696018125, -7.422767156, -7.440206214, -7.027233938, -7.129820734, -6.042233112, -7.022903985, -6.667615085, -7.165292588, -7.509453972, -7.420107886, -7.1362755, -6.929273392, -7.796160727, -7.229669674, -6.613517234, -7.334188962, -6.095529501, -7.112593097, -7.62634126, -7.145402847, -7.043164672, -6.652466991, -6.960739584, -7.535537413, -7.158424911, -7.548262057, -6.953786537, -6.993153224, -7.617037615, -6.978903957, -8.149928048, -7.311410582, -6.856488258, -7.155218548, -6.975264822, -7.715591704, -7.423700032, -7.549373519, -7.556063233, -7.070197278, -6.969391922, -6.047569809, -6.895418417, -7.185502851, -6.812164519, -7.120849524, -7.153744704, -6.684671597, -7.297077303, -7.017019493, -7.269710684, -6.608917481, -6.21751599, -6.788927012, -6.057064048, -7.425573922, -7.763938861, -7.224421431, -8.019325824, -6.842001276, -6.220728549, -7.092716562, -7.95816278, -6.064136711, -7.077873222, -6.965239873, -7.845901358, -6.320712866, -6.269926427, -6.746438513, -7.655590185, -8.082311902, -6.925156507, -7.023486075, -8.011804513, -6.885665868, -7.318912235, -7.523144888, -6.934464188, -10.185516654, -7.16886864, -7.680728269, -6.383176812, -7.238552001, -7.585270416, -7.154524026, -7.495620276, -7.590580315, -6.814513714, -6.45370883, -7.644635582, -7.494246717, -7.323986148, -7.616075172, -7.230678483, -6.982420342, -6.980925344, -7.05803363, -7.167325262, -7.253625929, -7.528262514, -6.864820322, -7.149118931, -7.145127171, -7.264035048, -6.932605702, -7.439989271, -6.23715026, -6.775807274, -7.621309458, -7.051600101, -7.172249605, -7.329071136, -7.726115575, -7.60168561, -7.079576907, -7.174180368, -7.35920637, -7.110948807, -6.495018971, -7.348557696, -6.913173254, -5.230890923, -6.789318963, -4.621689598, -7.675132044, -6.36363182, -7.054571969, -7.210464898, -7.705123583, -7.295364995, -6.870563006, -6.415850004, -6.410137451, -7.316686981, -6.468947001, -7.212531245, -6.741980597, -6.912691884, -7.052699181, -6.918991936, -7.957051861, -7.228600584, -6.413732019, -6.850722338, -7.181118154, -7.238085815, -6.315499244, -7.385988944, -7.105268805, -7.184347114, -7.397876268, -6.778041352, -7.165430716, -7.305477187, -6.603285166, -7.197891669, -6.832248398, -7.107362245, -6.929752245, -6.71478511, -8.243550656, -7.326421481, -7.102334638, -7.061773185, -6.732043462, -6.879547966, -7.222754813, -5.162040912, -6.025944476, -7.069176139, -7.149792155, -6.736104979, -6.476177667, -7.048597474, -7.194827625, -6.901070336, -7.420744083, -6.55629133, -7.327718861, -8.505122542, -7.722203905, -6.442115615, -6.154778313, -6.005470588, -6.900966694, -6.587494242, -6.978159995, -6.248732562, -7.572141274, -6.493503245, -6.184173614, -6.365832856, -7.921723851, -7.656064342, -7.150125569, -7.330012422, -7.353425189, -6.368862986, -7.319800245, -6.724465326, -5.436578481, -7.301870058, -7.012257005, -7.649462368, -6.771442696, -7.66939542, -6.486369083, -6.608861088, -6.778189311, -6.976391245, -6.304043997, -6.733758428, -7.361259151, -7.822240982, -6.954654299, -7.824659587, -7.985800936, -6.734998088, -6.470766696, -6.436596571, -6.338023677, -7.978847051, -8.526295323, -7.711191382, -7.818672729, -6.656491178, -7.236998287, -7.336426681, -7.822989831, -7.523402189, -5.897829917, -7.450270915, -6.345623123, -7.299251167, -8.387023972, -8.048538562, -6.858294644, -7.105324, -7.135382221, -6.006900169, -6.616373607, -7.363959689, -7.268670376, -6.487578011, -6.356697711, -6.881475218, -7.201904428, -5.824603465, -7.002529085, -8.253171775, -7.63318166, -6.149085129, -7.028240213, -6.621594084, -6.39949359, -7.514381788, -6.761399765, -6.189518057, -6.535939083, -6.963450492, -6.87760378, -5.534286115, -6.12967151, -7.379619836, -10.394071843, -7.076396606, -5.949483936, -7.085222219, -6.57351679, -6.617048987, -7.198637783, -5.415832603, -7.128216242, -7.177415831, -7.309334189, -7.774582728, -7.164290143, -7.576647656, -7.106575982, -6.888881579, -5.615649658, -5.684249428, -7.010143578, -6.761076424, -6.560641937, -6.921811]}], "model_type": "nb", "positive_class_label": "sports", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"year": [994, 1.745332934], "old": [620, 2.146343691], "american": [66, 2.610144377], "man": [536, 2.519018977], "person": [652, 2.484150151], "cross": [218, 3.372789352], "days": [233, 2.177949031], "ahead": [59, 3.155724846], "british": [134, 3.372789352], "race": [717, 2.992901085], "ice": [425, 3.650421088], "men": [560, 2.613684203], "set": [795, 1.906452283], "complete": [192, 2.942385295], "years": [995, 1.642207056], "ago": [58, 2.459533523], "mile": [565, 3.733802697], "took": [905, 2.375058288], "conditions": [197, 3.443406919], "pro": [693, 3.388056824], "athlete": [85, 2.813173564], "posts": [679, 3.733802697], "social": [821, 2.582268007], "media": [553, 2.558497788], "making": [534, 2.042985179], "day": [232, 1.809871455], "phone": [654, 3.212166157], "20": [12, 2.256654712], "known": [477, 2.423708797], "inside": [448, 2.861963728], "ball": [99, 3.119792837], "hard": [394, 2.168816547], "low": [527, 2.657169315], "having": [395, 2.146343691], "leg": [494, 3.620862286], "ve": [944, 1.829102817], "12": [4, 2.509388084], "13": [5, 2.880312867], "hours": [420, 2.638820177], "place": [660, 2.023143258], "world": [985, 1.684708312], "adding": [53, 3.306831384], "lost": [524, 2.848419503], "weight": [967, 2.982591716], "look": [518, 1.908202065], "body": [125, 2.323346087], "start": [845, 2.059147146], "earlier": [266, 2.977476615], "met": [562, 3.231710753], "bar": [100, 3.380393951], "turn": [922, 2.438480114], "competition": [190, 2.826245645], "come": [180, 1.997923686], "different": [251, 1.842132317], "2008": [14, 3.468099531], "25": [30, 2.835056275], "tell": [885, 2.568615918], "walk": [950, 3.0908053], "went": [968, 2.468693893], "seven": [798, 3.137597462], "north": [609, 3.225153353], "south": [828, 3.306831384], "point": [670, 2.0075484], "state": [848, 2.519018977], "words": [979, 2.813173564], "instagram": [449, 3.911785852], "used": [934, 1.86200052], "question": [712, 2.5518088], "night": [607, 2.746202938], "students": [863, 3.502001083], "father": [316, 3.528203456], "given": [360, 2.412046857], "leave": [491, 2.779127722], "spent": [834, 2.821869271], "career": [150, 2.96228645], "order": [629, 2.512588086], "train": [913, 3.0908053], "make": [532, 1.477944681], "death": [235, 3.231710753], "friend": [347, 3.137597462], "30": [35, 2.352957941], "miles": [566, 3.365242146], "line": [506, 2.372268886], "daily": [227, 2.899005], "described": [240, 3.205735267], "places": [661, 3.350316496], "close": [174, 2.646119479], "really": [729, 1.899483614], "important": [431, 2.075574621], "goes": [365, 2.702631689], "way": [961, 1.482510899], "right": [754, 1.729096415], "end": [280, 1.940233273], "does": [257, 1.936623161], "high": [406, 1.852017076], "average": [94, 2.861963728], "reach": [723, 2.884953246], "24": [29, 3.068205468], "summer": [870, 3.062634423], "actually": [49, 2.168816547], "allows": [63, 3.085107279], "nearly": [598, 2.774952351], "level": [499, 2.23699806], "energy": [282, 3.155724846], "water": [960, 2.992901085], "seen": [785, 2.420780537], "life": [501, 1.943856465], "saw": [772, 2.821869271], "help": [403, 1.86200052], "goal": [363, 2.738138378], "use": [933, 1.718899677], "soon": [824, 2.754333064], "looking": [520, 2.15303268], "ground": [377, 2.96228645], "week": [965, 2.320697079], "memory": [559, 3.640470757], "star": [844, 3.085107279], "foot": [341, 3.1496458], "standing": [843, 3.192996241], "10": [1, 1.964022135], "field": [326, 2.561859135], "recently": [733, 2.702631689], "home": [413, 2.224906014], "sport": [835, 2.320697079], "young": [998, 2.698763213], "son": [823, 3.59215218], "step": [852, 2.758423049], "play": [664, 2.254176396], "today": [903, 2.292011931], "coming": [182, 2.672094965], "parents": [639, 3.380393951], "came": [145, 2.490400171], "meet": [556, 3.062634423], "recent": [732, 2.624379492], "morning": [580, 3.0908053], "west": [969, 3.39577887], "baseball": [102, 3.285777975], "team": [881, 2.042985179], "played": [665, 2.848419503], "century": [156, 3.231710753], "built": [138, 2.657169315], "city": [170, 2.603102094], "deal": [234, 2.800270159], "costs": [206, 3.427277537], "following": [339, 2.465631103], "past": [645, 2.339389212], "small": [818, 2.227312754], "true": [918, 2.545164257], "left": [493, 2.350229426], "original": [630, 3.0908053], "playing": [668, 2.646119479], "local": [514, 2.839490872], "officials": [618, 3.744731768], "follow": [338, 2.635190409], "football": [342, 2.808853903], "basketball": [105, 3.192996241], "teams": [882, 2.871096211], "outside": [631, 2.487270278], "public": [708, 2.555147701], "money": [577, 2.474847758], "new": [604, 1.461004693], "park": [640, 3.555110908], "fan": [311, 3.388056824], "game": [352, 2.326002131], "didn": [249, 2.212958441], "believe": [110, 2.613684203], "paid": [636, 3.062634423], "stadium": [839, 3.573460047], "looks": [521, 2.918053195], "cut": [226, 3.062634423], "moment": [576, 2.698763213], "owners": [633, 3.744731768], "don": [262, 1.614409105], "happened": [391, 3.218638672], "business": [140, 2.438480114], "political": [673, 3.601630924], "door": [263, 3.476467781], "bodies": [124, 3.39577887], "project": [704, 3.131627295], "total": [908, 3.040655517], "cost": [205, 2.899005], "later": [484, 2.224906014], "000": [0, 2.380660543], "street": [859, 3.212166157], "games": [353, 2.459533523], "various": [943, 2.880312867], "moving": [585, 2.967324244], "official": [617, 3.40356101], "called": [143, 2.164281392], "area": [77, 2.787531133], "modern": [575, 3.062634423], "say": [773, 1.971457113], "court": [212, 3.24495598], "core": [204, 3.321117341], "areas": [78, 3.167994939], "stand": [841, 3.024482657], "story": [856, 2.522249997], "major": [531, 2.589164586], "league": [487, 3.155724846], "sports": [837, 2.09227647], "economic": [271, 3.766954905], "government": [373, 3.271984653], "produce": [698, 3.292746644], "far": [313, 2.220109842], "benefits": [111, 3.113927718], "away": [96, 2.150798042], "group": [378, 2.459533523], "athletic": [87, 3.161841073], "continue": [202, 2.783320601], "private": [692, 3.292746644], "trying": [921, 2.289444535], "york": [997, 2.791759469], "half": [387, 2.603102094], "billion": [117, 3.502001083], "going": [366, 1.80670188], "happens": [392, 3.079441542], "author": [92, 3.051584587], "book": [126, 2.617236605], "industry": [445, 3.096535975], "build": [136, 2.585710351], "free": [346, 2.274177063], "revenue": [750, 3.87356464], "usually": [940, 2.672094965], "100": [2, 2.596109058], "powerful": [682, 3.057094243], "hockey": [411, 4.065936532], "million": [567, 2.742162528], "professional": [702, 2.758423049], "50": [37, 2.718257007], "land": [479, 3.39577887], "sales": [769, 3.640470757], "track": [911, 2.750259738], "example": [297, 2.208219095], "increased": [439, 3.335610348], "national": [593, 2.538563573], "hand": [388, 2.435508344], "development": [246, 2.982591716], "college": [179, 2.918053195], "activity": [48, 3.278857532], "impact": [430, 2.992901085], "studies": [864, 3.335610348], "provide": [706, 2.635190409], "town": [910, 3.39577887], "comes": [181, 2.294585935], "effect": [274, 3.131627295], "share": [799, 2.750259738], "aren": [79, 2.808853903], "sure": [873, 2.203502105], "lot": [525, 1.986494991], "11": [3, 2.730138335], "despite": [243, 2.800270159], "long": [516, 1.726172436], "history": [409, 2.610144377], "huge": [423, 2.839490872], "nfl": [606, 3.755781604], "regular": [736, 3.143603486], "season": [780, 2.952286366], "number": [611, 2.212958441], "helped": [404, 3.186687072], "san": [770, 3.546061073], "housing": [422, 4.285299361], "culture": [221, 3.035235449], "sporting": [836, 3.313948852], "beginning": [108, 3.155724846], "large": [481, 2.528743527], "research": [742, 2.668342616], "pay": [646, 2.758423049], "prices": [691, 3.87356464], "rights": [755, 3.306831384], "players": [667, 2.649789208], "course": [211, 2.251704207], "americans": [67, 3.722991781], "tools": [907, 3.40356101], "growth": [381, 3.40356101], "model": [573, 2.932581295], "reason": [730, 2.54848101], "fans": [312, 2.947323577], "second": [781, 2.177949031], "war": [956, 3.357751474], "began": [106, 2.848419503], "building": [137, 2.668342616], "writer": [989, 3.564243392], "eventually": [294, 2.967324244], "hold": [412, 2.903733141], "allowed": [62, 2.942385295], "especially": [288, 2.474847758], "power": [681, 2.509388084], "limited": [505, 3.096535975], "growing": [380, 3.062634423], "want": [953, 1.740878583], "better": [113, 1.824260192], "news": [605, 2.694909643], "machine": [529, 3.48490665], "face": [304, 2.668342616], "pressure": [687, 3.125692559], "sense": [788, 2.487270278], "value": [941, 2.766653548], "measure": [551, 3.365242146], "provides": [707, 3.161841073], "late": [483, 2.817511965], "report": [740, 3.137597462], "saying": [774, 2.987733115], "problem": [695, 2.471766092], "held": [402, 2.957273908], "community": [185, 2.942385295], "current": [223, 2.770794341], "cover": [213, 3.155724846], "drive": [265, 3.119792837], "means": [549, 2.217720354], "big": [114, 2.067327151], "movement": [584, 3.0908053], "piece": [659, 2.992901085], "times": [901, 2.013368009], "fact": [306, 2.254176396], "market": [542, 2.93747128], "2012": [18, 3.079441542], "price": [690, 3.068205468], "worth": [986, 2.804552821], "capital": [146, 3.630618461], "starting": [847, 2.742162528], "near": [597, 2.967324244], "included": [434, 2.967324244], "form": [344, 2.54848101], "potential": [680, 2.722201786], "future": [351, 2.462577666], "great": [374, 1.973324527], "job": [461, 2.603102094], "competitive": [191, 3.411404188], "month": [578, 2.71041383], "need": [600, 1.751303101], "open": [625, 2.380660543], "books": [127, 3.251644968], "shared": [800, 3.350316496], "tv": [924, 3.137597462], "addition": [54, 3.143603486], "income": [437, 3.755781604], "added": [52, 2.848419503], "work": [980, 1.70165787], "comments": [183, 3.24495598], "red": [735, 3.119792837], "plan": [662, 2.942385295], "talk": [879, 2.698763213], "heart": [401, 2.899005], "needs": [602, 2.726162187], "thinking": [898, 2.766653548], "living": [512, 2.726162187], "things": [896, 1.838858992], "told": [904, 2.438480114], "2017": [23, 3.335610348], "fall": [308, 2.871096211], "family": [309, 2.613684203], "improve": [432, 2.871096211], "develop": [244, 3.113927718], "office": [616, 3.278857532], "wrote": [993, 2.866519544], "winning": [972, 2.957273908], "press": [686, 3.073807724], "push": [710, 3.113927718], "tried": [916, 2.913257022], "creating": [216, 2.927715105], "physical": [656, 2.746202938], "real": [727, 2.177949031], "estate": [291, 4.02148477], "mark": [541, 3.342936389], "university": [932, 2.610144377], "changes": [164, 2.922872481], "opportunity": [626, 3.062634423], "taking": [878, 2.331335477], "born": [128, 3.328337589], "company": [187, 2.503018635], "july": [465, 3.519392826], "2013": [19, 3.225153353], "board": [123, 3.180417459], "property": [705, 3.938103161], "certain": [157, 2.627970161], "based": [103, 2.15303268], "soccer": [820, 3.313948852], "worked": [981, 2.843945222], "room": [760, 2.726162187], "security": [784, 3.630618461], "won": [976, 2.150798042], "series": [791, 2.766653548], "best": [112, 1.777081632], "member": [557, 3.251644968], "led": [492, 2.839490872], "lives": [511, 2.835056275], "points": [671, 2.835056275], "60": [39, 3.180417459], "watch": [958, 2.660879895], "cars": [151, 3.824774475], "stuff": [866, 3.174186909], "ll": [513, 2.013368009], "love": [526, 2.441460742], "did": [248, 1.883979427], "white": [970, 2.830641257], "clear": [172, 2.468693893], "light": [502, 2.871096211], "figure": [328, 2.967324244], "john": [462, 3.113927718], "facebook": [305, 3.278857532], "post": [678, 2.538563573], "support": [872, 2.426645657], "18": [10, 2.894299109], "including": [436, 2.11786422], "29": [34, 3.601630924], "2007": [13, 3.660471424], "14": [6, 3.024482657], "17": [9, 3.035235449], "21": [26, 3.299764217], "olympic": [621, 2.843945222], "shown": [803, 3.225153353], "doesn": [258, 2.067327151], "think": [897, 1.814644734], "girls": [359, 3.630618461], "case": [152, 2.34479463], "written": [991, 3.029844601], "march": [540, 3.39577887], "women": [975, 2.706515189], "sent": [789, 3.238311437], "response": [744, 3.180417459], "understand": [928, 2.589164586], "position": [675, 2.871096211], "multiple": [587, 2.952286366], "champion": [159, 3.510659146], "center": [155, 2.861963728], "knowledge": [476, 3.180417459], "situation": [812, 3.155724846], "january": [460, 3.380393951], "email": [278, 3.388056824], "rules": [764, 2.871096211], "doing": [261, 2.094383953], "note": [610, 2.96228645], "code": [178, 3.443406919], "process": [697, 2.406266494], "directly": [254, 2.977476615], "website": [964, 3.119792837], "makes": [533, 2.150798042], "information": [446, 2.532006172], "evidence": [295, 3.131627295], "ask": [82, 2.683437242], "rule": [763, 3.39577887], "endurance": [281, 3.755781604], "strength": [860, 3.143603486], "coach": [176, 2.889615259], "choose": [169, 2.982591716], "decided": [236, 2.894299109], "write": [988, 3.0908053], "article": [81, 2.702631689], "test": [889, 2.861963728], "writing": [990, 3.073807724], "working": [982, 2.239434115], "running": [767, 2.441460742], "mind": [568, 2.406266494], "reading": [725, 3.108096797], "testing": [890, 3.573460047], "athletes": [86, 2.493539891], "needed": [601, 2.653472453], "reasons": [731, 3.0908053], "particular": [641, 2.787531133], "rate": [722, 3.180417459], "analysis": [68, 3.313948852], "training": [914, 2.519018977], "useful": [935, 3.278857532], "return": [749, 3.024482657], "pretty": [688, 2.694909643], "content": [201, 2.952286366], "issues": [458, 3.057094243], "injury": [447, 3.321117341], "risk": [757, 3.019149311], "speed": [832, 2.866519544], "wanted": [954, 2.660879895], "specific": [831, 2.675861448], "general": [355, 2.694909643], "click": [173, 3.476467781], "let": [498, 2.07764716], "goals": [364, 3.212166157], "easier": [268, 2.977476615], "questions": [713, 2.770794341], "address": [55, 3.459800729], "performance": [650, 2.519018977], "player": [666, 2.817511965], "available": [93, 2.568615918], "previous": [689, 3.096535975], "theory": [894, 3.48490665], "practice": [683, 2.627970161], "gives": [361, 2.982591716], "using": [939, 2.003687391], "bit": [119, 2.499849061], "coaches": [177, 3.313948852], "program": [703, 2.982591716], "video": [946, 2.730138335], "thing": [895, 2.06938265], "stay": [851, 2.779127722], "idea": [426, 2.358437407], "picture": [658, 3.212166157], "individuals": [444, 3.459800729], "data": [228, 2.694909643], "factors": [307, 3.59215218], "limit": [504, 3.650421088], "check": [165, 2.766653548], "gave": [354, 3.003317846], "models": [574, 3.601630924], "good": [370, 1.691735748], "change": [162, 2.310170666], "runs": [768, 3.271984653], "score": [778, 3.546061073], "famous": [310, 3.306831384], "longer": [517, 2.627970161], "period": [651, 3.199345469], "runners": [766, 3.848872027], "single": [810, 2.453472899], "decision": [237, 3.019149311], "complex": [194, 3.161841073], "deep": [238, 3.046105121], "generally": [356, 3.046105121], "higher": [407, 2.668342616], "simple": [808, 2.447448784], "couple": [210, 2.903733141], "lose": [522, 3.137597462], "application": [73, 3.824774475], "lower": [528, 2.817511965], "levels": [500, 3.073807724], "able": [41, 2.177949031], "know": [475, 1.695976037], "perform": [649, 3.212166157], "bad": [97, 2.481039729], "include": [433, 2.603102094], "straight": [857, 3.0908053], "short": [801, 2.444450281], "increase": [438, 2.908483744], "quick": [714, 3.073807724], "feeling": [321, 3.096535975], "fit": [334, 2.992901085], "interesting": [451, 3.013844259], "paper": [638, 3.372789352], "probably": [694, 2.39765812], "similar": [807, 2.503018635], "created": [215, 2.783320601], "medal": [552, 3.58276244], "james": [459, 3.39577887], "nation": [592, 3.564243392], "united": [931, 2.875693921], "states": [850, 2.766653548], "london": [515, 3.161841073], "site": [811, 3.051584587], "base": [101, 3.427277537], "study": [865, 2.830641257], "countries": [208, 3.528203456], "turned": [923, 2.894299109], "begin": [107, 3.137597462], "reality": [728, 3.265158687], "resources": [743, 3.411404188], "international": [452, 2.848419503], "director": [255, 3.205735267], "2010": [16, 3.40356101], "technology": [883, 3.085107279], "traditional": [912, 3.029844601], "little": [509, 1.949315987], "wouldn": [987, 2.972387546], "internet": [453, 3.218638672], "chance": [161, 2.835056275], "attention": [89, 2.770794341], "gold": [367, 3.186687072], "run": [765, 2.175658079], "english": [284, 3.502001083], "sort": [825, 3.035235449], "law": [485, 3.342936389], "considered": [199, 3.019149311], "pages": [635, 3.555110908], "association": [84, 3.180417459], "started": [846, 2.249238115], "early": [267, 2.369487243], "tool": [906, 3.493417339], "web": [963, 3.39577887], "search": [779, 3.008567202], "engine": [283, 4.050898655], "designed": [242, 2.967324244], "country": [209, 2.575418665], "legal": [495, 3.519392826], "individual": [443, 2.866519544], "jump": [466, 3.131627295], "rest": [745, 2.635190409], "elite": [277, 3.419309367], "winter": [973, 3.58276244], "olympics": [622, 3.079441542], "involved": [454, 2.982591716], "hands": [389, 3.003317846], "successful": [869, 2.982591716], "club": [175, 3.238311437], "racing": [719, 3.650421088], "larger": [482, 3.292746644], "host": [417, 3.45157023], "dr": [264, 3.601630924], "science": [777, 2.992901085], "medicine": [555, 3.744731768], "answer": [71, 2.835056275], "changed": [163, 2.927715105], "2014": [20, 3.119792837], "2016": [22, 3.062634423], "got": [372, 2.180245243], "works": [984, 2.535279498], "event": [292, 2.653472453], "according": [43, 2.331335477], "guys": [384, 3.476467781], "type": [926, 2.691070867], "images": [429, 3.58276244], "knew": [474, 2.982591716], "feet": [323, 3.003317846], "present": [684, 3.161841073], "cup": [222, 3.265158687], "finally": [332, 2.804552821], "match": [544, 3.003317846], "trip": [917, 3.564243392], "simply": [809, 2.389123217], "happen": [390, 2.875693921], "common": [184, 2.649789208], "final": [331, 2.766653548], "round": [762, 3.192996241], "favorite": [317, 3.205735267], "society": [822, 3.443406919], "female": [325, 3.48490665], "male": [535, 3.502001083], "felt": [324, 2.880312867], "behavior": [109, 3.48490665], "fight": [327, 3.328337589], "heard": [400, 3.113927718], "takes": [877, 2.545164257], "getting": [358, 2.15303268], "pass": [644, 3.313948852], "isn": [456, 2.30234794], "learning": [490, 2.947323577], "instead": [450, 2.198807261], "quite": [716, 2.653472453], "wrong": [992, 2.791759469], "act": [45, 3.108096797], "issue": [457, 2.972387546], "matter": [545, 2.532006172], "control": [203, 2.620801671], "review": [751, 3.350316496], "feel": [320, 2.168816547], "wasn": [957, 2.649789208], "positive": [676, 3.218638672], "word": [977, 2.957273908], "mean": [547, 2.653472453], "difference": [250, 2.927715105], "minute": [570, 3.035235449], "members": [558, 3.143603486], "dogs": [260, 4.517921656], "stage": [840, 3.342936389], "personal": [653, 2.79600576], "natural": [594, 3.051584587], "result": [746, 2.653472453], "link": [507, 3.285777975], "page": [634, 2.913257022], "muscles": [589, 3.650421088], "pain": [637, 3.45157023], "guide": [382, 3.186687072], "problems": [696, 3.035235449], "function": [350, 3.45157023], "health": [397, 2.894299109], "medical": [554, 3.48490665], "thought": [899, 2.406266494], "necessary": [599, 3.051584587], "human": [424, 2.826245645], "quickly": [715, 2.718257007], "space": [829, 2.830641257], "exactly": [296, 2.762529831], "product": [699, 2.987733115], "products": [701, 3.258379], "walking": [951, 3.502001083], "standard": [842, 3.218638672], "middle": [564, 2.932581295], "likely": [503, 2.435508344], "break": [132, 2.835056275], "nature": [595, 2.998095902], "cause": [154, 3.174186909], "experience": [300, 2.279240365], "environment": [287, 3.161841073], "live": [510, 2.4966895], "taken": [876, 2.706515189], "design": [241, 2.998095902], "features": [319, 3.040655517], "significant": [806, 3.161841073], "term": [887, 2.903733141], "children": [167, 2.957273908], "hit": [410, 2.742162528], "table": [875, 3.205735267], "advantage": [56, 3.174186909], "ways": [962, 2.432545379], "ability": [40, 2.683437242], "force": [343, 3.113927718], "avoid": [95, 3.062634423], "workout": [983, 3.848872027], "option": [627, 3.068205468], "blood": [122, 3.313948852], "forward": [345, 2.848419503], "faster": [315, 3.108096797], "uses": [938, 3.013844259], "balance": [98, 3.40356101], "helps": [405, 2.947323577], "legs": [496, 3.528203456], "art": [80, 3.299764217], "slow": [817, 3.238311437], "bring": [133, 2.913257022], "exercise": [298, 3.161841073], "stress": [861, 3.564243392], "animal": [69, 3.924857934], "challenge": [158, 3.073807724], "try": [920, 2.271654994], "key": [471, 2.742162528], "super": [871, 3.271984653], "fast": [314, 2.702631689], "fitness": [335, 3.58276244], "brain": [130, 3.365242146], "travel": [915, 3.180417459], "digital": [253, 3.640470757], "throw": [900, 3.427277537], "loss": [523, 3.435309709], "view": [947, 2.875693921], "source": [827, 3.046105121], "athletics": [88, 3.766954905], "record": [734, 2.894299109], "class": [171, 2.927715105], "wants": [955, 3.113927718], "compete": [189, 3.285777975], "events": [293, 2.675861448], "500": [38, 3.161841073], "2019": [25, 3.40356101], "testosterone": [891, 4.672072336], "offers": [615, 3.225153353], "2009": [15, 3.555110908], "required": [741, 2.96228645], "2011": [17, 3.39577887], "production": [700, 3.58276244], "range": [721, 2.982591716], "2015": [21, 3.108096797], "indian": [442, 4.384390263], "april": [75, 3.476467781], "2018": [24, 3.328337589], "entire": [286, 2.71041383], "distance": [256, 3.258379], "months": [579, 2.620801671], "woman": [974, 3.231710753], "global": [362, 3.39577887], "head": [396, 2.375058288], "win": [971, 2.726162187], "title": [902, 3.45157023], "marathon": [539, 3.898882448], "ideas": [427, 3.231710753], "parts": [643, 3.192996241], "policy": [672, 3.611200375], "published": [709, 3.024482657], "journal": [464, 3.476467781], "cultural": [220, 3.77825446], "consider": [198, 2.762529831], "non": [608, 2.783320601], "black": [120, 2.992901085], "ring": [756, 3.898882448], "statement": [849, 3.493417339], "mr": [586, 3.573460047], "role": [759, 2.992901085], "america": [65, 3.068205468], "espn": [289, 3.755781604], "action": [46, 2.947323577], "marketing": [543, 3.435309709], "manager": [538, 3.39577887], "named": [591, 3.180417459], "crowd": [219, 3.58276244], "self": [786, 2.679642171], "learned": [489, 3.0908053], "date": [230, 3.342936389], "watching": [959, 3.079441542], "television": [884, 3.435309709], "access": [42, 2.839490872], "kind": [473, 2.471766092], "stories": [855, 3.068205468], "air": [60, 2.942385295], "maybe": [546, 2.754333064], "age": [57, 2.672094965], "asked": [83, 2.589164586], "hot": [418, 3.313948852], "kids": [472, 3.167994939], "looked": [519, 3.079441542], "meant": [550, 3.192996241], "network": [603, 3.155724846], "audience": [90, 3.564243392], "riding": [753, 3.898882448], "sell": [787, 3.45157023], "hair": [386, 3.789683156], "activities": [47, 3.335610348], "jumping": [467, 3.938103161], "size": [813, 3.040655517], "youth": [999, 3.766954905], "cases": [153, 3.192996241], "mountain": [582, 3.650421088], "bull": [139, 4.759083713], "races": [718, 3.755781604], "august": [91, 3.650421088], "june": [469, 3.48490665], "difficult": [252, 2.675861448], "highly": [408, 3.180417459], "school": [776, 2.515798362], "gets": [357, 2.762529831], "guy": [383, 3.292746644], "computer": [195, 3.519392826], "ad": [50, 3.898882448], "image": [428, 3.24495598], "hour": [419, 3.013844259], "box": [129, 3.380393951], "ride": [752, 3.40356101], "style": [867, 3.040655517], "child": [166, 3.342936389], "terms": [888, 2.857428573], "jumps": [468, 4.405443673], "fun": [349, 2.861963728], "talking": [880, 3.029844601], "bike": [116, 3.951526181], "possible": [677, 2.289444535], "stop": [853, 2.585710351], "feels": [322, 3.342936389], "president": [685, 3.10229968], "friends": [348, 2.746202938], "read": [724, 2.412046857], "minutes": [571, 2.610144377], "ran": [720, 3.285777975], "fear": [318, 3.321117341], "understanding": [929, 3.271984653], "concept": [196, 3.271984653], "seconds": [782, 3.0908053], "skills": [815, 3.161841073], "biggest": [115, 2.992901085], "october": [613, 3.611200375], "ready": [726, 2.957273908], "california": [142, 3.546061073], "horse": [415, 3.951526181], "horses": [416, 4.343568269], "success": [868, 2.762529831], "strategy": [858, 3.335610348], "eyes": [303, 3.271984653], "language": [480, 3.39577887], "strong": [862, 2.742162528], "mobile": [572, 3.733802697], "app": [72, 3.58276244], "popular": [674, 2.852913892], "users": [937, 3.258379], "shows": [804, 2.880312867], "relationship": [738, 3.192996241], "remember": [739, 2.826245645], "pick": [657, 3.180417459], "gone": [369, 3.125692559], "moved": [583, 3.306831384], "house": [421, 2.957273908], "google": [371, 3.48490665], "online": [624, 2.861963728], "basic": [104, 3.003317846], "education": [273, 3.468099531], "golf": [368, 3.951526181], "tennis": [886, 3.555110908], "15": [7, 2.435508344], "brought": [135, 3.180417459], "ones": [623, 2.750259738], "spend": [833, 2.982591716], "systems": [874, 3.502001083], "results": [747, 2.675861448], "percent": [647, 2.967324244], "compared": [188, 3.218638672], "learn": [488, 2.541858469], "wall": [952, 3.174186909], "st": [838, 4.065936532], "groups": [379, 3.251644968], "choice": [168, 3.10229968], "financial": [333, 3.313948852], "music": [590, 3.493417339], "save": [771, 3.39577887], "27": [32, 3.660471424], "gym": [385, 3.789683156], "expect": [299, 3.0908053], "photo": [655, 3.380393951], "oil": [619, 4.14471741], "weeks": [966, 2.857428573], "focus": [336, 2.582268007], "extra": [301, 3.046105121], "healthy": [398, 3.419309367], "special": [830, 3.057094243], "road": [758, 3.1496458], "greatest": [376, 3.357751474], "care": [149, 2.861963728], "completely": [193, 2.93747128], "scale": [775, 3.342936389], "offer": [614, 2.766653548], "40": [36, 2.952286366], "lead": [486, 2.698763213], "approach": [74, 2.880312867], "meaning": [548, 3.292746644], "file": [329, 3.824774475], "eye": [302, 3.119792837], "theme": [893, 3.992911397], "contact": [200, 3.476467781], "championship": [160, 3.640470757], "greater": [375, 3.113927718], "yes": [996, 2.908483744], "related": [737, 2.899005], "effort": [276, 3.013844259], "enjoy": [285, 3.278857532], "16": [8, 2.947323577], "particularly": [642, 2.998095902], "28": [33, 3.45157023], "film": [330, 3.650421088], "setting": [797, 3.192996241], "happy": [393, 3.24495598], "26": [31, 3.443406919], "mother": [581, 3.546061073], "buy": [141, 2.977476615], "23": [28, 3.39577887], "animals": [70, 4.02148477], "shot": [802, 3.137597462], "perfect": [648, 2.918053195], "section": [783, 3.278857532], "allow": [61, 2.804552821], "kept": [470, 3.143603486], "dog": [259, 3.86114212], "hope": [414, 3.046105121], "version": [945, 2.918053195], "visit": [949, 3.555110908], "trump": [919, 4.285299361], "account": [44, 3.085107279], "tour": [909, 3.812940018], "service": [793, 2.857428573], "mental": [561, 3.350316496], "sign": [805, 3.108096797], "focused": [337, 3.167994939], "september": [790, 3.564243392], "currently": [224, 3.119792837], "main": [530, 2.894299109], "sets": [796, 3.435309709], "19": [11, 3.238311437], "sound": [826, 3.335610348], "muscle": [588, 3.493417339], "michael": [563, 3.313948852], "22": [27, 3.335610348], "twitter": [925, 3.057094243], "length": [497, 3.573460047], "thanks": [892, 3.212166157], "easy": [270, 2.36118844], "companies": [186, 3.1496458], "quality": [711, 3.008567202], "developed": [245, 3.131627295], "smart": [819, 3.48490665], "easily": [269, 2.880312867], "knows": [478, 3.174186909], "options": [628, 3.218638672], "archived": [76, 4.72923075], "list": [508, 2.624379492], "add": [51, 2.653472453], "overall": [632, 3.199345469], "plus": [669, 3.068205468], "couldn": [207, 3.029844601], "types": [927, 3.180417459], "blog": [121, 3.350316496], "create": [214, 2.506198288], "hear": [399, 3.108096797], "viktor": [948, 6.309681125], "car": [147, 3.155724846], "sleep": [816, 3.573460047], "emotions": [279, 4.212540006], "calls": [144, 3.306831384], "edit": [272, 3.992911397], "store": [854, 3.419309367], "nba": [596, 3.924857934], "devices": [247, 3.766954905], "david": [231, 3.45157023], "jones": [463, 4.426949878], "food": [340, 3.096535975], "effective": [275, 3.265158687], "skill": [814, 3.45157023], "unique": [930, 3.161841073], "card": [148, 3.812940018], "services": [794, 3.205735267], "platform": [663, 3.40356101], "brand": [131, 3.218638672], "values": [942, 3.712296492], "numbers": [612, 3.24495598], "management": [537, 3.372789352], "amazon": [64, 3.789683156], "essential": [290, 3.650421088], "india": [441, 4.47140164], "user": [936, 3.459800729], "mini": [569, 4.672072336], "index": [440, 4.426949878], "credit": [217, 3.680880296], "includes": [435, 3.167994939], "billy": [118, 5.547541073], "customers": [225, 3.766954905], "default": [239, 4.065936532], "rope": [761, 4.997494736], "retrieved": [748, 4.542019208], "isbn": [455, 4.923386764], "wordpress": [978, 4.672072336], "database": [229, 4.266607228], "server": [792, 4.426949878]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_travel.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_travel.json deleted file mode 100644 index 12f8a29..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/nb_model_build_attachment_travel.json +++ /dev/null @@ -1 +0,0 @@ -{"classes": [{"log_prior": -0.697448262, "feature_log_probs": [-7.622129246, -6.209452826, -6.058430034, -6.813578276, -6.906549693, -6.79624657, -7.245522837, -7.086519205, -6.860823081, -6.896748816, -7.27602381, -7.203137653, -7.449236511, -6.784338347, -7.595023556, -7.369745216, -7.343943334, -7.141155666, -6.997706083, -6.825137336, -6.980833313, -6.706181322, -6.973480985, -7.355434066, -7.473462432, -7.588194975, -7.681234773, -7.195947449, -7.109788766, -7.540247216, -7.728854254, -7.81042644, -7.638006475, -6.848819412, -7.866920735, -7.770958, -7.950145625, -7.335010716, -8.023210903, -7.202302317, -7.570623706, -8.206300333, -7.591765542, -7.895854593, -7.952346261, -7.580510728, -6.751441828, -6.607370804, -6.772093309, -11.327248709, -9.17948267, -6.445180395, -6.695092174, -7.052924526, -7.366655846, -7.845622945, -7.263852505, -6.406032137, -6.382384664, -7.01232751, -7.169808523, -7.516850699, -7.48398047, -7.102821314, -9.06304255, -7.560680036, -8.392711277, -9.12552636, -7.411127402, -8.196279297, -8.254770299, -6.947782844, -7.340086527, -7.698528648, -7.752957295, -6.777163679, -7.76029093, -7.230314722, -10.159224022, -10.511179492, -10.856492986, -8.820744114, -7.017488134, -7.477146312, -7.11642214, -7.276936325, -7.852799792, -6.775547117, -7.503775445, -6.811210188, -6.770411409, -8.143607659, -7.287363479, -6.543395903, -6.365619539, -7.771761481, -6.811660785, -6.314028642, -7.089076085, -7.202443029, -7.397365964, -6.932530899, -7.293599985, -7.735914935, -8.274942085, -7.187311828, -7.378117669, -7.131191538, -9.332182247, -7.112568849, -6.679002284, -7.497049306, -8.245233575, -6.827668845, -6.965833582, -7.025617357, -9.771724993, -8.00207287, -8.286149848, -6.892890263, -6.778565957, -7.199154058, -7.158839082, -6.670650766, -7.778400251, -10.290021453, -15.454890094, -11.128295757, -10.524970499, -10.633971817, -6.827926675, -7.890013286, -8.688501743, -10.979820253, -7.495752678, -7.371113924, -7.920217612, -7.397317716, -6.098165254, -7.099420831, -8.683066495, -11.637599708, -7.532664277, -7.82879187, -8.228638527, -7.144330476, -7.259100169, -7.033493159, -6.929581263, -6.876571293, -8.566409248, -6.220152295, -6.289056028, -7.286822889, -6.512277947, -7.653600985, -6.075774502, -7.084263439, -7.287395738, -6.867990527, -6.816300952, -6.408383595, -6.594171774, -7.641300035, -7.110792745, -9.758954751, -5.993175845, -6.328247675, -9.762291505, -10.172802936, -6.443604042, -7.96247774, -7.652856129, -7.04140768, -6.656124608, -7.069204323, -7.962275224, -7.517113504, -8.318773765, -7.148810639, -7.383019606, -7.680322163, -6.663276979, -6.594749042, -6.826114793, -8.660398943, -10.167830383, -6.146888207, -6.769652083, -7.378875716, -7.385474051, -6.429410675, -12.320003915, -6.970761697, -6.864424133, -8.134357599, -7.855333398, -7.677071867, -7.150510757, -6.481210515, -7.562530744, -7.864195612, -6.97211581, -7.881151869, -6.911254991, -6.443603305, -7.131893566, -7.929080471, -8.117994404, -7.678431857, -7.045188403, -7.058354541, -7.650903506, -7.27253502, -7.08181849, -7.241177337, -7.342333637, -6.425037161, -7.071459115, -7.881500793, -8.343867581, -8.041930385, -9.80618512, -7.064891013, -9.100397543, -7.112987999, -6.998258033, -7.61518179, -7.804874011, -7.230212224, -7.188326853, -8.155074113, -7.608787664, -7.879182253, -6.656418645, -6.968755399, -6.862202885, -6.896451238, -7.190228077, -6.810133138, -7.305081332, -6.986207506, -7.524723187, -7.355513441, -8.464361196, -6.671760262, -7.646867327, -7.407302956, -7.52981127, -6.502808298, -6.519361218, -8.367427792, -7.711790625, -7.268208539, -7.216320846, -6.7436937, -6.627310275, -6.806723579, -6.264995503, -7.430973425, -13.045757607, -7.10555478, -7.14974476, -7.016475683, -6.751668192, -7.427650339, -7.670551234, -7.162910112, -7.057702568, -7.463040589, -7.281917114, -6.107450167, -7.067686684, -6.541297308, -7.337845911, -7.138078982, -7.553660797, -7.37576668, -7.066659914, -7.410331749, -6.443009398, -7.351621787, -6.349225005, -6.94590303, -7.24983093, -7.138281938, -6.91219638, -7.602544515, -9.048193629, -10.51217287, -7.546470218, -7.331627222, -6.859822565, -7.138105289, -7.087720334, -6.773911142, -7.047646325, -6.942066989, -5.525950587, -6.191420582, -7.464567436, -6.10220181, -6.916386762, -6.984950996, -8.313490064, -7.535813912, -7.524189492, -7.170958198, -7.159143017, -7.76330713, -10.574365893, -7.68461622, -7.020438645, -7.68953891, -6.367471107, -7.176653857, -7.214294841, -9.235441444, -9.719161746, -7.300993344, -7.259992739, -6.827062958, -7.738306134, -6.190861165, -6.505902998, -7.15897923, -6.186933142, -7.102906173, -7.283002546, -8.081594515, -7.563231993, -7.279857421, -7.829733229, -6.288206948, -6.412038744, -6.952110447, -6.502918751, -7.727633672, -5.698013193, -6.914523103, -7.133868467, -7.787335885, -7.173894013, -7.844366878, -8.507299008, -7.45144021, -7.386695078, -7.325009514, -7.274732581, -7.0101918, -8.035518978, -7.174551383, -7.166054775, -7.904854755, -6.661406785, -7.367219607, -7.429400498, -7.069360646, -7.155105365, -7.268878554, -6.525416363, -6.959571682, -7.007702399, -10.227774358, -7.082086823, -6.401618465, -6.633611399, -7.609719284, -7.530021966, -7.265960609, -7.789652454, -7.216286466, -7.246497958, -6.911975185, -7.113052365, -6.655865898, -7.696984327, -7.767533337, -7.405276936, -7.276836724, -10.084863125, -6.518472772, -7.079973055, -6.264794413, -7.803799046, -8.129404331, -7.502650306, -7.39074618, -7.907531139, -6.539100031, -7.907906566, -8.013646598, -8.21077413, -8.885508846, -7.320099143, -7.414422464, -7.375723343, -6.740356243, -6.508706614, -6.721088152, -7.359812609, -6.540336656, -7.916012814, -6.614822617, -6.822440448, -7.456284169, -6.937244635, -6.796656579, -7.743915656, -8.471907637, -6.385479127, -6.958452791, -8.679623728, -7.354936577, -7.172531205, -7.523170549, -9.770486576, -8.218304684, -7.244813513, -6.50503431, -7.434601637, -7.130805941, -6.540084735, -7.327086281, -7.667227013, -7.129635377, -8.707157129, -9.687675169, -8.307583096, -8.954619674, -6.513978369, -6.903561275, -6.802423166, -6.40059428, -7.807832764, -7.782305481, -6.702561639, -7.283141157, -7.340697226, -6.861676524, -8.128739891, -8.469958764, -6.406530924, -7.633722934, -7.309260153, -7.012200676, -8.047204485, -6.690320863, -7.27774536, -7.157234114, -7.124289598, -6.893887971, -6.945507758, -6.665710181, -6.083319001, -6.462117943, -7.768069332, -6.661923779, -6.923436994, -7.412268581, -6.977201415, -6.533033842, -6.765849341, -7.329795563, -7.112497233, -7.037849203, -6.777135823, -7.164251421, -6.197378418, -5.961724481, -6.318714418, -6.507026421, -6.416045263, -8.076081943, -6.214518243, -7.372425453, -7.091932152, -6.555021392, -7.092553878, -7.253136143, -6.782315461, -8.188594499, -7.489723111, -8.279379537, -6.879229062, -6.742371221, -7.451956493, -6.944485269, -7.518171808, -7.658711998, -6.60228323, -7.515411928, -6.591680735, -6.871956689, -6.263731483, -7.151658889, -7.407578936, -6.09093904, -6.971611056, -7.718592487, -6.129943864, -6.804450933, -7.187884596, -9.79595718, -10.062735272, -6.732574611, -7.283412212, -7.021542788, -8.1645507, -6.10674177, -8.710435574, -7.177031939, -7.435996762, -15.454890094, -15.454890094, -7.833194305, -7.185609699, -8.906675796, -10.101267081, -7.141140951, -6.695325437, -6.451241467, -8.221816304, -6.778698345, -7.445370328, -6.423432873, -7.492799819, -10.83097697, -6.681207631, -7.586535989, -6.912613, -6.339679436, -6.520227533, -7.117161383, -6.469602004, -7.102189033, -6.840840078, -7.426227733, -7.278629386, -6.525990653, -6.774342881, -6.972791245, -8.23914535, -7.570182708, -7.341845319, -7.913064112, -6.941382484, -6.847890028, -6.173322035, -15.454890094, -7.002684134, -7.41418911, -7.19957219, -6.714606619, -7.534562151, -7.431542413, -7.31141213, -7.159879378, -6.822788572, -6.903423031, -9.718160407, -7.858822286, -10.397788739, -6.596798853, -6.860189547, -6.808450313, -10.072477376, -7.699878313, -15.454890094, -15.454890094, -7.697172299, -7.666841773, -7.604316637, -7.485910546, -6.542837725, -7.667718343, -8.685841772, -7.899769195, -7.453488463, -7.514390634, -6.621819379, -7.190355745, -6.642088247, -5.919025469, -7.249388282, -6.809257317, -15.454890094, -8.426513138, -7.237022988, -9.169539309, -7.307514422, -7.357675411, -12.094200795, -8.670309818, -6.764923563, -7.302340052, -7.986332752, -7.540787796, -6.675374776, -7.110551128, -6.297805351, -7.11684757, -6.55324261, -7.17488385, -7.333780712, -7.376805843, -6.698798228, -6.418927069, -7.871622565, -6.553910799, -6.870962331, -5.918298469, -6.707040173, -8.387302222, -6.707767133, -7.542236846, -6.927406606, -7.773079454, -6.961111026, -6.909296499, -7.381671323, -6.570728926, -6.289723535, -6.659228775, -7.040004898, -7.007481366, -5.937748988, -7.189810779, -10.946184911, -8.22731449, -7.47229469, -8.73404245, -7.801622241, -6.08548455, -6.931273926, -6.136966772, -6.579780428, -7.030203837, -7.418920932, -6.283761347, -7.993997448, -6.59519919, -6.798466318, -7.180493673, -10.447604173, -8.257531979, -8.334939514, -15.454890094, -7.08282339, -7.377708735, -7.063950253, -5.620496562, -6.621225116, -6.44832966, -6.4789394, -7.040784029, -8.531024565, -7.451893565, -6.47132252, -6.705246117, -7.568860582, -7.231536824, -7.271942464, -6.963368088, -6.983817702, -8.361756798, -8.818817381, -6.837521173, -7.15041694, -6.477923919, -6.416202298, -7.203868631, -8.819902973, -7.427598192, -6.906856373, -6.391191901, -8.28297137, -7.946016039, -7.617522825, -7.562354201, -6.354482025, -6.930363813, -7.477908773, -6.823761203, -8.526851553, -7.213708794, -6.399113242, -7.045161764, -6.9661515, -7.109424588, -6.198883726, -6.548745715, -6.928145406, -7.579542976, -8.126188797, -8.607715811, -6.187941905, -7.697907547, -6.977602073, -9.275549018, -7.183166192, -7.08062298, -6.824150808, -7.388799734, -7.534170926, -9.202644949, -7.307590147, -5.857030913, -7.048849278, -6.844293637, -11.53344025, -7.626565807, -6.619164139, -5.373975532, -6.528945484, -13.74450026, -7.310657352, -7.073768041, -9.19386152, -6.717664418, -7.741972958, -8.71632002, -9.980487562, -7.051778348, -7.839499555, -6.340786163, -7.22827294, -8.070439227, -7.242659556, -7.93951806, -7.362860545, -6.726843037, -6.799674546, -6.380174195, -7.095578605, -6.555098975, -6.582923527, -7.48884397, -7.386739114, -7.314827819, -6.734981955, -7.301590549, -6.863944891, -7.030726394, -7.356335821, -7.767438428, -8.033616356, -9.437878148, -6.582067869, -7.111130728, -7.218384719, -6.824934256, -7.054773496, -8.769914402, -8.262290183, -7.053748222, -7.220144732, -7.403786943, -7.270457567, -7.363607645, -7.952167249, -9.342752705, -6.721381308, -7.567372249, -6.907769875, -7.676603326, -8.729365551, -6.641281089, -7.317384101, -6.350120663, -7.322313428, -6.591442747, -6.786776184, -6.817427828, -6.702564822, -7.351238628, -6.781728452, -7.361554882, -7.310612809, -7.15048836, -6.602427855, -7.886495467, -7.179367068, -8.57355509, -7.859384155, -7.682421859, -7.315813529, -7.177151076, -6.600960813, -6.676470663, -6.753551351, -7.867762841, -7.271996755, -8.27238806, -8.91380041, -6.378847267, -6.979586548, -7.222321973, -6.98583179, -7.916554694, -7.056817287, -8.016149097, -6.977477376, -6.65214561, -6.228685328, -6.913580551, -6.897901315, -6.474681588, -7.10621327, -6.904100982, -7.572630907, -7.936323506, -6.78875596, -6.884714141, -6.839338989, -7.46094598, -7.128195696, -7.14938306, -6.736654417, -6.665017038, -6.971786618, -6.269379409, -6.478108789, -6.704991019, -6.491616216, -7.380916061, -6.905020351, -6.259675184, -7.508174521, -6.509301581, -6.866177066, -7.55901921, -7.265970028, -6.488471614, -6.736840383, -7.226034008, -6.654012043, -6.630918479, -6.547014692, -7.500212869, -7.131033475, -6.776216582, -6.738832583, -6.840718047, -6.909680918, -7.611123154, -7.083409299, -6.207158552, -7.082391069, -6.959236702, -6.976074261, -6.047583161, -6.158611288, -7.002575865, -6.872462646, -7.473779475, -7.721712983, -6.826733399, -7.158085016, -7.496437237, -7.876967675, -7.353043313, -7.353260122, -8.444941557, -7.21335414, -6.784222042, -8.036644965, -7.189720213, -7.663139607, -8.005023149, -6.810349972, -7.540962378, -7.16034781, -6.308040611, -6.730536017, -8.999301199, -7.42631332, -7.188849497, -8.549265649, -8.986572107, -6.790187572, -6.514413003, -6.848693435, -7.371535754, -7.662488979, -6.814049445, -7.825806138, -7.296721883, -7.551291486, -8.219998336, -9.511462636, -11.236023979, -7.692632814, -6.087660624, -7.087152532, -8.983336954, -7.316064926, -8.263336157, -7.538088463, -6.976116828, -8.371197423, -9.011718857, -10.325416284, -6.889935945, -8.304746172, -7.738681559, -8.459078615, -7.163925075, -6.841920415, -6.523435781, -6.543379214, -9.129726335, -7.782547306, -7.224994329, -7.072997588, -8.035971823, -7.143755481, -7.636470016, -7.432425123, -6.271415064, -7.336720622, -7.826838783, -6.59358395, -6.382606067, -6.979195666, -7.616384202, -7.044457059, -7.747384569, -6.454400708, -7.769410243, -7.967636661, -6.652797439, -7.183951532, -6.824688145, -7.55334049, -6.783486869, -6.397674772, -7.18320698, -7.463443071, -7.464760624, -6.739121144, -7.623960084, -8.23438573, -6.609024355, -6.631588757, -6.822873376, -6.918309158, -6.125150664, -7.322022411, -7.672313501, -6.787647248, -7.341603374, -7.6736912, -7.616778664, -8.175267458, -6.90861634, -7.008810936, -10.119386204, -7.305900865, -7.410272856, -6.83278054, -6.652552886, -6.601171681, -6.673015636, -6.383359029, -7.283778433, -6.921335989, -6.698927061, -7.28247796, -7.665038755, -6.42550072, -7.38130493, -6.865853547, -8.7242434, -5.972169012, -6.948172124, -7.314996526, -9.332157475, -7.213306288, -7.095388755, -6.810506972, -7.744067915, -6.727915698, -8.688116986, -7.157063706, -6.904278589, -6.753781181, -7.343576665, -7.562820521, -7.466421331, -11.795012499, -6.871680339, -7.696004519, -7.752343512, -8.133207289, -8.616313695, -6.841565044, -7.339516631, -7.422138398, -6.390024964, -6.667490586, -7.212175784, -6.533342194, -6.895524708, -8.441283271, -7.67277591, -8.60699878, -6.601705933, -7.246388631, -7.035621783, -6.750620582, -6.994346344, -6.465647443, -7.229887747, -10.857343169, -6.944558503, -7.290146007, -8.429651831, -7.166159912, -7.172222383, -6.632255679, -7.036433894, -8.753281838, -7.054292017, -6.931593989, -10.238235161, -7.683459748, -7.466075274, -7.043800602, -6.324591687, -6.495381863, -6.827682244, -6.889165597, -6.939845801, -7.1955551, -6.840121783, -6.893152028, -6.584685205, -9.644561238, -8.090185823, -6.098517143, -7.156747823, -6.556540945, -6.812070394, -9.508675519, -7.223647681, -6.721339326, -7.257736562, -6.436306685, -10.667651049, -7.42079627, -6.810165374, -6.524296655, -6.477656375, -6.044796636, -6.076498411, -6.948872773, -6.76026943, -9.690293975, -9.200377374, -6.428121543, -8.318957481, -7.514710773, -8.170154862, -7.777383428, -6.573350575, -7.981552192, -6.536522188, -6.932035658, -6.865352087, -6.770009166, -7.366404734, -8.017922526, -9.720973411, -10.408132951, -10.250901843, -10.613415128, -7.870176576, -9.179002562, -7.033354062, -7.285215133, -7.082957891, -8.739026175, -7.728985144, -6.581419437, -9.587523881, -10.698555175, -8.986277153, -9.00232323, -8.053919264, -10.264629662, -9.772066332, -8.95967531, -15.454890094, -9.89462241, -9.322619976, -8.872058891, -10.047945867, -7.645264329, -8.647523531, -9.776352306, -6.754949174, -7.652391083, -7.320570767, -6.637048828, -6.830570894, -7.738122702, -6.697044022, -6.915548174, -6.807352515, -6.78433757, -7.199648107, -11.185076232, -7.37894229, -6.745640432, -7.056623313, -7.313992646, -7.333972167, -6.640795338, -7.668560253, -8.183247872, -5.564322798, -5.958408951, -7.07475327, -6.344079435, -6.37134153, -6.719755465, -6.086467442, -6.781567772, -8.755535251, -9.034491269, -6.741762509, -7.643481636, -6.954288814, -5.882445741, -7.876325344, -7.843370572, -6.70029598, -6.373542619, -6.980988383, -8.500793797, -8.362389294, -10.942282011, -7.69532137, -8.967073632, -9.349023232, -8.327734025, -7.502233239, -7.801048185, -7.759137919, -5.933024505, -7.104473847, -7.342405939, -7.781448602, -7.148205933, -7.281700737, -6.290463973, -5.78357361, -6.727217925, -8.143200577, -7.812736698, -6.4609042, -6.647795455, -7.521261306, -6.600894971, -8.184542854, -7.628720048, -6.70592628, -7.142145494, -7.799637853, -7.979164056, -7.138205405, -7.465977215, -6.596319146, -7.33087658, -9.319249736, -7.908517143, -6.219776361, -6.900958728, -7.029330861, -6.172744157, -6.886637131, -5.650792738, -7.084740192, -7.071822248, -6.418481015, -6.70027025, -6.063437362, -7.853871729, -7.235367422, -7.561692034, -6.852456394, -6.791274972, -7.152232759, -7.335445575, -5.895685663, -5.8754902, -6.896565454, -6.440712587, -6.7261223]}, {"log_prior": -0.688864519, "feature_log_probs": [-6.912874022, -6.251206445, -6.236348009, -7.051524977, -6.877244371, -6.728448733, -7.154820425, -7.088262722, -6.633833536, -7.306875894, -7.316537468, -7.279613439, -7.618342789, -6.680313853, -7.314269973, -8.336720345, -8.268602379, -7.901228113, -7.6627228, -7.583893273, -6.984966749, -7.23788455, -6.848104289, -6.473893029, -7.477688616, -7.449269199, -7.769146839, -7.588748465, -7.045163864, -7.790061864, -7.751136841, -7.960733047, -7.962048587, -6.548955992, -7.776812128, -7.465885566, -8.329146662, -7.144494715, -7.629542346, -6.763267283, -6.980410042, -8.151543116, -7.405778234, -7.716553087, -7.910052027, -8.147570118, -8.364645357, -6.788771384, -6.925297024, -6.401176152, -6.927315109, -6.994750291, -7.883534935, -8.133486442, -8.129221023, -6.436628434, -7.752089833, -6.896023329, -6.919294009, -7.501335236, -8.135363795, -7.54249157, -7.505644928, -8.192170873, -6.916324541, -7.449717409, -6.319981991, -6.941241654, -7.218956636, -6.68888858, -6.760101055, -7.96182185, -7.424243916, -7.231843769, -7.402445135, -7.536775196, -7.321098477, -6.586268425, -6.380066321, -6.535391339, -6.390458219, -5.848660512, -7.339319147, -8.050386476, -7.358740254, -8.058000508, -6.89429317, -6.719757971, -7.309496458, -7.195066773, -9.325217479, -7.14362783, -7.566171268, -9.358203901, -8.791803075, -7.632934234, -8.119689349, -6.133709021, -8.05872371, -8.760755749, -8.338618039, -8.37227247, -6.86476007, -7.450968389, -7.369174635, -6.65538802, -7.263149012, -7.277018582, -7.211871721, -7.132807662, -7.538254096, -7.832527287, -6.71098413, -7.129609719, -7.770954045, -8.136161431, -6.721621075, -7.506969935, -7.137158986, -7.952991586, -6.485021036, -6.958604891, -7.089295229, -6.448309639, -7.972434362, -6.176324491, -7.517108799, -7.723901072, -6.865090427, -6.856789317, -7.49227405, -5.332213638, -6.182234979, -6.770228691, -7.594674121, -7.423650761, -7.757227046, -7.058978039, -6.922187877, -7.915162459, -6.240228887, -6.658747027, -6.564999583, -7.506762028, -7.263663363, -8.108179296, -7.555447489, -8.601527983, -8.055284391, -7.829899321, -7.645662481, -5.446205911, -6.51541262, -8.656021198, -6.67748847, -7.288075753, -6.962131611, -7.785984916, -7.147735264, -6.740671014, -7.058501096, -7.164124141, -9.271969349, -7.275147993, -7.440982028, -6.981120592, -7.964514976, -5.716856356, -7.086429818, -5.846943157, -7.850023604, -7.344037243, -8.34355165, -8.493984244, -9.908188504, -7.188820137, -7.509548772, -7.408974761, -7.156596364, -7.001085113, -7.899968458, -5.900232494, -8.039752784, -7.910252958, -7.388532935, -5.933292593, -7.02506834, -6.3462111, -6.472547775, -7.620020835, -7.52018416, -7.274142164, -7.221436004, -7.756675872, -8.074797675, -7.040380424, -7.500421898, -10.328290499, -6.818874507, -6.054226806, -6.733510343, -7.425649556, -8.278745228, -5.769337011, -6.732698121, -6.985861602, -8.005053918, -7.062085819, -7.360004948, -7.989501841, -8.870184141, -7.199076989, -7.308561104, -7.662161276, -7.484093171, -7.877857929, -7.496763464, -7.347600273, -7.970132958, -7.398265835, -6.153642175, -6.860487581, -6.741026544, -6.09472185, -7.087763691, -8.710730018, -7.701704919, -7.087541653, -7.380332745, -7.098784679, -6.802041339, -7.537276398, -9.933636906, -5.959295266, -5.301916859, -7.126916447, -7.883955281, -7.623131021, -7.150500064, -9.118328008, -7.586121872, -7.291548199, -6.879210082, -7.670712716, -6.65188225, -8.269409158, -7.371490094, -7.609233697, -7.801838223, -6.77566995, -6.751511501, -7.620785202, -7.177040462, -7.554023378, -8.401805646, -7.677090602, -7.451618675, -6.410464774, -6.013522513, -7.656681806, -7.124072877, -7.731434751, -7.928464713, -8.667007857, -8.721274952, -8.494290091, -7.656552312, -7.965948192, -6.948303703, -8.193411097, -7.832373013, -7.852217392, -7.778377072, -8.40379753, -7.460922714, -6.040572115, -6.453426173, -6.570972963, -5.961177101, -7.136971459, -7.00806427, -7.449495072, -7.554782212, -7.43220441, -8.0390726, -8.154308399, -6.885597605, -7.903938307, -6.533174537, -6.965738887, -7.292395879, -6.783388769, -8.009343508, -7.740892257, -7.788733971, -7.287577526, -7.735399187, -7.08495042, -7.215490649, -8.785819826, -7.543846448, -5.256917202, -5.827308504, -6.970009159, -6.428425403, -7.418187645, -7.857459915, -7.72622231, -7.997110937, -7.291566646, -7.696027301, -7.514308432, -8.468497558, -7.380504747, -7.334284772, -7.266974102, -7.833438986, -5.976786265, -5.817507297, -7.228139295, -8.722855511, -8.655820142, -15.584708434, -7.069362463, -7.26375966, -8.102080202, -6.57401563, -7.906734203, -7.679878655, -7.126240814, -7.514698775, -7.575215495, -7.521749896, -7.217993259, -6.859806483, -8.811705554, -7.145774141, -7.567831553, -5.829801812, -8.185698086, -7.504099209, -7.439791912, -6.870163221, -6.77498564, -6.41021612, -6.982936845, -7.596084981, -7.98320157, -7.886374978, -6.944177897, -7.622375368, -7.12799721, -6.89221328, -7.22412717, -6.409326546, -6.87854518, -7.67084564, -8.399717904, -9.963939329, -7.350092287, -7.141638311, -8.360524669, -8.595009349, -7.253937667, -7.474031869, -6.651815512, -8.375398346, -7.188622335, -6.632995403, -7.776120987, -7.690431039, -7.563033738, -8.301774537, -6.781929124, -8.134164552, -9.536709459, -5.967055401, -6.969283441, -7.563899228, -8.351718809, -7.457650945, -9.126728259, -7.757988309, -7.020236474, -7.973181089, -7.369472618, -7.289908727, -8.004838905, -6.563463392, -6.017614236, -6.432215536, -7.086628318, -6.489398681, -7.097569182, -6.738173325, -7.909516183, -7.901984759, -7.944262951, -7.196763739, -7.428395065, -7.732114319, -6.675735674, -7.050488258, -6.798539548, -7.677990295, -6.811881273, -7.445709097, -6.970596378, -7.435010667, -7.098930456, -6.817885232, -7.674746429, -6.942940874, -7.829048371, -8.192066629, -7.69653063, -7.246614116, -7.605725295, -7.791989617, -8.498372128, -7.896522017, -7.816760462, -8.266792897, -7.660607125, -7.931769851, -7.198951106, -5.776159546, -5.776441153, -6.735921572, -7.167143306, -7.778701367, -7.099863923, -7.616784024, -5.980209173, -7.574623815, -7.247422699, -8.218039248, -8.098390228, -7.169354907, -8.075121456, -7.074701663, -6.969733911, -5.980837288, -7.674270565, -7.612763976, -7.729258098, -6.97912729, -6.819770423, -7.936776283, -6.954332493, -9.288162691, -8.830946963, -9.402225422, -7.562700469, -7.569816265, -8.76595996, -7.075959296, -9.287877978, -7.689142973, -7.814362951, -7.569180561, -6.602984775, -7.448772141, -7.388595445, -7.979867307, -7.386395316, -8.344695353, -7.479390844, -6.298674063, -6.171822515, -6.738824969, -6.882691582, -8.208090926, -7.451493875, -6.126444178, -7.559202433, -7.796510581, -6.483411854, -7.924092012, -7.739296262, -7.822798018, -15.584708434, -6.369621664, -6.918730478, -7.10218039, -7.123910487, -7.172623548, -8.264790253, -8.014131888, -7.531091407, -6.978594513, -7.679360505, -6.836002833, -6.729592029, -8.423641535, -7.692820401, -7.642928896, -6.456310926, -7.800782427, -7.42778552, -6.756603598, -7.642881858, -7.797290174, -7.091635195, -6.890438923, -7.12613348, -7.507897389, -7.725447936, -6.668740462, -6.279367432, -7.315135247, -8.091756322, -7.972141339, -6.914673066, -7.085350321, -9.409957609, -7.105813358, -5.330699554, -5.743581148, -6.775722499, -6.422318582, -7.164842249, -7.544518968, -9.069221689, -7.43701786, -8.673545451, -7.651446128, -6.70916519, -6.965339991, -7.620734302, -7.777489651, -7.428807892, -8.47267368, -7.936802103, -7.031216177, -8.555383162, -6.852998105, -7.297576783, -7.118506247, -6.651692202, -8.18452728, -7.728716927, -7.290289725, -7.407323444, -9.40583168, -6.617389506, -8.457053279, -7.220395614, -6.647297071, -7.722602603, -7.311167534, -7.380373304, -8.079381289, -6.839606031, -6.932710177, -7.7507775, -7.416424555, -6.565444157, -7.596732817, -8.621515764, -7.416705457, -6.157966093, -6.562943983, -6.921422829, -8.122905903, -8.544772462, -6.607504279, -6.740945725, -6.782546603, -6.050732285, -9.19431161, -7.375717752, -6.53141212, -7.817656975, -7.750314118, -7.718336904, -6.593352847, -7.587231041, -7.953230904, -7.2693385, -7.601856078, -7.169752171, -7.431213078, -6.250136932, -8.440758957, -6.903293183, -6.940829455, -7.139278353, -8.467897153, -6.866818424, -7.224090896, -7.597991262, -7.739258424, -7.251148836, -7.225344639, -7.653232235, -7.325017124, -7.368529341, -7.424968922, -7.906582178, -9.317794717, -8.100066193, -7.185649631, -8.197525237, -6.779221407, -8.177415277, -7.460445838, -7.07761898, -7.420905037, -7.711657503, -8.882473812, -6.682273846, -7.266561546, -7.276309259, -7.249204384, -7.437671081, -6.930156014, -7.375824528, -7.873731111, -7.411507537, -15.584708434, -6.213074062, -6.397480681, -7.18763638, -8.366630632, -7.295368812, -5.658257256, -5.997788954, -6.647615115, -7.080038664, -7.037907213, -7.188286485, -6.722463978, -6.2771815, -7.225735975, -6.730403632, -6.458127718, -7.527473675, -7.380190235, -6.42153385, -7.32829686, -6.585497038, -7.119977576, -7.532270289, -5.464923493, -7.390487207, -6.452542337, -5.400445134, -9.037818789, -6.858989957, -6.956960869, -5.89821103, -6.905527405, -6.955038479, -8.147355605, -8.772562661, -7.29952069, -7.329883694, -6.754209254, -7.727764967, -7.45759901, -8.098428411, -8.157339389, -7.564446048, -7.514245932, -7.101218104, -6.996999759, -7.600563811, -8.171810588, -6.949073806, -7.509373651, -7.129789853, -7.667081912, -7.422696331, -8.61949304, -8.042725157, -6.898672397, -7.817033162, -7.516058017, -6.734850809, -6.768696468, -7.039653806, -6.953882126, -7.196425616, -7.429036746, -7.354446135, -7.781738091, -8.814931375, -7.543959809, -8.018994975, -6.052222494, -6.867526494, -6.828483587, -7.09117042, -6.887688312, -7.083929692, -7.538481673, -7.589652331, -7.227282497, -6.930504406, -7.928734794, -6.578153198, -7.354715017, -7.176462483, -6.994776733, -7.164851404, -7.559818093, -6.109238126, -7.610109616, -7.450990225, -6.969894007, -7.929400532, -7.590773402, -5.686607871, -7.663495645, -7.933139914, -7.102251675, -6.031016962, -6.643855273, -7.893299897, -6.854596141, -7.185664858, -6.962299009, -7.439689381, -7.672509255, -6.825254456, -7.936039042, -7.246800978, -6.36864611, -7.130644245, -6.451640958, -7.651211651, -9.676161223, -6.677330792, -7.544433765, -6.675046742, -7.126941361, -7.28403335, -6.862533022, -6.434883894, -7.469788965, -8.223879414, -7.820001585, -7.12960267, -7.766188406, -6.296181414, -7.303465477, -6.123883593, -7.322485877, -8.596430665, -7.52551784, -9.078277158, -8.401614329, -6.966332021, -6.546563234, -7.993411731, -7.702313465, -7.610328838, -7.765512821, -7.743536773, -6.861307109, -6.79230533, -7.320211483, -7.588490918, -6.598791368, -7.379995757, -7.229948457, -6.670441878, -6.559751813, -8.968511985, -8.306082974, -6.671918034, -7.210331306, -7.050638012, -7.192144858, -7.254817036, -8.588456518, -7.020617268, -8.258454315, -7.65207331, -6.126850235, -5.965073112, -6.339763878, -6.862928662, -6.149582948, -7.260044823, -8.057667683, -7.369657226, -7.802190562, -10.94202362, -8.992984361, -6.795150102, -6.978310906, -7.222868415, -7.033505553, -6.973258988, -6.482431002, -7.990374845, -9.30687548, -7.595268815, -6.525657514, -7.375533631, -9.00113335, -6.89994707, -6.966976244, -8.121447819, -7.865292423, -7.904623706, -9.355558054, -8.923881949, -7.982459652, -7.84278679, -8.224043465, -7.025707205, -6.13967141, -6.473065458, -6.712285462, -8.223239615, -7.200757339, -7.864262298, -8.542723244, -7.707643353, -7.988766043, -9.970545282, -7.641781241, -8.055702322, -7.362317646, -8.654471675, -7.878180989, -7.763392904, -7.347585496, -8.15119854, -7.57552164, -6.614520532, -8.368420601, -7.512655971, -7.501199838, -7.817817628, -7.725835779, -7.249680203, -7.673262174, -7.187144954, -8.78231914, -7.123312607, -7.349586021, -6.862863592, -7.261366221, -6.59112856, -8.597717238, -8.081965587, -7.633053131, -7.282318825, -6.358016561, -11.350071588, -7.580689198, -7.821272775, -7.738296253, -7.382974807, -7.180495087, -6.893775363, -7.694713453, -7.616961397, -7.831331305, -6.837833516, -7.743715552, -7.383634621, -7.560477848, -7.471365136, -7.479168295, -6.981828665, -7.880235922, -8.011810943, -7.771701667, -6.968777744, -7.883050973, -6.630381011, -7.946513298, -7.423772148, -6.799397225, -6.760084396, -8.013951805, -8.281526909, -8.408567422, -7.054514303, -7.684055989, -7.918305796, -7.080602823, -7.778479661, -5.858683624, -6.943467754, -6.748200963, -6.866861692, -8.070973428, -6.542485144, -8.02885043, -7.028695499, -6.258191123, -7.746670202, -7.677503368, -8.819929597, -7.246619703, -7.242644353, -6.752093344, -6.470516474, -6.877622374, -6.987563171, -6.729205126, -8.186080315, -7.86179132, -7.12757746, -7.787831481, -6.906661358, -7.42461421, -7.602615842, -7.726760151, -6.484475432, -6.267223052, -7.632409745, -7.857362748, -6.895849711, -7.950480922, -7.550557138, -7.735060907, -8.718806101, -12.55650153, -7.80117226, -8.796044139, -7.041783533, -6.871606263, -6.794560667, -7.26245997, -7.285939958, -7.931845637, -7.19611233, -7.54785829, -7.409874393, -7.454578197, -7.883425184, -7.852332775, -7.91091701, -7.700613516, -8.044198235, -7.46739868, -7.974652573, -15.584708434, -6.277346611, -6.62746096, -6.864339719, -8.05187697, -7.426344955, -6.697141263, -7.138539472, -6.591167144, -7.290133877, -7.176456464, -6.846536887, -7.925760819, -7.067235597, -7.282636327, -8.020218217, -7.408253887, -7.333156209, -7.358218107, -7.236008476, -6.350612085, -6.563220771, -6.894268383, -8.970066996, -7.360540096, -7.437254804, -6.435390639, -7.618584015, -7.843276406, -7.590361196, -7.217810446, -9.089326152, -8.372760687, -6.051240331, -7.377933208, -8.049163294, -7.604043545, -6.297498698, -6.851864371, -7.099970543, -7.301228321, -7.366483197, -8.152759349, -6.425624597, -7.198204069, -7.026967134, -7.13445139, -8.134697846, -7.03498251, -7.318165919, -7.474753285, -6.986331362, -7.949206016, -7.30200461, -8.513847645, -6.586196467, -7.337889402, -6.946733939, -7.736445523, -7.727723109, -6.881896067, -5.879476197, -7.15679138, -7.254502128, -6.822404385, -7.879164403, -7.639603527, -7.94027313, -7.66628828, -7.82318929, -7.217043576, -8.395012601, -7.018995306, -7.264202153, -7.890588166, -9.153281115, -7.583014167, -7.285343902, -7.090323507, -7.124705684, -8.57742514, -6.032870212, -6.6585803, -7.26131608, -7.379056101, -7.900637445, -6.43110204, -8.731792542, -8.136528529, -7.412979017, -6.975559597, -6.770379007, -7.723332668, -8.22759417, -6.617772595, -7.669574412, -7.676839859, -7.793868544, -7.511648956, -7.191526829, -7.319710627, -7.414263192, -7.612109926, -7.893703931, -8.381508937, -6.866232028, -7.338027515, -8.52851851, -9.684546041, -6.939772784, -6.278167252, -6.578818819, -8.171641109, -8.01974083, -6.772794918, -6.608419917, -6.73724982, -7.447300018, -6.261575858, -9.630391123, -10.911243768, -7.25320356, -6.741044005, -7.338530306, -7.289340509, -8.206224892, -8.229468586, -7.058269713, -5.542701157, -6.516270375, -6.608657969, -6.712386054, -5.784808891, -6.139169512, -6.922059789, -7.419811693, -7.168210059, -7.251234795, -7.36948301, -6.063522949, -9.245986021, -7.242029656, -6.684525957, -6.898833801, -6.221229136, -4.257126549, -6.514273003, -5.705265227, -5.84342038, -6.33684326, -6.744280337, -7.151281653, -6.658571921, -7.142978367, -7.809289791, -4.968623465, -5.794426899, -7.411778758, -7.446179108, -8.000184231, -6.556028266, -7.187228601, -9.647659595, -7.578834588, -7.709219053, -7.146725844, -7.901602392, -7.417548408, -5.302403062, -7.369797659, -8.137145871, -8.797918507, -7.089843927, -7.460985497, -8.289284145, -7.808991974, -7.489755168, -6.090351057, -7.058657367, -7.646420419, -7.68313569, -7.154404678, -8.174643743, -6.78979772, -6.954070032, -5.91508232, -7.084418268, -7.190387461, -7.567906512, -7.493108811, -5.921506673, -7.395654511, -7.337007911, -8.029937971, -8.186872805, -7.114015539, -7.031581677, -7.273739962, -7.103037192, -5.71523504, -7.430203341, -6.83047023, -6.860038828, -7.50603195, -6.718385492, -6.617557817, -5.744968451, -7.396768452, -7.647829067, -7.538367325, -8.116631743, -7.79286937, -6.649301787, -5.837620272, -6.94215396, -7.512134224, -6.879367166, -8.28428105, -6.833718719, -7.468127757, -6.617050145, -6.988308856, -7.0681238, -7.13865516, -7.554031977, -7.525262102, -7.746168689, -8.182562329, -6.846973481, -7.512602703, -7.845687743, -6.6379537, -6.638072692, -7.420378063, -6.799331024, -8.248725103, -13.27239022, -8.1119391, -6.675078533, -8.087076875, -9.387557106, -7.47759818, -7.470409669, -5.637010122, -7.632721744, -6.854137094, -7.749507642, -8.331471995, -8.332267057, -8.127249914, -7.691733055, -6.033650343, -6.499062288, -7.647646726, -6.718791586, -7.638908889]}], "model_type": "nb", "positive_class_label": "travel", "positive_class_id": 1, "positive_class_threshold_log_prob": -0.430782916, "vocab_idfs": {"walking": [1149, 2.915636806], "tours": [1076, 2.986017603], "good": [469, 1.724365687], "way": [1157, 1.497100846], "meet": [671, 2.905974895], "new": [713, 1.473870998], "explore": [392, 2.818562957], "tokyo": [1066, 4.183069964], "bus": [185, 2.986017603], "tend": [1045, 3.050556124], "smaller": [971, 3.078727001], "means": [669, 2.2322458], "guide": [482, 2.549780836], "better": [152, 1.903153671], "focus": [430, 2.845350273], "likely": [614, 2.450499366], "japanese": [573, 4.053858233], "life": [611, 2.165870731], "tour": [1072, 2.623112109], "particular": [755, 3.02315715], "order": [740, 2.546419488], "groups": [478, 3.407231068], "free": [442, 2.015001971], "note": [723, 2.788191859], "ll": [626, 1.778924671], "pay": [764, 2.408702238], "eating": [356, 3.47282835], "considered": [269, 3.294753084], "meal": [665, 3.589552625], "pro": [817, 3.824672367], "tip": [1061, 3.464389482], "going": [468, 1.912011125], "fall": [400, 3.206560372], "2019": [23, 3.050556124], "consider": [268, 2.601605904], "12": [5, 2.402871317], "special": [984, 2.891654841], "local": [627, 2.311267787], "tourism": [1073, 3.57068414], "aren": [107, 2.754575249], "prices": [815, 2.722052057], "photo": [774, 3.301870552], "used": [1122, 1.976312426], "group": [477, 2.475191979], "offer": [728, 2.247060886], "different": [326, 1.877042527], "completely": [262, 2.935245277], "east": [353, 3.253080388], "learn": [602, 2.645091016], "days": [302, 2.114462765], "quite": [841, 2.513413192], "short": [955, 2.438378006], "perfect": [768, 2.549780836], "lot": [639, 1.999346074], "fit": [425, 2.8869267], "want": [1150, 1.611511197], "area": [105, 2.594538737], "change": [217, 2.402871317], "check": [223, 2.125415777], "ensure": [369, 3.280668344], "point": [795, 2.220065382], "30": [33, 2.308618779], "minutes": [683, 2.901178723], "club": [243, 3.618540161], "hold": [507, 3.09022138], "hour": [519, 2.730084229], "90": [45, 3.43949193], "minute": [682, 3.061729424], "popular": [800, 2.340879641], "areas": [106, 2.8869267], "10": [2, 1.823518047], "culture": [291, 2.818562957], "information": [548, 2.30597677], "center": [211, 3.012404358], "takes": [1034, 2.598066077], "place": [780, 1.955654415], "outside": [743, 2.663783149], "green": [475, 3.353163846], "station": [1004, 3.561381748], "park": [754, 3.050556124], "final": [420, 3.246300701], "starting": [1001, 2.758716041], "museum": [699, 3.543032609], "join": [575, 3.368315651], "need": [707, 1.638215054], "points": [796, 2.845350273], "guides": [483, 3.415199237], "allows": [84, 2.771242301], "contact": [270, 3.423231409], "book": [167, 2.247060886], "work": [1182, 1.865086791], "traveling": [1092, 2.584030759], "solo": [977, 3.789165678], "small": [970, 2.013031527], "sure": [1030, 2.028904876], "course": [280, 2.338151127], "including": [539, 2.045034258], "transport": [1087, 3.38370057], "food": [433, 2.371395185], "attractions": [116, 3.368315651], "visit": [1143, 2.432371982], "website": [1162, 2.792474521], "facebook": [398, 3.193656967], "page": [748, 2.986017603], "tourists": [1075, 3.280668344], "started": [1000, 2.641394154], "traveler": [1090, 3.137567501], "love": [641, 2.374216062], "site": [964, 2.556537618], "regular": [864, 3.061729424], "day": [301, 1.714094136], "currently": [293, 3.07302898], "available": [120, 2.184389779], "taking": [1035, 2.335430036], "times": [1060, 2.172775247], "visiting": [1145, 3.039506288], "street": [1016, 2.975654816], "great": [474, 1.838284517], "sights": [957, 3.580073881], "interesting": [556, 3.061729424], "option": [738, 2.53640271], "probably": [818, 2.503720062], "night": [717, 2.408702238], "exploring": [393, 3.187267169], "road": [896, 2.656264316], "ideal": [529, 3.345673175], "town": [1077, 2.754575249], "tourist": [1074, 3.09022138], "required": [872, 3.119548995], "tips": [1062, 2.630384868], "expected": [387, 3.360711052], "government": [472, 3.259906353], "13": [6, 2.814167346], "streets": [1017, 3.338238196], "includes": [538, 2.754575249], "department": [312, 3.721724398], "store": [1010, 3.045015943], "maybe": [664, 3.061729424], "try": [1104, 2.215234454], "known": [585, 2.371395185], "interested": [555, 3.259906353], "costs": [276, 2.762874051], "travel": [1089, 1.84491804], "depending": [313, 2.996488903], "options": [739, 2.465860651], "tea": [1039, 3.824672367], "architecture": [104, 3.552165092], "based": [138, 2.161294064], "don": [338, 1.576556182], "walk": [1148, 2.87753696], "far": [403, 2.22491976], "40": [37, 2.746344749], "view": [1139, 2.750451531], "main": [649, 2.573632052], "office": [731, 3.330858089], "red": [861, 3.273699675], "cross": [287, 3.447722429], "language": [591, 3.360711052], "service": [945, 2.420467079], "offers": [730, 2.566759172], "nearby": [705, 3.391482711], "trip": [1099, 2.016976305], "locations": [631, 3.431328619], "travelers": [1091, 2.549780836], "english": [367, 3.273699675], "details": [319, 3.078727001], "company": [258, 2.242098097], "services": [946, 2.801095264], "real": [851, 2.405782527], "estate": [375, 4.149168412], "job": [574, 2.986017603], "practice": [809, 3.543032609], "capital": [198, 3.07302898], "west": [1169, 3.330858089], "japan": [572, 3.700218192], "western": [1170, 3.57068414], "rest": [877, 2.801095264], "according": [51, 2.529780169], "itinerary": [569, 3.039506288], "little": [622, 1.950093696], "help": [497, 1.877042527], "professional": [825, 3.48133904], "best": [151, 1.608879617], "make": [651, 1.468146884], "post": [804, 2.513413192], "published": [834, 3.246300701], "2014": [18, 3.38370057], "september": [942, 3.638342789], "2018": [22, 3.028577217], "follow": [431, 2.682831344], "author": [119, 3.368315651], "article": [110, 2.783927461], "world": [1187, 1.731767645], "largest": [596, 3.125519162], "country": [278, 2.362979988], "start": [999, 2.073902242], "expert": [391, 3.561381748], "provides": [832, 3.125519162], "step": [1007, 2.859017912], "know": [583, 1.805761325], "hotels": [518, 2.615891861], "hotel": [517, 2.441394599], "brand": [175, 3.149762774], "read": [847, 2.332716331], "review": [885, 3.294753084], "tax": [1037, 4.11637859], "state": [1002, 2.965398315], "warm": [1153, 3.689636083], "sense": [940, 2.801095264], "style": [1023, 2.854441245], "position": [802, 3.648393125], "heart": [495, 3.193656967], "packing": [747, 3.345673175], "question": [837, 2.965398315], "choice": [229, 2.762874051], "luggage": [644, 3.200087858], "bags": [132, 3.294753084], "carry": [203, 3.039506288], "size": [966, 2.818562957], "backpack": [125, 3.777604856], "frame": [439, 3.899707553], "bag": [131, 3.180917942], "wheels": [1172, 3.812696176], "hard": [490, 2.487770761], "rolling": [900, 3.668801996], "decide": [306, 3.330858089], "extra": [394, 2.580552495], "fees": [412, 3.431328619], "come": [249, 2.045034258], "weight": [1167, 3.187267169], "comfort": [251, 3.498580846], "airport": [81, 2.634041179], "having": [492, 2.170468441], "hands": [487, 3.294753084], "easily": [352, 2.526485273], "20": [13, 2.217647001], "25": [28, 2.645091016], "space": [982, 2.645091016], "look": [635, 1.972524543], "nice": [716, 2.935245277], "especially": [373, 2.287675605], "home": [509, 2.112286485], "quality": [836, 2.742254764], "cost": [275, 2.29026964], "worth": [1189, 2.510171698], "think": [1055, 2.022922805], "matter": [663, 2.750451531], "important": [534, 2.279933631], "needs": [709, 2.660016666], "ones": [734, 2.775452834], "live": [623, 2.634041179], "generally": [459, 3.00176596], "yes": [1197, 3.02315715], "pack": [745, 3.017766301], "light": [612, 2.783927461], "big": [154, 2.099327341], "strong": [1018, 3.061729424], "train": [1083, 2.872874947], "uses": [1126, 3.084457675], "hand": [485, 2.648801595], "gives": [463, 2.859017912], "room": [903, 2.497309784], "handle": [486, 3.232877681], "plus": [792, 2.706178708], "14": [7, 2.718060036], "21": [24, 3.061729424], "airline": [79, 3.31625929], "current": [292, 2.940208067], "personal": [772, 2.678992567], "backpacks": [129, 4.372311964], "kind": [582, 2.641394154], "makes": [652, 2.177404885], "comfortable": [252, 2.945195608], "long": [633, 1.760405623], "fine": [424, 3.353163846], "getting": [461, 2.084417586], "provided": [831, 3.38370057], "ve": [1134, 1.765003332], "really": [852, 2.040977457], "route": [906, 3.101849418], "eat": [355, 3.045015943], "buy": [188, 2.510171698], "ticket": [1058, 3.294753084], "board": [164, 3.246300701], "months": [692, 2.549780836], "year": [1195, 1.782044798], "separate": [941, 3.345673175], "exactly": [382, 2.955245944], "europe": [376, 2.746344749], "gear": [456, 3.552165092], "wear": [1159, 3.618540161], "expensive": [388, 2.656264316], "built": [184, 2.801095264], "plenty": [791, 2.831866923], "wouldn": [1190, 3.309039042], "won": [1178, 2.311267787], "cause": [210, 3.456021232], "stuff": [1021, 3.09022138], "advantage": [65, 3.101849418], "wheel": [1171, 3.995017733], "set": [947, 2.095044679], "usually": [1128, 2.450499366], "similar": [960, 2.594538737], "cut": [296, 3.096018498], "remember": [867, 2.901178723], "unless": [1119, 3.200087858], "transit": [1086, 3.966846856], "prefer": [811, 3.309039042], "lightweight": [613, 4.024005269], "possible": [803, 2.259576694], "let": [607, 2.239625908], "thinking": [1056, 3.200087858], "series": [943, 3.213075053], "cars": [204, 3.200087858], "village": [1141, 3.700218192], "towns": [1078, 3.608783986], "cities": [233, 2.559933207], "designed": [315, 2.945195608], "plane": [783, 3.415199237], "independent": [543, 3.323532049], "cool": [274, 3.137567501], "models": [687, 3.836793727], "major": [650, 2.546419488], "bring": [179, 2.738181439], "case": [205, 2.354635016], "example": [383, 2.319257177], "pockets": [794, 3.953053534], "straps": [1014, 4.632595062], "significant": [959, 3.345673175], "add": [58, 2.435370485], "tell": [1043, 2.70224943], "end": [365, 2.088654881], "using": [1127, 2.013031527], "easy": [354, 2.110114932], "spend": [987, 2.382726751], "paying": [765, 3.301870552], "trips": [1100, 2.435370485], "product": [822, 3.078727001], "sign": [958, 2.996488903], "low": [642, 2.605158305], "airlines": [80, 3.125519162], "budget": [181, 2.598066077], "22": [25, 3.101849418], "general": [458, 2.70224943], "standard": [996, 3.028577217], "flights": [427, 2.660016666], "cheap": [220, 2.788191859], "booking": [169, 2.831866923], "flight": [426, 2.566759172], "spot": [992, 3.039506288], "play": [788, 3.09022138], "rules": [908, 3.287685917], "ask": [113, 2.796775603], "higher": [501, 2.818562957], "checked": [224, 3.743703304], "asked": [114, 3.061729424], "double": [340, 3.287685917], "leave": [604, 2.573632052], "use": [1121, 1.638215054], "return": [883, 2.925392981], "purchase": [835, 3.187267169], "clothes": [242, 3.580073881], "allow": [82, 2.742254764], "access": [48, 2.648801595], "things": [1054, 1.939064172], "uk": [1113, 3.628392458], "march": [657, 3.360711052], "28": [31, 3.368315651], "2016": [20, 3.09022138], "adventures": [67, 3.580073881], "pretty": [813, 2.580552495], "city": [234, 2.071812377], "lots": [640, 2.991239547], "piece": [779, 3.09022138], "coffee": [246, 3.516125156], "roads": [897, 3.721724398], "away": [123, 2.182056056], "actually": [57, 2.30597677], "amazing": [86, 3.078727001], "views": [1140, 3.226233138], "stay": [1005, 2.249551547], "doesn": [334, 2.175087386], "places": [781, 2.38557982], "hostels": [514, 3.874065122], "hostel": [513, 3.789165678], "map": [656, 3.47282835], "total": [1071, 2.960309246], "type": [1109, 2.675168471], "white": [1173, 3.101849418], "house": [521, 2.77968117], "net": [711, 3.824672367], "links": [619, 3.017766301], "region": [863, 3.294753084], "run": [909, 2.468961429], "activities": [55, 2.814167346], "river": [895, 3.525014103], "36": [36, 3.84906382], "26": [29, 3.423231409], "safari": [911, 4.13263911], "haven": [491, 3.280668344], "party": [759, 3.323532049], "bars": [136, 3.638342789], "excellent": [384, 3.338238196], "shopping": [954, 3.273699675], "market": [658, 2.556537618], "mr": [696, 4.069125705], "include": [536, 2.423430044], "near": [704, 2.836341203], "hot": [516, 2.970513416], "needed": [708, 2.935245277], "nights": [718, 3.447722429], "national": [701, 2.767049423], "adventure": [66, 2.991239547], "travellers": [1093, 3.754876605], "basic": [139, 3.084457675], "super": [1028, 3.084457675], "dollars": [337, 3.360711052], "self": [936, 2.920502996], "driving": [345, 3.239566669], "saw": [918, 3.31625929], "person": [771, 2.453552804], "trying": [1105, 2.546419488], "experience": [389, 2.065568861], "awesome": [124, 3.732653468], "rock": [898, 3.628392458], "number": [725, 2.172775247], "right": [893, 1.873611992], "beer": [144, 3.700218192], "camp": [195, 3.777604856], "reviews": [886, 3.330858089], "beautiful": [142, 2.809790971], "mid": [677, 3.47282835], "range": [843, 2.678992567], "pool": [799, 3.679164783], "23": [26, 3.368315651], "true": [1101, 2.675168471], "stunning": [1022, 3.552165092], "seen": [935, 2.660016666], "black": [160, 3.16210861], "early": [349, 2.481461592], "catch": [208, 3.368315651], "animals": [94, 4.00940647], "active": [54, 3.543032609], "morning": [693, 3.266779232], "sleep": [968, 3.498580846], "35": [35, 3.168339159], "luxury": [646, 3.206560372], "game": [454, 3.246300701], "drive": [342, 2.792474521], "head": [493, 2.506940677], "lunch": [645, 3.608783986], "half": [484, 2.608723371], "looking": [636, 2.088654881], "bit": [159, 2.432371982], "track": [1079, 3.028577217], "africa": [70, 3.668801996], "definitely": [309, 3.155916639], "recommend": [859, 2.868234567], "history": [505, 2.718060036], "port": [801, 3.995017733], "role": [899, 3.456021232], "beach": [140, 2.920502996], "watch": [1155, 3.193656967], "art": [109, 3.101849418], "bar": [135, 3.266779232], "close": [241, 2.598066077], "restaurant": [878, 3.280668344], "old": [733, 2.316586949], "late": [597, 3.017766301], "class": [235, 3.101849418], "backpacking": [128, 3.966846856], "2017": [21, 3.056127169], "11": [4, 2.5397305], "island": [561, 3.017766301], "islands": [562, 3.456021232], "famous": [402, 3.119548995], "mean": [667, 2.822977975], "section": [932, 3.294753084], "called": [191, 2.388441052], "2015": [19, 3.294753084], "lost": [638, 3.007071012], "doing": [336, 2.417512867], "blue": [163, 3.323532049], "boat": [165, 3.525014103], "looks": [637, 2.955245944], "shop": [953, 3.301870552], "week": [1164, 2.408702238], "weeks": [1166, 2.95020815], "difficult": [327, 2.872874947], "destinations": [318, 2.637710908], "choose": [230, 2.566759172], "beaches": [141, 3.507314526], "backpacker": [126, 4.183069964], "traditional": [1080, 2.859017912], "north": [720, 2.970513416], "various": [1133, 2.805433666], "fresh": [444, 3.259906353], "water": [1156, 2.686684913], "cruise": [288, 3.599122076], "private": [816, 2.783927461], "door": [339, 3.668801996], "finally": [421, 3.017766301], "urban": [1120, 3.800861718], "friendly": [446, 2.960309246], "trust": [1103, 3.415199237], "years": [1196, 1.863390438], "cover": [281, 2.975654816], "feature": [406, 2.986017603], "choosing": [231, 3.423231409], "favorite": [405, 2.896405444], "price": [814, 2.456615593], "wants": [1152, 3.294753084], "200": [14, 3.096018498], "table": [1032, 3.353163846], "suitcase": [1025, 3.689636083], "truly": [1102, 3.246300701], "understand": [1114, 2.882220809], "limited": [615, 2.980822786], "gets": [460, 2.859017912], "worry": [1188, 3.273699675], "quick": [839, 2.935245277], "care": [202, 3.125519162], "list": [621, 2.156738248], "reading": [849, 3.155916639], "smart": [972, 3.43949193], "features": [407, 2.8869267], "version": [1137, 3.034026822], "overall": [744, 3.16210861], "amazon": [87, 3.498580846], "female": [415, 4.084629891], "high": [500, 2.011064958], "heavy": [496, 3.273699675], "hiking": [504, 3.391482711], "isn": [563, 2.321934555], "single": [963, 2.563340366], "weekend": [1165, 3.43949193], "month": [691, 2.69833553], "companies": [257, 2.594538737], "rule": [907, 3.608783986], "45": [38, 3.345673175], "longer": [634, 2.526485273], "left": [606, 2.608723371], "seeing": [934, 3.16210861], "talk": [1036, 3.096018498], "difference": [325, 3.143646547], "open": [736, 2.450499366], "does": [333, 2.125415777], "easier": [351, 2.69833553], "simply": [962, 2.513413192], "pain": [751, 4.00940647], "mountains": [695, 3.464389482], "body": [166, 2.965398315], "design": [314, 2.930306996], "fact": [399, 2.584030759], "tube": [1106, 4.947676109], "despite": [316, 3.155916639], "comes": [250, 2.193779519], "lets": [608, 3.658545496], "image": [531, 3.239566669], "shows": [956, 3.028577217], "common": [255, 2.656264316], "lower": [643, 2.991239547], "helps": [498, 3.017766301], "feel": [410, 2.262098763], "recommended": [860, 3.423231409], "women": [1177, 3.309039042], "line": [616, 2.598066077], "gender": [457, 4.505843356], "specific": [985, 2.70224943], "large": [594, 2.487770761], "average": [121, 2.991239547], "multiple": [698, 2.771242301], "issues": [565, 3.143646547], "55": [41, 3.899707553], "compartment": [260, 4.372311964], "laptop": [593, 4.038820355], "thought": [1057, 2.905974895], "pocket": [793, 3.608783986], "phone": [773, 3.067363242], "attention": [115, 3.09022138], "thing": [1053, 2.274805415], "able": [47, 2.229797819], "security": [933, 3.31625929], "location": [630, 2.920502996], "safe": [912, 3.213075053], "distance": [332, 3.353163846], "physical": [776, 3.516125156], "air": [77, 2.734124638], "huge": [524, 2.940208067], "money": [690, 2.200880141], "mind": [681, 2.506940677], "structure": [1019, 3.754876605], "entire": [371, 2.896405444], "ways": [1158, 2.408702238], "plastic": [786, 3.899707553], "works": [1186, 2.615891861], "cases": [206, 3.273699675], "wanted": [1151, 3.039506288], "non": [719, 2.796775603], "deal": [303, 2.792474521], "hidden": [499, 3.43949193], "winter": [1176, 3.498580846], "ready": [850, 3.050556124], "second": [931, 2.506940677], "seat": [930, 3.431328619], "material": [662, 3.721724398], "marketing": [659, 3.48133904], "idea": [528, 2.462769459], "weather": [1160, 3.119548995], "study": [1020, 3.273699675], "sold": [976, 3.48133904], "fully": [448, 3.11361426], "form": [436, 2.955245944], "function": [450, 3.710913482], "expect": [386, 2.87753696], "buying": [189, 3.180917942], "friend": [445, 3.219632454], "deals": [304, 3.200087858], "match": [661, 3.525014103], "plan": [782, 2.462769459], "business": [187, 2.340879641], "items": [567, 3.287685917], "uber": [1112, 3.48133904], "public": [833, 2.500509787], "transportation": [1088, 3.039506288], "ahead": [76, 3.187267169], "bad": [130, 2.863615621], "100": [3, 2.513413192], "19": [12, 3.084457675], "affordable": [69, 3.101849418], "inside": [550, 2.930306996], "say": [919, 2.229797819], "included": [537, 2.910794181], "wide": [1174, 3.078727001], "extremely": [395, 3.187267169], "modern": [688, 2.960309246], "recently": [858, 2.758716041], "coming": [253, 2.872874947], "relatively": [866, 3.301870552], "thanks": [1050, 3.061729424], "50": [39, 2.478321872], "16": [9, 2.805433666], "15": [8, 2.287675605], "cheapest": [222, 3.330858089], "highly": [502, 2.970513416], "hours": [520, 2.462769459], "17": [10, 2.891654841], "took": [1068, 2.801095264], "cheaper": [221, 2.965398315], "build": [182, 2.896405444], "following": [432, 2.630384868], "18": [11, 2.940208067], "written": [1193, 3.301870552], "click": [238, 3.266779232], "men": [675, 3.407231068], "earn": [350, 3.516125156], "support": [1029, 2.783927461], "questions": [838, 2.849885428], "policy": [797, 3.552165092], "impact": [533, 3.301870552], "making": [653, 2.136490087], "environment": [372, 3.533982773], "finding": [423, 3.039506288], "california": [190, 3.679164783], "states": [1003, 3.078727001], "felt": [414, 3.43949193], "airbnb": [78, 3.543032609], "riders": [889, 4.254528928], "drivers": [344, 3.498580846], "create": [282, 2.598066077], "ride": [888, 2.675168471], "driver": [343, 3.43949193], "control": [273, 3.028577217], "car": [199, 2.543069401], "share": [950, 2.447455224], "given": [462, 2.660016666], "star": [997, 3.323532049], "behavior": [147, 3.886804148], "app": [97, 2.930306996], "android": [92, 4.149168412], "process": [821, 2.714083887], "man": [654, 3.187267169], "enter": [370, 3.368315651], "address": [63, 3.543032609], "connect": [266, 3.407231068], "google": [470, 3.078727001], "account": [52, 3.07302898], "friends": [447, 2.714083887], "created": [283, 2.891654841], "users": [1125, 3.056127169], "rides": [890, 3.464389482], "rate": [844, 3.028577217], "rich": [887, 3.43949193], "middle": [678, 3.131525186], "wrong": [1194, 3.131525186], "travelling": [1094, 3.648393125], "advance": [64, 3.213075053], "research": [873, 2.634041179], "india": [545, 3.580073881], "couple": [279, 2.896405444], "building": [183, 2.896405444], "60": [42, 3.09022138], "000": [1, 2.327310912], "august": [117, 3.589552625], "rates": [845, 3.09022138], "thailand": [1049, 4.00940647], "key": [580, 2.77968117], "sun": [1027, 3.330858089], "clear": [237, 2.746344749], "destination": [317, 2.53640271], "northern": [721, 3.618540161], "certain": [214, 2.822977975], "types": [1110, 3.034026822], "sea": [927, 3.353163846], "exchange": [385, 3.552165092], "cambodia": [192, 4.482312859], "scale": [920, 3.399325888], "honeymoon": [510, 4.71715245], "international": [557, 2.660016666], "sports": [991, 3.57068414], "locals": [628, 3.239566669], "complete": [261, 2.925392981], "nature": [703, 3.11361426], "countries": [277, 2.840835593], "terms": [1047, 3.09022138], "bangkok": [133, 4.372311964], "trekking": [1097, 4.13263911], "forget": [435, 3.213075053], "bike": [156, 3.464389482], "nepal": [710, 4.605926815], "snow": [973, 3.912779634], "beauty": [143, 3.561381748], "stop": [1008, 2.594538737], "deep": [308, 3.239566669], "land": [590, 3.084457675], "ancient": [91, 3.599122076], "china": [227, 3.57068414], "chinese": [228, 4.00940647], "miss": [684, 3.43949193], "unique": [1116, 2.845350273], "sites": [965, 2.849885428], "visitors": [1146, 3.246300701], "variety": [1132, 3.107714538], "natural": [702, 3.061729424], "host": [512, 3.628392458], "south": [981, 2.762874051], "enjoy": [368, 2.682831344], "holiday": [508, 3.353163846], "later": [598, 2.612301193], "date": [300, 3.206560372], "blog": [161, 3.143646547], "summer": [1026, 3.00176596], "planning": [784, 2.580552495], "vacation": [1129, 2.854441245], "typically": [1111, 3.061729424], "credit": [286, 3.143646547], "card": [200, 3.200087858], "got": [471, 2.533085957], "package": [746, 3.525014103], "save": [916, 2.497309784], "platform": [787, 3.360711052], "happen": [488, 3.253080388], "tickets": [1059, 3.168339159], "wait": [1147, 3.259906353], "words": [1181, 3.232877681], "seven": [949, 3.31625929], "particularly": [756, 2.975654816], "strategy": [1015, 3.638342789], "property": [829, 3.668801996], "peak": [766, 3.618540161], "season": [929, 3.096018498], "advice": [68, 3.125519162], "biggest": [155, 3.00176596], "savings": [917, 3.84906382], "told": [1067, 2.940208067], "lyft": [647, 3.899707553], "offering": [729, 3.107714538], "canada": [196, 3.789165678], "living": [625, 2.896405444], "markets": [660, 3.375978524], "program": [826, 3.266779232], "application": [99, 3.754876605], "community": [256, 3.067363242], "located": [629, 3.301870552], "began": [145, 3.368315651], "december": [305, 3.360711052], "january": [571, 3.48133904], "june": [579, 3.309039042], "did": [323, 2.272251135], "kids": [581, 3.431328619], "instead": [553, 2.244576413], "fast": [404, 2.882220809], "bought": [172, 3.608783986], "success": [1024, 3.48133904], "fee": [409, 3.375978524], "april": [103, 3.38370057], "learning": [603, 3.561381748], "improve": [535, 3.43949193], "effective": [362, 3.391482711], "bank": [134, 3.48133904], "backpackers": [127, 4.254528928], "model": [686, 3.143646547], "online": [735, 2.605158305], "tech": [1041, 3.580073881], "readers": [848, 3.732653468], "selling": [938, 3.464389482], "added": [59, 2.849885428], "sell": [937, 3.253080388], "increase": [541, 2.970513416], "sales": [914, 3.533982773], "customers": [295, 3.338238196], "direct": [330, 3.213075053], "provide": [830, 2.634041179], "experiences": [390, 2.87753696], "original": [742, 3.149762774], "accommodation": [49, 3.206560372], "receive": [856, 3.301870552], "partner": [757, 3.599122076], "reach": [846, 2.840835593], "france": [440, 3.628392458], "agency": [72, 3.689636083], "percent": [767, 3.101849418], "asia": [112, 3.253080388], "america": [88, 3.149762774], "email": [364, 3.226233138], "customer": [294, 3.743703304], "level": [609, 2.69055339], "nearly": [706, 2.925392981], "results": [881, 3.056127169], "apple": [98, 3.966846856], "mobile": [685, 3.399325888], "global": [465, 3.193656967], "social": [974, 2.805433666], "network": [712, 3.137567501], "80": [44, 3.415199237], "billion": [158, 3.668801996], "compared": [259, 3.107714538], "lines": [617, 3.375978524], "million": [680, 2.901178723], "industry": [547, 2.891654841], "players": [790, 4.11637859], "products": [824, 3.034026822], "related": [865, 2.930306996], "restaurants": [879, 3.034026822], "player": [789, 4.331489969], "revenue": [884, 4.084629891], "led": [605, 3.38370057], "income": [540, 3.668801996], "require": [871, 3.226233138], "break": [177, 3.017766301], "larger": [595, 3.084457675], "simple": [961, 2.601605904], "arrive": [108, 3.431328619], "staying": [1006, 3.174608772], "went": [1168, 3.09022138], "clean": [236, 3.360711052], "trains": [1085, 3.658545496], "systems": [1031, 3.489922784], "collection": [248, 3.561381748], "giving": [464, 3.061729424], "jump": [578, 3.323532049], "running": [910, 2.910794181], "storage": [1009, 3.812696176], "multi": [697, 3.330858089], "useful": [1123, 3.084457675], "reasons": [855, 3.174608772], "problem": [819, 2.788191859], "quickly": [840, 2.849885428], "eye": [396, 3.375978524], "complex": [263, 3.456021232], "flying": [429, 3.338238196], "face": [397, 3.07302898], "test": [1048, 3.323532049], "ago": [75, 2.935245277], "today": [1065, 2.497309784], "york": [1198, 2.775452834], "ground": [476, 3.232877681], "potential": [806, 2.960309246], "financial": [422, 3.525014103], "demand": [311, 3.423231409], "passengers": [761, 3.710913482], "eventually": [379, 3.38370057], "bikes": [157, 4.100378248], "buses": [186, 3.561381748], "human": [525, 3.259906353], "70": [43, 3.464389482], "goes": [467, 2.801095264], "worked": [1183, 3.193656967], "founder": [438, 3.47282835], "turn": [1107, 2.822977975], "period": [770, 3.273699675], "score": [925, 4.024005269], "value": [1131, 2.706178708], "term": [1046, 2.960309246], "creating": [284, 3.287685917], "opportunity": [737, 3.143646547], "changes": [218, 3.174608772], "approach": [101, 3.193656967], "performance": [769, 3.232877681], "29": [32, 3.47282835], "future": [453, 2.840835593], "data": [298, 2.652525994], "researchers": [874, 4.024005269], "apps": [102, 3.360711052], "didn": [324, 2.675168471], "picture": [778, 3.301870552], "traffic": [1081, 3.301870552], "slow": [969, 3.375978524], "growing": [479, 3.253080388], "san": [915, 3.226233138], "francisco": [441, 3.800861718], "problems": [820, 3.232877681], "recent": [857, 2.762874051], "law": [600, 3.648393125], "university": [1118, 3.330858089], "result": [880, 2.882220809], "evidence": [381, 3.638342789], "taken": [1033, 2.77968117], "reduce": [862, 3.323532049], "miles": [679, 3.200087858], "chance": [216, 2.955245944], "understanding": [1115, 3.43949193], "economics": [358, 4.505843356], "taxi": [1038, 3.375978524], "workers": [1184, 4.236179789], "economy": [359, 3.43949193], "believe": [148, 3.125519162], "27": [30, 3.43949193], "cash": [207, 3.266779232], "stories": [1011, 3.38370057], "lead": [601, 3.239566669], "drop": [346, 3.226233138], "pick": [777, 2.667563872], "health": [494, 3.338238196], "spinner": [990, 4.947676109], "stars": [998, 4.100378248], "500": [40, 3.007071012], "additional": [62, 3.012404358], "directly": [331, 3.067363242], "addition": [61, 3.056127169], "rental": [869, 3.533982773], "adding": [60, 3.246300701], "february": [408, 3.580073881], "sharing": [952, 3.206560372], "soon": [978, 2.901178723], "ability": [46, 3.155916639], "internet": [558, 3.180917942], "trail": [1082, 3.812696176], "itineraries": [568, 3.700218192], "square": [994, 3.710913482], "spain": [983, 4.11637859], "lack": [588, 3.31625929], "cold": [247, 3.415199237], "spent": [989, 2.980822786], "american": [89, 2.940208067], "articles": [111, 3.618540161], "clients": [240, 3.812696176], "knowledge": [584, 3.464389482], "united": [1117, 3.149762774], "british": [180, 3.732653468], "apply": [100, 3.533982773], "essential": [374, 3.431328619], "young": [1199, 3.168339159], "children": [226, 3.360711052], "london": [632, 3.399325888], "reason": [854, 2.730084229], "charge": [219, 3.273699675], "safety": [913, 3.489922784], "booked": [168, 3.47282835], "write": [1191, 3.232877681], "visa": [1142, 4.11637859], "grand": [473, 3.516125156], "valley": [1130, 3.76617616], "coast": [244, 3.323532049], "st": [995, 3.732653468], "24": [27, 2.930306996], "kyoto": [586, 5.299073995], "australia": [118, 3.777604856], "comments": [254, 3.543032609], "feet": [413, 3.599122076], "skills": [967, 3.648393125], "meaning": [668, 3.239566669], "pass": [760, 3.16210861], "melbourne": [672, 4.911308464], "music": [700, 3.668801996], "scene": [921, 3.589552625], "rooms": [904, 3.232877681], "straight": [1013, 3.43949193], "technology": [1042, 3.084457675], "resources": [876, 3.47282835], "websites": [1163, 3.599122076], "report": [870, 3.323532049], "avoid": [122, 2.801095264], "index": [544, 4.482312859], "org": [741, 3.966846856], "category": [209, 3.754876605], "books": [170, 3.375978524], "story": [1012, 2.882220809], "working": [1185, 2.549780836], "activity": [56, 3.360711052], "source": [980, 3.323532049], "fun": [449, 2.671358942], "age": [71, 3.187267169], "journey": [576, 3.056127169], "cultural": [290, 3.415199237], "hit": [506, 3.007071012], "writing": [1192, 3.345673175], "decided": [307, 3.301870552], "media": [670, 2.996488903], "la": [587, 3.668801996], "family": [401, 2.587521164], "travels": [1095, 3.543032609], "plans": [785, 3.078727001], "daily": [297, 2.896405444], "lives": [624, 3.431328619], "continue": [272, 2.970513416], "ideas": [530, 3.259906353], "came": [193, 3.012404358], "powerful": [808, 3.608783986], "ice": [526, 3.743703304], "pages": [749, 3.76617616], "photos": [775, 3.31625929], "iceland": [527, 4.414871578], "incredible": [542, 3.43949193], "drink": [341, 3.489922784], "bottle": [171, 3.689636083], "rent": [868, 3.516125156], "insurance": [554, 3.47282835], "resort": [875, 3.648393125], "mountain": [694, 3.266779232], "figure": [418, 3.287685917], "cards": [201, 3.648393125], "project": [827, 3.345673175], "management": [655, 3.561381748], "twitter": [1108, 3.552165092], "instagram": [551, 3.743703304], "spring": [993, 3.57068414], "norway": [722, 4.632595062], "hike": [503, 3.874065122], "lake": [589, 3.689636083], "italy": [566, 3.710913482], "ferry": [416, 4.13263911], "wine": [1175, 3.543032609], "october": [727, 3.338238196], "visited": [1144, 3.489922784], "certainly": [215, 3.219632454], "levels": [610, 3.498580846], "members": [673, 3.464389482], "search": [928, 2.675168471], "link": [618, 3.287685917], "july": [577, 3.608783986], "accommodations": [50, 3.689636083], "allowed": [83, 3.280668344], "foreign": [434, 3.638342789], "begin": [146, 3.180917942], "meals": [666, 3.533982773], "fly": [428, 3.084457675], "speed": [986, 3.301870552], "sort": [979, 3.266779232], "round": [905, 3.107714538], "rome": [902, 4.236179789], "european": [377, 3.253080388], "romantic": [901, 4.084629891], "central": [212, 3.239566669], "riding": [892, 3.789165678], "shared": [951, 3.323532049], "edit": [360, 3.966846856], "parts": [758, 3.045015943], "pre": [810, 3.323532049], "houses": [522, 3.679164783], "dry": [347, 3.638342789], "00": [0, 4.024005269], "el": [363, 4.529940908], "path": [763, 3.31625929], "effect": [361, 3.431328619], "past": [762, 2.5397305], "school": [922, 3.149762774], "temple": [1044, 4.100378248], "send": [939, 3.498580846], "trek": [1096, 4.053858233], "setting": [948, 3.273699675], "breakfast": [178, 3.552165092], "dinner": [329, 3.407231068], "2013": [17, 3.658545496], "content": [271, 3.232877681], "forward": [437, 3.280668344], "tried": [1098, 3.338238196], "machine": [648, 3.648393125], "wasn": [1154, 3.309039042], "berlin": [150, 4.71715245], "spending": [988, 3.056127169], "answer": [96, 3.200087858], "vehicle": [1135, 3.836793727], "tool": [1069, 3.456021232], "hope": [511, 3.226233138], "happy": [489, 3.187267169], "nicaragua": [715, 5.678563617], "mexico": [676, 3.939447881], "engine": [366, 3.754876605], "latest": [599, 3.273699675], "tools": [1070, 3.273699675], "dog": [335, 4.200461707], "action": [53, 3.447722429], "brands": [176, 3.777604856], "database": [299, 4.183069964], "agents": [74, 3.84906382], "user": [1124, 3.232877681], "news": [714, 3.09022138], "events": [378, 3.301870552], "digital": [328, 3.679164783], "analysis": [90, 3.710913482], "video": [1138, 3.168339159], "developed": [320, 3.525014103], "images": [532, 3.648393125], "race": [842, 3.874065122], "connection": [267, 3.423231409], "annual": [95, 3.721724398], "properties": [828, 3.732653468], "french": [443, 3.754876605], "november": [724, 3.589552625], "alternative": [85, 3.456021232], "child": [225, 3.86148634], "power": [807, 2.930306996], "conditions": [265, 3.552165092], "growth": [480, 3.330858089], "numbers": [726, 3.456021232], "festival": [417, 4.436850485], "paris": [753, 3.648393125], "feeling": [411, 3.16210861], "agent": [73, 3.886804148], "box": [173, 3.679164783], "software": [975, 3.732653468], "president": [812, 3.789165678], "benefits": [149, 3.193656967], "earlier": [348, 3.232877681], "film": [419, 3.926024861], "ridesharing": [891, 4.529940908], "issue": [564, 3.232877681], "risk": [894, 3.239566669], "camera": [194, 3.86148634], "production": [823, 3.800861718], "base": [137, 3.07302898], "word": [1179, 3.391482711], "theme": [1051, 4.00940647], "computer": [264, 3.599122076], "creative": [285, 3.668801996], "client": [239, 4.053858233], "century": [213, 3.375978524], "goal": [466, 3.338238196], "posts": [805, 3.777604856], "bicycle": [153, 4.414871578], "individual": [546, 3.301870552], "economic": [357, 3.754876605], "31": [34, 3.599122076], "inr": [549, 6.297602826], "delhi": [310, 4.842315593], "vehicles": [1136, 3.995017733], "2011": [15, 3.86148634], "2012": [16, 3.754876605], "retrieved": [882, 4.632595062], "science": [923, 3.507314526], "memory": [674, 4.13263911], "political": [798, 4.053858233], "rear": [853, 4.482312859], "paid": [750, 3.232877681], "development": [321, 3.239566669], "team": [1040, 2.955245944], "moment": [689, 3.200087858], "code": [245, 3.533982773], "screen": [926, 3.926024861], "paper": [752, 3.679164783], "laos": [592, 4.876217145], "ireland": [560, 4.505843356], "web": [1161, 3.287685917], "everest": [380, 5.108018759], "theory": [1052, 4.053858233], "instance": [552, 3.423231409], "hosting": [515, 4.842315593], "training": [1084, 3.777604856], "blood": [162, 3.980833098], "funds": [452, 4.254528928], "investment": [559, 3.743703304], "games": [455, 3.980833098], "animal": [93, 4.100378248], "cuba": [289, 5.065459144], "fund": [451, 4.13263911], "chrome": [232, 5.247780701], "oil": [732, 4.273221061], "tire": [1063, 5.152470521], "jan": [570, 4.947676109], "housing": [523, 4.311687342], "wordpress": [1180, 4.71715245], "tires": [1064, 5.108018759], "brain": [174, 3.980833098], "canon": [197, 5.940927882], "scientific": [924, 4.459323341], "dice": [322, 6.164071433], "gt": [481, 6.046288397], "server": [944, 4.436850485], "linux": [620, 5.152470521]}} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/recipe_attachment.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/recipe_attachment.json deleted file mode 100644 index f35726c..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/personality-provider/recipe_attachment.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "history_required_fields": ["title", "description", "url", "frecency"], - "history_limit_secs": 2592000, - "history_item_builder": [ - {"function": "nb_tag", "fields": ["title", "description"]}, - {"function": "copy_value", "src": "nb_tags", "dest": "tags"}, - {"function": "make_boolean", "field": "tags", "threshold": -1.0}, - {"function": "allow_fields", "fields": ["tags"]} - ], - "interest_combiner": [ - {"function": "combiner_add", "field": "tags"} - ], - "interest_finalizer": [ - {"function": "set_default", "field": "tags", "value": {}}, - {"function": "l2_normalize", "field": "tags"} - ], - "item_to_rank_builder": [ - {"function": "nb_tag", "fields": ["title", "excerpt"]}, - {"function": "copy_value", "src": "nb_tags", "dest": "item_tags"}, - {"function": "make_boolean", "field": "item_tags", "threshold": -1.0}, - {"function": "set_default", "field": "item_score", "value": 0.0}, - {"function": "set_default", "field": "sort_id", "value": 0}, - {"function": "copy_value", "dest": "item_sort_id", "src": "sort_id"}, - {"function": "scalar_add", "field": "item_sort_id", "k": 1}, - {"function": "set_default", "field": "item_tags", "value": {}}, - {"function": "l2_normalize", "field": "item_tags"}, - {"function": "allow_fields", "fields": ["id", "item_tags", "item_score", "item_sort_id"]} - ], - "item_ranker": [ - {"function": "vector_multiply", "left": "tags", "right": "item_tags", "dest": "tag_sim"}, - {"function": "copy_to_map", "src": "tag_sim", "dest_key": "tag_sim", "dest_map": "final_features"}, - {"function": "copy_to_map", "src": "item_sort_id", "dest_key": "item_sort_id", "dest_map": "final_features"}, - {"function": "set_default", "field": "coeffs", "value": {"tag_sim": 1, "item_sort_id": -0.00001 }}, - {"function": "allow_fields", "fields": ["final_features", "coeffs"]}, - {"function": "vector_multiply", "left": "final_features", "right": "coeffs", "dest": "score"} - ] -} diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/pkcs11.txt b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/pkcs11.txt deleted file mode 100644 index cc769d8..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/pkcs11.txt +++ /dev/null @@ -1,5 +0,0 @@ -library= -name=NSS Internal PKCS #11 Module -parameters=configdir='sql:/Users/jfraeys/.dotfiles/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups' certPrefix='' keyPrefix='' secmod='secmod.db' flags=optimizeSpace updatedir='' updateCertPrefix='' updateKeyPrefix='' updateid='' updateTokenDescription='' -NSS=Flags=internal,critical trustOrder=75 cipherOrder=100 slotParams=(1={slotFlags=[ECC,RSA,DSA,DH,RC2,RC4,DES,RANDOM,SHA1,MD5,MD2,SSL,TLS,AES,Camellia,SEED,SHA256,SHA512] askpw=any timeout=30}) - diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/places.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/places.sqlite deleted file mode 100644 index 92348d4..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/places.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/places.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/places.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/prefs.js b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/prefs.js deleted file mode 100644 index 8fe34f3..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/prefs.js +++ /dev/null @@ -1,169 +0,0 @@ -// Mozilla User Preferences - -// DO NOT EDIT THIS FILE. -// -// If you make changes to this file while the application is running, -// the changes will be overwritten when the application exits. -// -// To change a preference value, you can either: -// - modify it via the UI (e.g. via about:config in the browser); or -// - set it within a user.js file in your profile. - -user_pref("app.normandy.first_run", false); -user_pref("app.normandy.migrationsApplied", 12); -user_pref("app.normandy.user_id", "8aa4ebb1-27be-42c7-925f-dc677ea8ce2b"); -user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1725215716); -user_pref("app.update.lastUpdateTime.background-update-timer", 1725215716); -user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1725215716); -user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1725215716); -user_pref("app.update.lastUpdateTime.region-update-timer", 1725215716); -user_pref("app.update.lastUpdateTime.rs-experiment-loader-timer", 1725215716); -user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1725215716); -user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1725215746); -user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1725215716); -user_pref("browser.bookmarks.addedImportButton", true); -user_pref("browser.bookmarks.restore_default_bookmarks", false); -user_pref("browser.contentblocking.category", "standard"); -user_pref("browser.contextual-services.contextId", "{850b04c4-7268-43a2-a9ac-88fafcc8626d}"); -user_pref("browser.download.viewableInternally.typeWasRegistered.avif", true); -user_pref("browser.download.viewableInternally.typeWasRegistered.webp", true); -user_pref("browser.laterrun.bookkeeping.profileCreationTime", 1725215685); -user_pref("browser.laterrun.bookkeeping.sessionCount", 1); -user_pref("browser.laterrun.enabled", true); -user_pref("browser.migration.version", 149); -user_pref("browser.newtabpage.activity-stream.impressionId", "{6fce3d60-59ae-44f6-ac3d-a63aa0bea93a}"); -user_pref("browser.newtabpage.activity-stream.newtabWallpapers.enabled", true); -user_pref("browser.newtabpage.activity-stream.newtabWallpapers.v2.enabled", true); -user_pref("browser.newtabpage.storageVersion", 1); -user_pref("browser.pageActions.persistedActions", "{\"ids\":[\"bookmark\"],\"idsInUrlbar\":[\"bookmark\"],\"idsInUrlbarPreProton\":[],\"version\":1}"); -user_pref("browser.pagethumbnails.storage_version", 3); -user_pref("browser.proton.toolbar.version", 3); -user_pref("browser.region.update.updated", 1725215686); -user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1725215736780"); -user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1725217559780"); -user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1725215688116"); -user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1725237288116"); -user_pref("browser.search.newSearchConfig.enabled", true); -user_pref("browser.search.region", "CA"); -user_pref("browser.shell.mostRecentDateSetAsDefault", "1725215686"); -user_pref("browser.startup.couldRestoreSession.count", 1); -user_pref("browser.startup.homepage_override.buildID", "20240819150008"); -user_pref("browser.startup.homepage_override.mstone", "129.0.2"); -user_pref("browser.startup.lastColdStartupCheck", 1725215686); -user_pref("browser.topsites.contile.cacheValidFor", 11447); -user_pref("browser.topsites.contile.cachedTiles", "[{\"id\":74357,\"name\":\"Amazon\",\"url\":\"https://www.amazon.ca/?tag=admpdesktopca-20&ref=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.ap01.net/ctp?version=1.0.0&encp=HF3vIpkX7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdQ3d7nHZ7aIwvSHZ71inTXCE3%3Diq_uCCc4JEDWFFd7fdwuDC74infYFq34fdvSJ%3DvIfqqZFnv%2FJlzlDnw4Ed7vFEj%3DilzDECcIsnjrCFv74EvSiYIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4Z2kfpHk1BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOINxpfzCRqWslXDBG31sCe_CD3Qjl__f9Ng2ZeaCc3cjlXDDC41EclZCq3QfDdSHZbnHr3_iF2zfYIQxnEvIpkafCLX7ReTiF2zfCbW4YIqxreOiF2zfCbX1BIqxreNI9IvIpkXfpb_7n3Zx%3DcdI9IvIpkm4QL_7n3Zx%3DwViF2zfClafYINI94TiF2z1pLm1CxY4Cla1pxd1pfY4ZxnxmXVj%3D_dJCkX7nEUEE7fgDX82C4nEw3%2F1cxmJRc5EqXZID_3j9vki94TjZclIQ7YFRNEsl4iIw7GCZc91%3DaW1l4v2Rc%3DDre47C7%3DEmNDJmzvfqwpJm8WBdv57C7%3DHZfkjF7dDlAZJ9vIxlw%3DDdw%3Di%3D3WDre%2FIDX8xR%2FdxFXeFBDY3RNgi%3Dza4mLWCC3X3qvP1EbmJFwHEq_8snI5ImdZB%3Dvo39cw2dvuiFfkfncdEqEaDQepIqDrEDwmCnaZ2nuRxQc64ka_IFj4I9jkJYDY3QN%2F1GE23Fv%2F7R7kJrfz6QTS1Y%2FM6OIviFfz5ClM5ClM5ClM5ClM5ClnHrbzftaYfZHW5pxkfZDr5p8XfCbk1BWXfZDX4p2Y4YWW5plY4ZqX5plWfC2X5%3D_wjr3NHOWT593vJ%3DEZxtXOHF4oInwTJczQJm_qjF4vjnDy&ctag=pd_sl_f7669511c6c52e4bb7bd6276d37f9ccb7f8e84b1dbaaa955c80229f9\",\"image_url\":\"https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/CAP5k4gWqcBGwir7bEEmBWveLMtvldFu-y_kyO3txFA=.9991.jpg\",\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfZDr7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfZDr7n4NJGeNiFjU5FwqgC8XfCbk1BINI%3DjYJrEW5FwqgClZ4Clk4p8r7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkX7n4YIFckiGIw5FwqgCLX1plnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pLr4CLZfQxr\",\"image_size\":200},{\"id\":74925,\"name\":\"Expedia\",\"url\":\"https://www.expedia.ca/?locale=en_CA&siteid=4&semcid=CA.UB.ADMARKETPLACE.GT-C-EN.HOTEL&SEMDTL=a1219869.b115417135.g1.l1.e1C.m188697251732393984.r1.c1.j1.k1.d1.h1.i1.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkY7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfdfZ2r4Z2a4BIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgCxrfYIWJ%3DwqgClWfpxnI94WHnwqgClX4CqnI94WHF3miF2zfClafYIqxreNjF3miF2zfCHa4YIqxrevJmwqgClX4CHnHF3ZJ%3DwqgCLa4QqrfQDX1pLr4CLZfZba7R4TJr3UjFkzfOIwJwEBCpdfBllZIwIDipNG4m4o1%3DIvikdG198mxREeErwHsG4fjl8_HDNRHwvd4E3DIqdfEdc4fZLmCw4U2Q3GF%3DN%3DBODY3qIt1lEf7C7tjq4CxlzXJkawfqHd3dc5CnI5xp3tDCcYHCE3fF3fED33sFuS2D2mFQ3CsEIej%3DX%2Ffdw%3DJdcNFEwmxRIlBdNoxDNVEGeG2klY4D494D_o3Q2kxwxmj%3DzSsCjqHClXspx_3k8mBc71jdvCfZNIIEN9ikzV4rvlCGjZDdeSFqXZ3FAwfq7GBlN%2Fsl3viDHwfqIdic4oDcvfFcef4Z3X3w72iD37xQjk2muOfDw9C%3Dj%2F3F7IHqvYsC3k2rN1sQcWslITJdvX4EED3qN3BQNDjccv1p7nHkjC2rIEJRfZfCIesp4pfn%2FwfqI_Bp8k1c4g3BDZ3tIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgC8UfpbWftWr4pqY4BWYfCqa4QqTfCDkfCxXfZDTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984\",\"image_url\":\"https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/m6BvG6Rcntmafem2bLfA5IktKm1SEwqO2E4XIjaC12c=.10862.jpg\",\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxk1C8d7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxk1C8d7n4NJGeNiFjU5FwqgC8X1CLm1BINI%3DjYJrEW5FwqgCld4plrfCfd7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkY7n4YIFckiGIw5FwqgCxrfYIWJ%3DcQIFdwJR2uiF2zfCbW4YINItdZIFXwHr3vJmauiF2z1pLm1CxY4Cla1pxd1pfZfpLy\",\"image_size\":200},{\"id\":74038,\"name\":\"Hotels.com\",\"url\":\"https://ca.hotels.com/?locale=en_CA&pos=HCOM_CA&siteid=300000002&rffrid=sem.hcom.CA.AMP.003.00.03.s.s.kwrd=device.creative.15480317.211337.adposition.targetid.loc_physical_ms.loc_interest_ms.keyword.88697251732393984.aw.ds&PSRC=_psrc&semcid=HCOM-CA.UB.ADMARKETPLACE.GT-device-EN.HOTEL&SEMDTL=a1211337.b115480317.g1targetid.l1.e1device.m1gclid.r1_expediakwid.c1_expediaadid.j1loc_physical_ms.k1loc_interest_ms.d1creative.h1matchtype.i1feeditemid.n1.o1.p1.q1.s1.t1.x1.f1.u1.v1.w1&mfadid=adm\",\"click_url\":\"https://bridge.sfo1.admarketplace.net/ctp?version=1.0.0&encp=HF3vIpkZ7RcdjpkX4Z8dfQlkfQxY4Z2d7ncqjnaz7nIZgGeYJm2uHF3wJnjvJnDufpfUxmIVfBIkxZdWxnzq5FcqIF_RiF_w5CbZ5R4nJZlnJr7Rirxzj%3DwTIG4W7n7vI%3D3wxweNxncuxZdg3%3DxYCd3QsD_D3C44sqwPCd344DzlDBIuxr2zj%3DwTIG4W7R7kx%3DwqgG4nGZ8Wfm2k4QH_HQxWIFENIpfYHQ7NfQHrHFH_fmcNICH_Gm2mfQ2k4QHa4QqXfZfd1pIQIFfr4ZxkHn8kHQIQ4QDr7ReOgClWftaW7RedxZ7vgClWfBIWjGfXiCkXfplnx9EWiCkXfQL_fBIkxrfXgCfX1p8d4Cxr1tIkxredHQkZfCLY4CDr4ZxnHG3ZiF2zfZlafQDd4Zx_7nckxmWzfOIdj%3Dqz4Zxr4ZHnjFjvgC8nxr7kgClk7ndZj9eKiF3agBkX7nwUjnwqgBkX7R3aiF2zftIojmwqspkW7R7kxnfzftIYj9eogCbnIr2zftIojmwqgCfd4CxWfpHr4YIXjFEYsFwqgCLa4QqrfQDX4ZfYfZqZ1CLk7ndZj92zftIYj%3D7TgFINJ94w7Rekj%3DwqgCbnI9eQiF2zfQbWfCfZ1CH_fOIQj9wvIpkZ7n4YIFwqgC2mfQqnx%3DXvIpkXfpbr7n3Zx%3D7vIpkXfpf_7n3Zx%3DcqjnwqgClW4pxnI94WHGEqjnwqgC2d1ClnI94WiFzvIpkXfC2_7ncqxmXvIpka1pH_4Z8dfCL_fCxr4ZH_4OIZJ%3DzkJREugCfnIF_EDqWzClNefmIFE%3DLaEZjw7C7%3DCEwvIF_eHdjICl_FHR761GN7jk_YDcjnIr%2FwfqI8iYDY2nXaFq4iBwvaEZ8mCZNtHn442Zj8xnd7jqkkj9eDBR3S4FNp3dvcDZeq3kXZ2RIY19IOfG3nIC4miklwfq7oDG3qEmzD4njGslcFInup7C7%3DxwISEwI%2FxkXd3r7o2Q4WBkkwfq764c48idvNFnlXJkqaHClmDq454weSjR4wjkI2jnd8i9evI9HmHm_mJm%2Fwfq7oF%3DXGHE7Zxkv9Bq3BFRjp1FIvIqNu7C7%3DxrLrIG47DZcwBp7YF9e_xGeYj%3DxaHkuk2ZNGBRq_BqNnHr4t19e7BQ3dEEHZ2FWwfqI5Dqc_j9ESC%3DcqD%3DHwfqINCwHW4DNqiqvSBnIexEvZ1EeqfF8wfqIUJQbY1tDY3RjTDEEo2ZeYCdI42nTkfZEnxnkdBlXcF%3Dw5x%3Dkr4l3W3nuN2CjVirjpfmNeik7wEkvBF9Dr7C7tHCwmClLwfqI7BFIVjdEoBEcX4QHYjQfYBDugsC31Fw767C7tEGcRIqc9EmdVBnv_DGEEHdE%2FHnL_3YDY3qveFwEUCqxkDDXPCl7XBdwEIZbafl76ImdQxkIkB%3D_%3DIdea7C7tE%3DE5197%3DJluuFl4Y1FTZDnj1jZwoEc8d7C7%3DDFNV1tDY3RI%2Fjm7NE9DXJZ4E2qEBD%3DN7jBDY2nurJqEn2r8ZjdwIikvZiFNWCQN8JqfW7C7txF772D79DlD_fEEGiFwtFC3DilzH4F3f7C7t3dv92dv4sDkwfq7os9vRjEwZipIH4qv4jZLwfq7BBnIoxwcO1FTmJEvRsGwq1%3DN3193V2YDY3wl_2Rv_7C7t7C7tBmNEEp3RsDTwfq8rDGe91E4tiC37DqxY3rwN19EfDG4DHZwNHd7iHDjNjEIcsc8W2mIc4dE7jq_Ufk7oIr8XBQj11FERCF3rj%3DAwfqHaipwdDlESitIYj%3DzZgB%2FM6QTS1Y%2FniFwQgBkX1YkX1YkX1YkX1YkX7n4WgCbU1pLWftWr4pbZ1tWYfClZfZxTfCDk1pbZfCxTftWXfQx_fBWXfplkfBXUIGjkHF8T5tXkiFXwxrbTHncQimIvJ%3DXKHmzUI9EQiGIw&ctag=88697251732393984\",\"image_url\":\"https://tiles-cdn.prod.ads.prod.webservices.mozgcp.net/PU5wogQ1m83eJB_LfqAP_PPcUdIXugqxpwzpdHZnNlk=.8480.jpg\",\"impression_url\":\"https://imp.mt48.net/static?id=7RHzfOIXjFEYsBdvIpka1pH%2B4Z8dfCxZfQf%2BfZqa4tIWHG7kJnEYgFIvxnEnJrNWxnwmHF4%2Bj%3DwTIGfnxrEOfCkXfplkfBIZjF8YgF%2Bwjr3NHOIZjF8ZgCxkfpfa7nckxYdvIpkZfCLY4CDr4ZqnHF3m5FwqgCxkfpfa7n4NJGeNiFjU5FwqgC8XfCfZ4YINI%3DjYJrEW5FwqgCld4pLWfZlr7R3%2Bx%3DDuiF2zfOIZJ%3Dzk5F%2BdJF7wxQkZ7n4YIFckiGIw5FwqgC2mfQqnx%3DXNHmEuIF%2Bk5FwqgClWfpxnHF2uxmETIF4kiFzU5FwqgCLa4QqrfQDX1pqX4Zxr4Qqm\",\"image_size\":200}]"); -user_pref("browser.topsites.contile.lastFetch", 1725215986); -user_pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"unified-extensions-area\":[],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"customizableui-special-spring1\",\"urlbar-container\",\"customizableui-special-spring2\",\"save-to-pocket-button\",\"downloads-button\",\"fxa-toolbar-menu-button\",\"unified-extensions-button\"],\"TabsToolbar\":[\"firefox-view-button\",\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"PersonalToolbar\":[\"import-button\",\"personal-bookmarks\"]},\"seen\":[\"save-to-pocket-button\",\"developer-button\"],\"dirtyAreaCache\":[\"nav-bar\",\"PersonalToolbar\"],\"currentVersion\":20,\"newElementCount\":2}"); -user_pref("browser.urlbar.placeholderName", "Google"); -user_pref("browser.urlbar.quicksuggest.migrationVersion", 2); -user_pref("browser.urlbar.quicksuggest.scenario", "history"); -user_pref("datareporting.policy.dataSubmissionPolicyAcceptedVersion", 2); -user_pref("datareporting.policy.dataSubmissionPolicyNotifiedTime", "1725215686231"); -user_pref("distribution.iniFile.exists.appversion", "129.0.2"); -user_pref("distribution.iniFile.exists.value", false); -user_pref("doh-rollout.doneFirstRun", true); -user_pref("doh-rollout.home-region", "CA"); -user_pref("doh-rollout.mode", 0); -user_pref("doh-rollout.uri", "https://private.canadianshield.cira.ca/dns-query"); -user_pref("dom.forms.autocomplete.formautofill", true); -user_pref("dom.push.userAgentID", "43eacaeef7264e3aa3d413af98d06a84"); -user_pref("extensions.activeThemeID", "default-theme@mozilla.org"); -user_pref("extensions.blocklist.pingCountVersion", 0); -user_pref("extensions.databaseSchema", 36); -user_pref("extensions.formautofill.creditCards.reauth.optout", "MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECIluk1aIFl6SBAj7l8kT5CbaCw=="); -user_pref("extensions.getAddons.cache.lastUpdate", 1725215716); -user_pref("extensions.getAddons.databaseSchema", 6); -user_pref("extensions.lastAppBuildId", "20240819150008"); -user_pref("extensions.lastAppVersion", "129.0.2"); -user_pref("extensions.lastPlatformVersion", "129.0.2"); -user_pref("extensions.pendingOperations", false); -user_pref("extensions.pictureinpicture.enable_picture_in_picture_overrides", true); -user_pref("extensions.quarantinedDomains.list", "autoatendimento.bb.com.br,ibpf.sicredi.com.br,ibpj.sicredi.com.br,internetbanking.caixa.gov.br,www.ib12.bradesco.com.br,www2.bancobrasil.com.br"); -user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}"); -user_pref("extensions.webcompat.enable_shims", true); -user_pref("extensions.webcompat.perform_injections", true); -user_pref("extensions.webcompat.perform_ua_overrides", true); -user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.screenshots@mozilla.org", true); -user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"d84c8142-9f0a-423e-8c2e-3236845e8471\",\"pictureinpicture@mozilla.org\":\"c3077954-2476-4bac-9a58-c3eb25265ede\",\"screenshots@mozilla.org\":\"36cec2fc-a6d7-4f2f-97b0-06d944188ecb\",\"webcompat-reporter@mozilla.org\":\"b6257c0f-a2ef-45f8-ba15-759f49648341\",\"webcompat@mozilla.org\":\"a3fd7286-08b2-457e-9b0f-0492aee01e72\",\"default-theme@mozilla.org\":\"39fea6a1-fd23-406a-bc89-d2f44988bc7b\",\"addons-search-detection@mozilla.com\":\"06c7f835-e036-4b9f-a513-8e97469e5465\"}"); -user_pref("gecko.handlerService.defaultHandlersVersion", 1); -user_pref("idle.lastDailyNotification", 1725216052); -user_pref("media.gmp-gmpopenh264.abi", "aarch64-gcc3"); -user_pref("media.gmp-gmpopenh264.hashValue", "391efb184373d533713a9e99a9e63c3bbaf614e8d8bdfdd84d4d5e53b9a737e75032187309dd00e58b58bb1033ab68d199f994744f6add57dd08f5fbb654d2f3"); -user_pref("media.gmp-gmpopenh264.lastDownload", 1725215717); -user_pref("media.gmp-gmpopenh264.lastInstallStart", 1725215716); -user_pref("media.gmp-gmpopenh264.lastUpdate", 1725215717); -user_pref("media.gmp-gmpopenh264.version", "2.3.2"); -user_pref("media.gmp-manager.buildID", "20240819150008"); -user_pref("media.gmp-manager.lastCheck", 1725215771); -user_pref("media.gmp-manager.lastEmptyCheck", 1725215771); -user_pref("media.gmp-widevinecdm.abi", "aarch64-gcc3"); -user_pref("media.gmp-widevinecdm.hashValue", "3aa1e3e34abffb781fbbcb411a0381a4eb641793042987a8b6bcffdb2c366b52b0cb059c36dceff7146e80fbb98c5ccb2f98af726ce2619fa7bbd4b1d388414e"); -user_pref("media.gmp-widevinecdm.lastDownload", 1725215718); -user_pref("media.gmp-widevinecdm.lastInstallStart", 1725215716); -user_pref("media.gmp-widevinecdm.lastUpdate", 1725215718); -user_pref("media.gmp-widevinecdm.version", "4.10.2710.0"); -user_pref("media.gmp.storage.version.observed", 1); -user_pref("nimbus.syncdefaultsstore.pocketNewtab", "{\"slug\":\"home-and-newtab-wallpapers-v1-rollout-us-and-ca\",\"branch\":{\"slug\":\"control\",\"ratio\":1,\"feature\":{\"value\":null,\"enabled\":true,\"featureId\":\"pocketNewtab\"},\"features\":null},\"active\":true,\"experimentType\":\"rollout\",\"source\":\"rs-loader\",\"userFacingName\":\"Home and newtab wallpapers v2 Rollout -- US and CA\",\"userFacingDescription\":\"Rollout of New Tab wallpaper selection.\",\"lastSeen\":\"2024-09-01T18:34:46.346Z\",\"featureIds\":[\"pocketNewtab\"],\"prefs\":[{\"name\":\"browser.newtabpage.activity-stream.newtabWallpapers.enabled\",\"branch\":\"user\",\"featureId\":\"pocketNewtab\",\"variable\":\"wallpapers\",\"originalValue\":null},{\"name\":\"browser.newtabpage.activity-stream.newtabWallpapers.v2.enabled\",\"branch\":\"user\",\"featureId\":\"pocketNewtab\",\"variable\":\"wallpapersV2\",\"originalValue\":null},{\"name\":\"browser.newtabpage.activity-stream.weather.locationSearchEnabled\",\"branch\":\"user\",\"featureId\":\"pocketNewtab\",\"variable\":\"weatherLocationSearch\",\"originalValue\":null}],\"isRollout\":true}"); -user_pref("nimbus.syncdefaultsstore.pocketNewtab.regionWeatherConfig", "US, CA"); -user_pref("nimbus.syncdefaultsstore.pocketNewtab.wallpapers", true); -user_pref("nimbus.syncdefaultsstore.pocketNewtab.wallpapersV2", true); -user_pref("nimbus.syncdefaultsstore.pocketNewtab.weatherLocationSearch", true); -user_pref("nimbus.syncdefaultsstore.upgradeDialog", "{\"slug\":\"upgrade-spotlight-rollout\",\"branch\":{\"slug\":\"treatment\",\"ratio\":1,\"feature\":{\"value\":null,\"enabled\":true,\"featureId\":\"upgradeDialog\"},\"features\":null},\"active\":true,\"experimentType\":\"rollout\",\"source\":\"rs-loader\",\"userFacingName\":\"Upgrade Spotlight Rollout\",\"userFacingDescription\":\"Experimenting on onboarding content when you upgrade Firefox.\",\"lastSeen\":\"2024-09-01T18:34:46.327Z\",\"featureIds\":[\"upgradeDialog\"],\"prefs\":[],\"isRollout\":true}"); -user_pref("nimbus.syncdefaultsstore.upgradeDialog.enabled", false); -user_pref("pdfjs.enabledCache.state", true); -user_pref("pdfjs.migrationVersion", 2); -user_pref("places.database.lastMaintenance", 1725216052); -user_pref("privacy.bounceTrackingProtection.hasMigratedUserActivationData", true); -user_pref("privacy.purge_trackers.date_in_cookie_database", "0"); -user_pref("privacy.purge_trackers.last_purge", "1725216052805"); -user_pref("privacy.sanitize.clearOnShutdown.hasMigratedToNewPrefs2", true); -user_pref("privacy.sanitize.pending", "[]"); -user_pref("services.settings.blocklists.addons-bloomfilters.last_check", 1725215716); -user_pref("services.settings.blocklists.gfx.last_check", 1725215716); -user_pref("services.settings.clock_skew_seconds", 0); -user_pref("services.settings.last_etag", "\"1725202629204\""); -user_pref("services.settings.last_update_seconds", 1725215716); -user_pref("services.settings.main.addons-manager-settings.last_check", 1725215716); -user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1725215716); -user_pref("services.settings.main.cfr.last_check", 1725215716); -user_pref("services.settings.main.cookie-banner-rules-list.last_check", 1725215716); -user_pref("services.settings.main.devtools-compatibility-browsers.last_check", 1725215716); -user_pref("services.settings.main.devtools-devices.last_check", 1725215716); -user_pref("services.settings.main.doh-config.last_check", 1725215716); -user_pref("services.settings.main.doh-providers.last_check", 1725215716); -user_pref("services.settings.main.fingerprinting-protection-overrides.last_check", 1725215716); -user_pref("services.settings.main.hijack-blocklists.last_check", 1725215716); -user_pref("services.settings.main.language-dictionaries.last_check", 1725215716); -user_pref("services.settings.main.message-groups.last_check", 1725215716); -user_pref("services.settings.main.newtab-wallpapers.last_check", 1725215716); -user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1725215716); -user_pref("services.settings.main.nimbus-secure-experiments.last_check", 1725215716); -user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1725215716); -user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1725215716); -user_pref("services.settings.main.password-recipes.last_check", 1725215716); -user_pref("services.settings.main.password-rules.last_check", 1725215716); -user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1725215716); -user_pref("services.settings.main.query-stripping.last_check", 1725215716); -user_pref("services.settings.main.search-config-icons.last_check", 1725215716); -user_pref("services.settings.main.search-config-overrides-v2.last_check", 1725215716); -user_pref("services.settings.main.search-config-overrides.last_check", 1725215716); -user_pref("services.settings.main.search-config-v2.last_check", 1725215716); -user_pref("services.settings.main.search-config.last_check", 1725215716); -user_pref("services.settings.main.search-default-override-allowlist.last_check", 1725215716); -user_pref("services.settings.main.search-telemetry-v2.last_check", 1725215716); -user_pref("services.settings.main.sites-classification.last_check", 1725215716); -user_pref("services.settings.main.top-sites.last_check", 1725215716); -user_pref("services.settings.main.translations-models.last_check", 1725215716); -user_pref("services.settings.main.translations-wasm.last_check", 1725215716); -user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1725215716); -user_pref("services.settings.main.websites-with-shared-credential-backends.last_check", 1725215716); -user_pref("services.sync.engine.addresses.available", true); -user_pref("signon.management.page.os-auth.optout", "MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECOsCmzFLW7DNBAjCfksnL9awmA=="); -user_pref("storage.vacuum.last.index", 0); -user_pref("storage.vacuum.last.places.sqlite", 1725216052); -user_pref("toolkit.startup.last_success", 1725215685); -user_pref("toolkit.telemetry.cachedClientID", "6a3ae85d-19d1-4704-9355-b2caa2e4c90c"); -user_pref("toolkit.telemetry.pioneer-new-studies-available", true); -user_pref("toolkit.telemetry.previousBuildID", "20240819150008"); -user_pref("toolkit.telemetry.reportingpolicy.firstRun", false); -user_pref("trailhead.firstrun.didSeeAboutWelcome", true); diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/protections.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/protections.sqlite deleted file mode 100644 index fa2541d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/protections.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/ads-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/ads-track-digest256.sbstore deleted file mode 100644 index 7021a0d..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/ads-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/ads-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/ads-track-digest256.vlpset deleted file mode 100644 index 520ff8b..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/ads-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/analytics-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/analytics-track-digest256.sbstore deleted file mode 100644 index 2e98d3c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/analytics-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/analytics-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/analytics-track-digest256.vlpset deleted file mode 100644 index fc1ef42..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/analytics-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-cryptomining-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-cryptomining-track-digest256.sbstore deleted file mode 100644 index a9a8f09..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-cryptomining-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-cryptomining-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-cryptomining-track-digest256.vlpset deleted file mode 100644 index 7ec715e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-cryptomining-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-email-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-email-track-digest256.sbstore deleted file mode 100644 index 532fe60..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-email-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-email-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-email-track-digest256.vlpset deleted file mode 100644 index e34a50c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-email-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-fingerprinting-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-fingerprinting-track-digest256.sbstore deleted file mode 100644 index af8d581..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-fingerprinting-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-fingerprinting-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-fingerprinting-track-digest256.vlpset deleted file mode 100644 index f2767fa..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/base-fingerprinting-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-email-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-email-track-digest256.sbstore deleted file mode 100644 index 8276b91..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-email-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-email-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-email-track-digest256.vlpset deleted file mode 100644 index 97badac..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-email-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-track-digest256.sbstore deleted file mode 100644 index 29c8514..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-track-digest256.vlpset deleted file mode 100644 index 7966402..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/content-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google-trackwhite-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google-trackwhite-digest256.sbstore deleted file mode 100644 index a37d1ac..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google-trackwhite-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google-trackwhite-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google-trackwhite-digest256.vlpset deleted file mode 100644 index 59a3fac..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google-trackwhite-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-badbinurl-proto.metadata b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-badbinurl-proto.metadata deleted file mode 100644 index b69f613..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-badbinurl-proto.metadata and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-badbinurl-proto.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-badbinurl-proto.vlpset deleted file mode 100644 index 7d5dbf3..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-badbinurl-proto.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-downloadwhite-proto.metadata b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-downloadwhite-proto.metadata deleted file mode 100644 index 345e94b..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-downloadwhite-proto.metadata and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-downloadwhite-proto.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-downloadwhite-proto.vlpset deleted file mode 100644 index cc5df2e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-downloadwhite-proto.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-malware-proto.metadata b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-malware-proto.metadata deleted file mode 100644 index 5e48300..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-malware-proto.metadata and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-malware-proto.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-malware-proto.vlpset deleted file mode 100644 index 0982d12..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-malware-proto.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-phish-proto.metadata b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-phish-proto.metadata deleted file mode 100644 index 98fa92b..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-phish-proto.metadata and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-phish-proto.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-phish-proto.vlpset deleted file mode 100644 index 4e18d56..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-phish-proto.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-unwanted-proto.metadata b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-unwanted-proto.metadata deleted file mode 100644 index 66dec19..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-unwanted-proto.metadata and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-unwanted-proto.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-unwanted-proto.vlpset deleted file mode 100644 index 1e8e96c..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/google4/goog-unwanted-proto.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozplugin-block-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozplugin-block-digest256.sbstore deleted file mode 100644 index 1808b48..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozplugin-block-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozplugin-block-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozplugin-block-digest256.vlpset deleted file mode 100644 index 3ff3efe..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozplugin-block-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozstd-trackwhite-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozstd-trackwhite-digest256.sbstore deleted file mode 100644 index 7b87e88..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozstd-trackwhite-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozstd-trackwhite-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozstd-trackwhite-digest256.vlpset deleted file mode 100644 index d9f20fa..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/mozstd-trackwhite-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-track-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-track-digest256.sbstore deleted file mode 100644 index e519629..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-track-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-track-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-track-digest256.vlpset deleted file mode 100644 index 55dda76..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-track-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-facebook-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-facebook-digest256.sbstore deleted file mode 100644 index 548f037..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-facebook-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-facebook-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-facebook-digest256.vlpset deleted file mode 100644 index a1ed830..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-facebook-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-linkedin-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-linkedin-digest256.sbstore deleted file mode 100644 index bcc88c6..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-linkedin-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-linkedin-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-linkedin-digest256.vlpset deleted file mode 100644 index dde4e87..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-linkedin-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-twitter-digest256.sbstore b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-twitter-digest256.sbstore deleted file mode 100644 index cb67344..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-twitter-digest256.sbstore and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-twitter-digest256.vlpset b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-twitter-digest256.vlpset deleted file mode 100644 index 6d54e18..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/safebrowsing/social-tracking-protection-twitter-digest256.vlpset and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/saved-telemetry-pings/6f55fbb2-2ddb-497c-91d8-88d89cdd92ec b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/saved-telemetry-pings/6f55fbb2-2ddb-497c-91d8-88d89cdd92ec deleted file mode 100644 index c516fb7..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/saved-telemetry-pings/6f55fbb2-2ddb-497c-91d8-88d89cdd92ec +++ /dev/null @@ -1 +0,0 @@ -{"type":"main","id":"6f55fbb2-2ddb-497c-91d8-88d89cdd92ec","creationDate":"2024-09-01T18:48:34.847Z","version":4,"application":{"architecture":"aarch64","buildId":"20240819150008","name":"Firefox","version":"129.0.2","displayVersion":"129.0.2","vendor":"Mozilla","platformVersion":"129.0.2","xpcomAbi":"aarch64-gcc3","channel":"release"},"payload":{"ver":4,"simpleMeasurements":{"totalTime":830,"start":8,"main":25,"selectProfile":100,"afterProfileLocked":101,"startupCrashDetectionBegin":120,"startupCrashDetectionEnd":31003,"firstPaint":724,"firstPaint2":724,"sessionRestoreInit":394,"sessionRestored":773,"createTopLevelWindow":423,"quitApplication":829705,"profileBeforeChange":829719,"AMI_startup_begin":126,"XPI_startup_begin":132,"XPI_bootstrap_addons_begin":178,"XPI_bootstrap_addons_end":179,"XPI_startup_end":179,"AMI_startup_end":179,"XPI_finalUIStartup":393,"sessionRestoreInitialized":408,"delayedStartupStarted":728,"delayedStartupFinished":746,"startupInterrupted":0,"debuggerAttached":0,"activeTicks":3},"processes":{"parent":{"scalars":{"a11y.always_underline_links":false,"blocklist.lastModified_rs_addons_mlbf":"Thu, 22 Aug 2024 18:37:26 GMT","formautofill.availability":true,"startup.profile_database_version":"2","browser.startup.abouthome_cache_shutdownwrite":false,"browser.backup.cookies_size":100,"browser.engagement.max_concurrent_tab_count":2,"browser.backup.preferences_size":362,"browser.backup.credentials_data_size":300,"networking.doh_heuristics_attempts":13,"timestamps.first_paint_two":723,"gfx.os_compositor":true,"browser.backup.session_store_size":1,"startup.profile_count":3,"a11y.use_system_colors":false,"browser.engagement.session_time_excluding_suspend":829715,"policies.is_enterprise":false,"networking.nss_initialization":3,"timestamps.first_paint":723,"contentblocking.fingerprinting_blocking_enabled":true,"browser.engagement.bookmarks_toolbar_bookmark_added":1,"policies.count":0,"browser.backup.browser_extension_data_size":0,"networking.loading_certs_task":10,"contentblocking.cryptomining_blocking_enabled":true,"browser.startup.abouthome_cache_result":1,"browser.searchinit.insecure_opensearch_update_count":0,"startup.is_cold":false,"browser.engagement.active_ticks":3,"browser.backup.form_history_size":0,"blocklist.mlbf_stash_time_oldest":"Missing Date","a11y.invert_colors":false,"contentblocking.category":0,"browser.searchinit.secure_opensearch_update_count":0,"widget.dark_mode":false,"browser.backup.favicons_size":5240,"blocklist.mlbf_stash_time_newest":"Missing Date","browser.searchinit.secure_opensearch_engine_count":0,"dom.contentprocess.os_priority_raised":3,"browser.engagement.unique_domains_count":1,"browser.backup.places_size":5240,"datasanitization.session_permission_exceptions":0,"browser.backup.extensions_xpi_directory_size":0,"blocklist.mlbf_source":"remote_match","a11y.backplate":true,"pictureinpicture.toggle_enabled":true,"dom.contentprocess.os_priority_change_considered":23,"os.environment.is_kept_in_dock":false,"dom.contentprocess.os_priority_lowered":4,"security.https_only_mode_enabled_pbm":0,"browser.engagement.unfiltered_uri_count":1,"browser.backup.session_store_backups_directory_size":0,"browser.backup.extensions_storage_size":0,"blocklist.mlbf_generation_time":"Thu, 22 Aug 2024 18:35:05 GMT","networking.http3_enabled":true,"power.total_thread_wakeups":40839,"browser.backup.storage_sync_size":0,"browser.searchinit.insecure_opensearch_engine_count":0,"startup.seconds_since_last_os_restart":4439,"security.https_only_mode_enabled":0,"browser.engagement.session_time_including_suspend":829715,"browser.engagement.total_uri_count_normal_and_private_mode":1,"browser.engagement.max_concurrent_window_count":1,"browser.backup.security_data_size":231,"browser.backup.extensions_json_size":10,"networking.doh_heuristics_result":17,"power.total_cpu_time_ms":8342,"gfx.supports_hdr":true,"browser.backup.misc_data_size":1532,"startup.profile_selection_reason":"argument-p","security.global_privacy_control_enabled":0,"browser.engagement.total_uri_count":1,"browser.backup.prof_d_disk_space":840390000,"cookie.banners.service_detect_only":false},"keyedScalars":{"telemetry.event_counts":{"normandy#enroll#nimbus_experiment":11,"doh#state#shutdown":3,"upgrade_dialog#trigger#reason":1,"doh#evaluate_v2#heuristics":13,"addonsManager#uninstall#other":2,"normandy#validationFailed#nimbus_experiment":2,"session_restore#backup_can_be_loaded#session_file":8,"addonsManager#disable#extension":1,"doh#state#rollback":1,"search#engine#change_default":1,"doh#state#disabled":13},"security.client_auth_cert_usage":{"sent":0,"requested":0},"networking.speculative_connect_outcome":{"aborted_socket_limit":1381,"successful":328},"cookie.banners.normal_window_service_mode":{"disabled":true,"invalid":false,"reject_or_accept":false,"reject":false},"networking.doh_heuristic_ever_tripped":{"zscalerCanary":false,"policy":false,"proxy":false,"vpn":false,"nrpt":false,"youtube":false,"thirdPartyRoots":false,"canary":true,"google":false,"browserParent":false},"power.wakeups_per_process_type":{"parent.inactive":34413,"parent.active":6426},"a11y.theme":{"always":false},"browser.ui.interaction.tabs_bar":{"tab-close-button":1},"networking.data_transferred_v3_kb":{"Y1_N1":706,"Y0_N1Sys":49978,"Y2_N3Oth":150},"cookie.banners.private_window_service_mode":{"disabled":true,"invalid":false,"reject_or_accept":false,"reject":false},"normandy.recipe_freshness":{"259":1652,"661":2105,"689":2207,"690":2208,"691":2205,"721":2336,"767":2566,"786":2698,"839":2717,"875":2879,"917":3589,"918":2962,"1014":3221,"1072":3388,"1080":3410,"1147":3629,"1161":3647,"1197":3795,"1207":3821,"1208":3822,"1209":3794,"1225":4032,"1226":4033,"1227":4040,"1228":4036,"1229":4035,"1230":4038,"1231":4039,"1232":4034,"1233":4037,"1234":4041,"1235":4042,"1236":4031,"1246":3888,"1266":3934,"1316":4014,"1318":4043,"1343":4129,"1345":4130,"1346":4132,"1392":4260,"1405":4287},"browser.ui.toolbar_widgets":{"bookmark_pinned_pageaction-urlbar":true,"save-to-pocket-button_pinned_nav-bar-end":true,"fxa-toolbar-menu-button_pinned_nav-bar-end":true,"stop-reload-button_pinned_nav-bar-start":true,"firefox-view-button_pinned_tabs-bar":true,"downloads-button_pinned_nav-bar-end":true,"personal-bookmarks_pinned_bookmarks-bar":true,"menu-toolbar_pinned_off":true,"tabbrowser-tabs_pinned_tabs-bar":true,"titlebar_pinned_off":true,"alltabs-button_pinned_tabs-bar":true,"new-tab-button_pinned_tabs-bar":true,"forward-button_pinned_nav-bar-start":true,"back-button_pinned_nav-bar-start":true,"bookmarks-bar_pinned_newtab":true,"unified-extensions-button_pinned_nav-bar-end":true},"power.cpu_time_per_process_type_ms":{"parent.inactive":6356,"parent.active":1986}}},"content":{"histograms":{"CYCLE_COLLECTOR_MAX_PAUSE":{"bucket_count":50,"histogram_type":0,"sum":23,"range":[1,10000],"values":{"0":0,"1":3,"2":1,"3":1,"14":1,"17":0}},"GC_ZONE_COUNT":{"bucket_count":20,"histogram_type":0,"sum":14,"range":[1,100],"values":{"1":0,"2":4,"6":1,"7":0}},"GC_ZONES_COLLECTED":{"bucket_count":20,"histogram_type":0,"sum":12,"range":[1,100],"values":{"0":0,"1":2,"2":2,"6":1,"7":0}},"GC_MS":{"bucket_count":50,"histogram_type":0,"sum":28,"range":[1,10000],"values":{"1":0,"2":2,"5":1,"7":1,"12":1,"14":0}},"GC_IN_PROGRESS_MS":{"bucket_count":50,"histogram_type":0,"sum":284,"range":[1,10000],"values":{"29":0,"34":1,"40":1,"57":2,"68":1,"81":0}},"GC_BUDGET_WAS_INCREASED":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":20,"1":0}},"GC_SLICE_WAS_LONG":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":20,"1":0}},"GC_MAX_PAUSE_MS_2":{"bucket_count":50,"histogram_type":0,"sum":25,"range":[1,10000],"values":{"1":0,"2":2,"3":1,"7":1,"10":1,"12":0}},"GC_PREPARE_MS":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":5,"1":0}},"GC_MARK_MS":{"bucket_count":50,"histogram_type":0,"sum":8,"range":[1,10000],"values":{"0":3,"3":1,"5":1,"6":0}},"GC_SWEEP_MS":{"bucket_count":50,"histogram_type":0,"sum":16,"range":[1,10000],"values":{"0":0,"1":2,"2":1,"6":2,"7":0}},"GC_COMPACT_MS":{"bucket_count":50,"histogram_type":0,"sum":1,"range":[1,10000],"values":{"0":0,"1":1,"2":0}},"GC_SLICE_MS":{"bucket_count":50,"histogram_type":0,"sum":26,"range":[1,10000],"values":{"0":14,"1":1,"2":2,"3":1,"7":1,"10":1,"12":0}},"GC_MMU_50":{"bucket_count":20,"histogram_type":1,"sum":440,"range":[1,100],"values":{"67":0,"73":1,"84":1,"89":1,"95":2,"100":0}},"GC_MINOR_US":{"bucket_count":100,"histogram_type":0,"sum":6162,"range":[1,1000000],"values":{"8":0,"9":1,"11":1,"19":2,"22":1,"148":1,"168":1,"217":1,"281":1,"320":1,"471":2,"536":1,"3300":1,"3758":0}},"GC_TIME_BETWEEN_SLICES_MS":{"bucket_count":50,"histogram_type":0,"sum":255,"range":[1,2000],"values":{"0":2,"17":2,"19":11,"22":0}},"GC_SLICE_COUNT":{"bucket_count":50,"histogram_type":0,"sum":20,"range":[1,200],"values":{"2":0,"3":1,"4":3,"5":1,"6":0}},"DESERIALIZE_BYTES":{"bucket_count":100,"histogram_type":0,"sum":2826448,"range":[16,2147483646],"values":{"0":0,"16":153,"23":41,"28":1,"41":2,"50":2,"61":10,"74":13,"90":5,"109":6,"132":5,"160":4,"194":29,"235":20,"284":21,"344":11,"416":8,"503":8,"609":9,"737":84,"892":26,"1080":10,"1307":2,"1915":7,"2318":15,"2805":15,"3395":6,"4973":8,"6019":1,"7284":3,"8815":1,"10668":27,"12911":7,"18910":3,"22886":3,"27698":3,"33521":3,"71914":6,"273476":4,"330972":0}},"DESERIALIZE_ITEMS":{"bucket_count":50,"histogram_type":0,"sum":52294,"range":[1,2147483646],"values":{"0":0,"1":199,"3":66,"5":17,"8":10,"12":32,"19":23,"30":111,"47":18,"73":10,"113":33,"176":31,"274":6,"426":13,"662":3,"1029":1,"1599":3,"2485":6,"3862":0}},"DESERIALIZE_US":{"bucket_count":100,"histogram_type":0,"sum":7480,"range":[1,150000000],"values":{"0":185,"1":71,"2":66,"3":42,"4":50,"5":18,"6":10,"7":23,"8":27,"10":14,"12":8,"14":7,"17":7,"20":6,"24":8,"29":13,"35":6,"42":9,"50":4,"60":2,"263":1,"316":1,"549":1,"793":1,"953":2,"1146":0}},"GEOLOCATION_ERROR":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"MEMORY_RESIDENT_FAST":{"bucket_count":100,"histogram_type":0,"sum":4274352,"range":[32768,16777216],"values":{"58111":0,"61930":39,"132939":13,"141677":0}},"MEMORY_RESIDENT_PEAK":{"bucket_count":100,"histogram_type":0,"sum":4433360,"range":[32768,16777216],"values":{"58111":0,"61930":39,"141677":13,"150989":0}},"MEMORY_JS_GC_HEAP":{"bucket_count":200,"histogram_type":0,"sum":133120,"range":[1024,16777216],"values":{"0":0,"1024":39,"6925":13,"7273":0}},"GHOST_WINDOWS":{"bucket_count":32,"histogram_type":0,"sum":0,"range":[1,128],"values":{"0":52,"1":0}},"MEMORY_PHC_SLOP":{"bucket_count":48,"histogram_type":0,"sum":1055104,"range":[4096,8388608],"values":{"0":26,"29933":12,"41698":14,"49216":0}},"MEMORY_PHC_SLOTS_ALLOCATED":{"bucket_count":64,"histogram_type":0,"sum":66,"range":[1,16384],"values":{"0":26,"2":12,"3":14,"4":0}},"MEMORY_PHC_SLOTS_FREED":{"bucket_count":64,"histogram_type":0,"sum":761,"range":[1,16384],"values":{"0":3,"1":10,"2":2,"3":21,"4":3,"46":6,"53":7,"61":0}},"TOTAL_CONTENT_PAGE_LOAD_TIME":{"bucket_count":100,"histogram_type":0,"sum":159,"range":[100,30000],"values":{"142":0,"151":1,"160":0}},"SCRIPT_PRELOADER_REQUESTS":{"bucket_count":51,"histogram_type":5,"sum":216,"range":[1,50],"values":{"1":0,"2":108,"3":0}},"FX_ABOUTHOME_CACHE_CONSTRUCTION":{"bucket_count":100,"histogram_type":0,"sum":97,"range":[1,10000],"values":{"13":0,"14":1,"16":1,"18":1,"46":1,"50":0}},"INPUT_EVENT_RESPONSE_MS":{"bucket_count":50,"histogram_type":0,"sum":202,"range":[1,10000],"values":{"0":3,"1":8,"2":4,"3":10,"4":4,"5":5,"6":9,"7":2,"8":2,"14":2,"17":0}},"INPUT_EVENT_RESPONSE_COALESCED_MS":{"bucket_count":50,"histogram_type":0,"sum":102,"range":[1,10000],"values":{"0":1,"1":4,"2":2,"3":5,"4":2,"5":2,"6":5,"7":1,"8":1,"14":1,"17":0}},"MASTER_PASSWORD_ENABLED":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"WEBFONT_DOWNLOAD_TIME_AFTER_START":{"bucket_count":50,"histogram_type":0,"sum":977,"range":[1,60000],"values":{"224":0,"278":3,"345":0}},"JS_PAGELOAD_EXECUTION_MS":{"bucket_count":100,"histogram_type":0,"sum":23,"range":[1,60000],"values":{"21":0,"23":1,"25":0}},"JS_PAGELOAD_BASELINE_COMPILE_MS":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,10000],"values":{"0":1,"1":0}},"JS_PAGELOAD_PARSE_MS":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,10000],"values":{"0":1,"1":0}},"CONTENT_PAINT_TIME":{"bucket_count":50,"histogram_type":0,"sum":12,"range":[1,1000],"values":{"0":25,"1":2,"2":2,"6":1,"7":0}},"TIME_TO_NON_BLANK_PAINT_MS":{"bucket_count":100,"histogram_type":0,"sum":110,"range":[1,100000],"values":{"92":0,"102":1,"113":0}},"TIME_TO_FIRST_CONTENTFUL_PAINT_MS":{"bucket_count":100,"histogram_type":0,"sum":175,"range":[1,100000],"values":{"154":0,"171":1,"190":0}},"TIME_TO_DOM_LOADING_MS":{"bucket_count":100,"histogram_type":0,"sum":288,"range":[1,50000],"values":{"14":0,"15":1,"61":1,"192":1,"211":0}},"TIME_TO_DOM_INTERACTIVE_MS":{"bucket_count":100,"histogram_type":0,"sum":422,"range":[1,50000],"values":{"14":0,"15":1,"89":1,"309":1,"340":0}},"TIME_TO_DOM_CONTENT_LOADED_START_MS":{"bucket_count":100,"histogram_type":0,"sum":428,"range":[1,50000],"values":{"17":0,"19":1,"89":1,"309":1,"340":0}},"TIME_TO_DOM_CONTENT_LOADED_END_MS":{"bucket_count":100,"histogram_type":0,"sum":447,"range":[1,50000],"values":{"34":0,"37":1,"89":1,"309":1,"340":0}},"TIME_TO_DOM_COMPLETE_MS":{"bucket_count":100,"histogram_type":0,"sum":484,"range":[1,50000],"values":{"41":0,"45":1,"98":1,"309":1,"340":0}},"TIME_TO_LOAD_EVENT_START_MS":{"bucket_count":100,"histogram_type":0,"sum":484,"range":[1,50000],"values":{"41":0,"45":1,"98":1,"309":1,"340":0}},"TIME_TO_LOAD_EVENT_END_MS":{"bucket_count":100,"histogram_type":0,"sum":486,"range":[1,50000],"values":{"41":0,"45":1,"98":1,"309":1,"340":0}},"TIME_TO_RESPONSE_START_MS":{"bucket_count":100,"histogram_type":0,"sum":201,"range":[1,50000],"values":{"174":0,"192":1,"211":0}},"PERF_REQUEST_ANIMATION_CALLBACK_NON_PAGELOAD_MS":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,5000],"values":{"0":3,"1":0}},"APZ_ZOOM_ACTIVITY":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":3,"1":0}},"REL_PRELOAD_MISS_RATIO":{"bucket_count":51,"histogram_type":5,"sum":28,"range":[1,50],"values":{"0":25,"2":14,"3":0}}},"keyedHistograms":{"NETWORK_ASYNC_OPEN_CHILD_TO_TRANSACTION_PENDING_EXP_MS":{"0":{"bucket_count":50,"histogram_type":0,"sum":721,"range":[1,2000],"values":{"1":0,"2":2,"3":5,"4":1,"6":2,"86":3,"99":4,"113":0}},"1":{"bucket_count":50,"histogram_type":0,"sum":18,"range":[1,2000],"values":{"5":0,"6":3,"7":0}},"8":{"bucket_count":50,"histogram_type":0,"sum":2,"range":[1,2000],"values":{"1":0,"2":1,"3":0}},"10":{"bucket_count":50,"histogram_type":0,"sum":54,"range":[1,2000],"values":{"5":0,"6":9,"7":0}},"40":{"bucket_count":50,"histogram_type":0,"sum":2,"range":[1,2000],"values":{"1":0,"2":1,"3":0}},"120":{"bucket_count":50,"histogram_type":0,"sum":166,"range":[1,2000],"values":{"65":0,"75":2,"86":0}},"400":{"bucket_count":50,"histogram_type":0,"sum":6,"range":[1,2000],"values":{"0":1,"3":2,"4":0}}},"NETWORK_RESPONSE_START_PARENT_TO_CONTENT_EXP_MS":{"0":{"bucket_count":50,"histogram_type":0,"sum":27,"range":[1,2000],"values":{"0":11,"2":4,"3":2,"4":2,"5":1,"6":0}},"1":{"bucket_count":50,"histogram_type":0,"sum":2,"range":[1,2000],"values":{"0":2,"2":1,"3":0}},"8":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,2000],"values":{"0":1,"1":0}},"10":{"bucket_count":50,"histogram_type":0,"sum":117,"range":[1,2000],"values":{"9":0,"10":3,"11":1,"13":1,"15":3,"17":1,"19":0}},"40":{"bucket_count":50,"histogram_type":0,"sum":5,"range":[1,2000],"values":{"4":0,"5":1,"6":0}},"120":{"bucket_count":50,"histogram_type":0,"sum":14,"range":[1,2000],"values":{"6":0,"7":2,"8":0}},"400":{"bucket_count":50,"histogram_type":0,"sum":9,"range":[1,2000],"values":{"1":0,"2":1,"3":1,"4":1,"5":0}}},"NETWORK_RESPONSE_END_PARENT_TO_CONTENT_MS":{"0":{"bucket_count":50,"histogram_type":0,"sum":28,"range":[1,2000],"values":{"0":9,"1":2,"2":4,"3":2,"4":3,"5":0}},"1":{"bucket_count":50,"histogram_type":0,"sum":2,"range":[1,2000],"values":{"0":2,"2":1,"3":0}},"8":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,2000],"values":{"0":1,"1":0}},"10":{"bucket_count":50,"histogram_type":0,"sum":115,"range":[1,2000],"values":{"9":0,"10":4,"13":1,"15":4,"17":0}},"40":{"bucket_count":50,"histogram_type":0,"sum":7,"range":[1,2000],"values":{"6":0,"7":1,"8":0}},"120":{"bucket_count":50,"histogram_type":0,"sum":14,"range":[1,2000],"values":{"6":0,"7":2,"8":0}},"400":{"bucket_count":50,"histogram_type":0,"sum":5,"range":[1,2000],"values":{"0":1,"2":1,"3":1,"4":0}}}},"scalars":{"telemetry.discarded.scalar_actions":0,"power.total_thread_wakeups":7736,"telemetry.discarded.keyed_accumulations":0,"telemetry.discarded.keyed_scalar_actions":0,"telemetry.discarded.child_events":0,"power.total_cpu_time_ms":1010,"telemetry.discarded.accumulations":0,"networking.http3_enabled":true},"keyedScalars":{"power.wakeups_per_process_type":{"web.background":712,"web.foreground":371,"prealloc":2624,"privilegedabout":4029},"power.cpu_time_per_process_type_ms":{"web.background":83,"web.foreground":67,"prealloc":285,"privilegedabout":575}}},"extension":{"histograms":{"CYCLE_COLLECTOR_MAX_PAUSE":{"bucket_count":50,"histogram_type":0,"sum":2,"range":[1,10000],"values":{"0":4,"2":1,"3":0}},"GC_ZONE_COUNT":{"bucket_count":20,"histogram_type":0,"sum":36,"range":[1,100],"values":{"5":0,"6":4,"11":1,"14":0}},"GC_ZONES_COLLECTED":{"bucket_count":20,"histogram_type":0,"sum":31,"range":[1,100],"values":{"0":0,"1":1,"6":3,"11":1,"14":0}},"GC_MS":{"bucket_count":50,"histogram_type":0,"sum":25,"range":[1,10000],"values":{"3":0,"4":2,"5":2,"7":1,"8":0}},"GC_IN_PROGRESS_MS":{"bucket_count":50,"histogram_type":0,"sum":284,"range":[1,10000],"values":{"34":0,"40":1,"57":4,"68":0}},"GC_BUDGET_WAS_INCREASED":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":20,"1":0}},"GC_SLICE_WAS_LONG":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":20,"1":0}},"GC_MAX_PAUSE_MS_2":{"bucket_count":50,"histogram_type":0,"sum":22,"range":[1,10000],"values":{"3":0,"4":3,"5":2,"6":0}},"GC_PREPARE_MS":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":5,"1":0}},"GC_MARK_MS":{"bucket_count":50,"histogram_type":0,"sum":11,"range":[1,10000],"values":{"1":0,"2":4,"3":1,"4":0}},"GC_SWEEP_MS":{"bucket_count":50,"histogram_type":0,"sum":7,"range":[1,10000],"values":{"0":0,"1":3,"2":2,"3":0}},"GC_COMPACT_MS":{"bucket_count":50,"histogram_type":0,"sum":3,"range":[1,10000],"values":{"2":0,"3":1,"4":0}},"GC_SLICE_MS":{"bucket_count":50,"histogram_type":0,"sum":25,"range":[1,10000],"values":{"0":14,"3":1,"4":3,"5":2,"6":0}},"GC_MMU_50":{"bucket_count":20,"histogram_type":1,"sum":442,"range":[1,100],"values":{"78":0,"84":3,"89":2,"95":0}},"GC_MINOR_US":{"bucket_count":100,"histogram_type":0,"sum":2578,"range":[1,1000000],"values":{"1":0,"2":1,"3":1,"4":1,"5":1,"7":1,"13":2,"217":1,"281":1,"364":2,"471":1,"695":1,"791":0}},"GC_TIME_BETWEEN_SLICES_MS":{"bucket_count":50,"histogram_type":0,"sum":253,"range":[1,2000],"values":{"0":1,"15":4,"17":4,"19":6,"22":0}},"GC_SLICE_COUNT":{"bucket_count":50,"histogram_type":0,"sum":20,"range":[1,200],"values":{"2":0,"3":1,"4":3,"5":1,"6":0}},"DESERIALIZE_BYTES":{"bucket_count":100,"histogram_type":0,"sum":1377864,"range":[16,2147483646],"values":{"0":0,"16":240,"23":15,"34":195,"41":18,"50":4,"61":5,"74":4,"90":1,"109":10,"132":1,"160":1,"194":10,"235":3,"284":7,"416":1,"503":136,"609":90,"737":50,"892":14,"1080":7,"1307":4,"1582":15,"1915":5,"2318":9,"2805":7,"3395":5,"4109":10,"4973":6,"6019":4,"7284":8,"8815":8,"10668":5,"12911":1,"15625":1,"18910":5,"27698":1,"40569":3,"49098":1,"400557":1,"484771":0}},"DESERIALIZE_ITEMS":{"bucket_count":50,"histogram_type":0,"sum":38201,"range":[1,2147483646],"values":{"0":0,"1":256,"3":236,"5":10,"8":2,"12":229,"19":34,"30":49,"47":23,"73":12,"113":14,"176":12,"274":11,"426":11,"662":6,"1029":4,"1599":1,"2485":1,"3862":0}},"DESERIALIZE_US":{"bucket_count":100,"histogram_type":0,"sum":2838,"range":[1,150000000],"values":{"0":464,"1":171,"2":59,"3":55,"4":38,"5":13,"6":17,"7":14,"8":19,"10":9,"12":4,"14":18,"17":9,"20":3,"24":3,"29":3,"35":3,"42":2,"50":2,"60":2,"87":1,"105":1,"316":1,"380":0}},"GEOLOCATION_ERROR":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"MEMORY_RESIDENT_FAST":{"bucket_count":100,"histogram_type":0,"sum":1221200,"range":[32768,16777216],"values":{"85139":0,"90735":13,"96699":0}},"MEMORY_RESIDENT_PEAK":{"bucket_count":100,"histogram_type":0,"sum":1262768,"range":[32768,16777216],"values":{"90735":0,"96699":13,"103055":0}},"MEMORY_JS_GC_HEAP":{"bucket_count":200,"histogram_type":0,"sum":80896,"range":[1024,16777216],"values":{"5693":0,"5979":12,"6925":1,"7273":0}},"GHOST_WINDOWS":{"bucket_count":32,"histogram_type":0,"sum":0,"range":[1,128],"values":{"0":13,"1":0}},"MEMORY_PHC_SLOP":{"bucket_count":48,"histogram_type":0,"sum":1489512,"range":[4096,8388608],"values":{"95512":0,"112731":13,"133055":0}},"MEMORY_PHC_SLOTS_ALLOCATED":{"bucket_count":64,"histogram_type":0,"sum":92,"range":[1,16384],"values":{"6":0,"7":12,"8":1,"9":0}},"MEMORY_PHC_SLOTS_FREED":{"bucket_count":64,"histogram_type":0,"sum":255,"range":[1,16384],"values":{"13":0,"15":1,"17":1,"20":11,"23":0}},"SCRIPT_PRELOADER_REQUESTS":{"bucket_count":51,"histogram_type":5,"sum":52,"range":[1,50],"values":{"1":0,"2":26,"3":0}},"MASTER_PASSWORD_ENABLED":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"JS_PAGELOAD_PARSE_MS":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,10000],"values":{"0":4,"1":0}},"CONTENT_PAINT_TIME":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":16,"1":0}},"TIME_TO_DOM_LOADING_MS":{"bucket_count":100,"histogram_type":0,"sum":484,"range":[1,50000],"values":{"10":0,"11":1,"81":3,"211":1,"232":0}},"TIME_TO_DOM_INTERACTIVE_MS":{"bucket_count":100,"histogram_type":0,"sum":1167,"range":[1,50000],"values":{"25":0,"28":1,"281":4,"309":0}},"TIME_TO_DOM_CONTENT_LOADED_START_MS":{"bucket_count":100,"histogram_type":0,"sum":1170,"range":[1,50000],"values":{"25":0,"28":1,"281":4,"309":0}},"TIME_TO_DOM_CONTENT_LOADED_END_MS":{"bucket_count":100,"histogram_type":0,"sum":1170,"range":[1,50000],"values":{"25":0,"28":1,"281":4,"309":0}},"TIME_TO_DOM_COMPLETE_MS":{"bucket_count":100,"histogram_type":0,"sum":1175,"range":[1,50000],"values":{"25":0,"28":1,"281":4,"309":0}},"TIME_TO_LOAD_EVENT_START_MS":{"bucket_count":100,"histogram_type":0,"sum":1175,"range":[1,50000],"values":{"25":0,"28":1,"281":4,"309":0}},"TIME_TO_LOAD_EVENT_END_MS":{"bucket_count":100,"histogram_type":0,"sum":1175,"range":[1,50000],"values":{"25":0,"28":1,"281":4,"309":0}},"REL_PRELOAD_MISS_RATIO":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":20,"1":0}}},"keyedHistograms":{},"scalars":{"telemetry.discarded.scalar_actions":0,"power.total_thread_wakeups":2651,"telemetry.discarded.keyed_scalar_actions":0,"telemetry.discarded.keyed_accumulations":0,"telemetry.discarded.child_events":0,"power.total_cpu_time_ms":250,"telemetry.discarded.accumulations":0,"networking.http3_enabled":true},"keyedScalars":{"power.wakeups_per_process_type":{"extension":2651},"power.cpu_time_per_process_type_ms":{"extension":250}}},"dynamic":{"scalars":{},"keyedScalars":{}},"gpu":{"histograms":{},"keyedHistograms":{},"scalars":{},"keyedScalars":{}},"socket":{"histograms":{},"keyedHistograms":{},"scalars":{"telemetry.discarded.scalar_actions":0,"power.total_thread_wakeups":42,"telemetry.discarded.keyed_scalar_actions":0,"telemetry.discarded.keyed_accumulations":0,"telemetry.discarded.child_events":0,"power.total_cpu_time_ms":80,"telemetry.discarded.accumulations":0},"keyedScalars":{"power.wakeups_per_process_type":{"socket":42},"power.cpu_time_per_process_type_ms":{"socket":80}}},"utility":{"histograms":{},"keyedHistograms":{},"scalars":{"telemetry.discarded.scalar_actions":0,"power.total_thread_wakeups":216,"telemetry.discarded.keyed_accumulations":0,"telemetry.discarded.keyed_scalar_actions":0,"telemetry.discarded.child_events":0,"power.total_cpu_time_ms":98,"telemetry.discarded.accumulations":0},"keyedScalars":{"power.wakeups_per_process_type":{"utility":216},"power.cpu_time_per_process_type_ms":{"utility":98}}}},"histograms":{"A11Y_INSTANTIATED_FLAG":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"CHILD_PROCESS_LAUNCH_MS":{"bucket_count":100,"histogram_type":0,"sum":139,"range":[1,64000],"values":{"14":0,"15":2,"17":5,"19":1,"21":0}},"COMPOSITE_TIME":{"bucket_count":50,"histogram_type":0,"sum":218,"range":[1,1000],"values":{"0":26,"1":58,"2":8,"3":6,"4":2,"8":1,"9":1,"14":1,"33":1,"47":1,"53":0}},"CONTENT_PROCESS_LAUNCH_MAINTHREAD_MS":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,64000],"values":{"0":3,"1":0}},"CONTENT_PROCESS_LAUNCH_TOTAL_MS":{"bucket_count":100,"histogram_type":0,"sum":55,"range":[1,64000],"values":{"15":0,"17":2,"19":1,"21":0}},"CONTENT_PROCESS_SYNC_LAUNCH_MS":{"bucket_count":100,"histogram_type":0,"sum":52,"range":[1,64000],"values":{"15":0,"17":3,"19":0}},"CONTENT_PROCESS_LAUNCH_IS_SYNC":{"bucket_count":3,"histogram_type":2,"sum":3,"range":[1,2],"values":{"0":3,"1":3,"2":0}},"CYCLE_COLLECTOR_MAX_PAUSE":{"bucket_count":50,"histogram_type":0,"sum":113,"range":[1,10000],"values":{"1":0,"2":7,"4":3,"5":4,"6":6,"8":2,"14":1,"17":0}},"GC_ZONE_COUNT":{"bucket_count":20,"histogram_type":0,"sum":39,"range":[1,100],"values":{"1":0,"2":18,"3":1,"4":0}},"GC_ZONES_COLLECTED":{"bucket_count":20,"histogram_type":0,"sum":27,"range":[1,100],"values":{"0":0,"1":12,"2":6,"3":1,"4":0}},"GC_MS":{"bucket_count":50,"histogram_type":0,"sum":230,"range":[1,10000],"values":{"4":0,"5":1,"7":1,"8":2,"10":4,"12":4,"14":5,"17":2,"20":0}},"GC_IN_PROGRESS_MS":{"bucket_count":50,"histogram_type":0,"sum":1239,"range":[1,10000],"values":{"34":0,"40":1,"48":3,"57":4,"68":11,"81":0}},"GC_BUDGET_WAS_INCREASED":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":82,"1":0}},"GC_SLICE_WAS_LONG":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":82,"1":0}},"GC_MAX_PAUSE_MS_2":{"bucket_count":50,"histogram_type":0,"sum":204,"range":[1,10000],"values":{"4":0,"5":1,"7":2,"8":4,"10":4,"12":5,"14":3,"17":0}},"GC_PREPARE_MS":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":19,"1":0}},"GC_MARK_MS":{"bucket_count":50,"histogram_type":0,"sum":182,"range":[1,10000],"values":{"4":0,"5":3,"6":2,"7":1,"8":2,"10":4,"12":5,"14":2,"17":0}},"GC_SWEEP_MS":{"bucket_count":50,"histogram_type":0,"sum":42,"range":[1,10000],"values":{"0":0,"1":8,"2":4,"3":5,"4":1,"7":1,"8":0}},"GC_COMPACT_MS":{"bucket_count":50,"histogram_type":0,"sum":6,"range":[1,10000],"values":{"5":0,"6":1,"7":0}},"GC_SLICE_MS":{"bucket_count":50,"histogram_type":0,"sum":224,"range":[1,10000],"values":{"0":57,"2":2,"3":2,"4":1,"5":1,"6":1,"7":2,"8":4,"10":4,"12":5,"14":3,"17":0}},"GC_MMU_50":{"bucket_count":20,"histogram_type":1,"sum":1414,"range":[1,100],"values":{"56":0,"62":2,"67":7,"73":5,"78":3,"84":2,"89":0}},"GC_MINOR_US":{"bucket_count":100,"histogram_type":0,"sum":35634,"range":[1,1000000],"values":{"0":0,"1":1,"2":3,"3":1,"25":1,"28":2,"32":1,"36":1,"53":3,"60":2,"68":3,"77":5,"88":2,"100":5,"114":7,"130":3,"148":4,"168":8,"191":5,"217":1,"247":2,"281":3,"320":4,"364":1,"414":2,"610":2,"695":2,"1026":1,"1514":2,"1963":2,"3300":1,"9326":1,"10619":0}},"GC_TIME_BETWEEN_SLICES_MS":{"bucket_count":50,"histogram_type":0,"sum":997,"range":[1,2000],"values":{"0":9,"1":1,"4":1,"6":1,"15":4,"17":7,"19":40,"22":0}},"GC_SLICE_COUNT":{"bucket_count":50,"histogram_type":0,"sum":82,"range":[1,200],"values":{"2":0,"3":1,"4":15,"5":1,"7":2,"8":0}},"DESERIALIZE_BYTES":{"bucket_count":100,"histogram_type":0,"sum":10054440,"range":[16,2147483646],"values":{"0":0,"16":543,"23":8,"34":4,"41":7,"50":13,"61":12,"74":19,"90":59,"109":48,"132":12,"160":5,"194":13,"235":127,"284":971,"344":376,"416":576,"503":310,"609":337,"737":937,"892":207,"1080":239,"1307":72,"1582":158,"1915":196,"2318":235,"2805":53,"3395":36,"4109":42,"4973":26,"6019":16,"7284":60,"8815":161,"10668":13,"12911":6,"15625":23,"18910":15,"22886":15,"27698":3,"33521":7,"40569":5,"49098":15,"87033":1,"105331":2,"127476":1,"225968":1,"273476":0}},"DESERIALIZE_ITEMS":{"bucket_count":50,"histogram_type":0,"sum":444358,"range":[1,2147483646],"values":{"0":0,"1":559,"3":51,"5":160,"8":272,"12":1072,"19":1166,"30":1211,"47":556,"73":369,"113":154,"176":74,"274":45,"426":209,"662":38,"1029":20,"1599":26,"2485":1,"6002":1,"9328":1,"14498":0}},"DESERIALIZE_US":{"bucket_count":100,"histogram_type":0,"sum":25421,"range":[1,150000000],"values":{"0":1390,"1":2221,"2":759,"3":367,"4":219,"5":157,"6":124,"7":89,"8":123,"10":81,"12":50,"14":68,"17":57,"20":72,"24":79,"29":25,"35":24,"42":15,"50":14,"60":15,"72":12,"87":8,"105":6,"126":4,"151":1,"182":1,"219":1,"457":1,"549":1,"660":1,"793":0}},"GEOLOCATION_ERROR":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"MEMORY_RESIDENT_FAST":{"bucket_count":100,"histogram_type":0,"sum":5720384,"range":[32768,16777216],"values":{"392310":0,"418095":12,"445575":1,"474861":0}},"MEMORY_RESIDENT_PEAK":{"bucket_count":100,"histogram_type":0,"sum":7044544,"range":[32768,16777216],"values":{"506072":0,"539334":13,"574782":0}},"MEMORY_TOTAL":{"bucket_count":100,"histogram_type":0,"sum":8218169,"range":[32768,16777216],"values":{"574782":0,"612560":12,"652821":1,"695728":0}},"MEMORY_JS_GC_HEAP":{"bucket_count":200,"histogram_type":0,"sum":344064,"range":[1024,16777216],"values":{"23581":0,"24765":12,"36652":1,"38493":0}},"GHOST_WINDOWS":{"bucket_count":32,"histogram_type":0,"sum":0,"range":[1,128],"values":{"0":13,"1":0}},"MEMORY_PHC_SLOP":{"bucket_count":48,"histogram_type":0,"sum":6084640,"range":[4096,8388608],"values":{"359707":0,"424556":12,"501096":1,"591435":0}},"MEMORY_PHC_SLOTS_ALLOCATED":{"bucket_count":64,"histogram_type":0,"sum":375,"range":[1,16384],"values":{"23":0,"26":7,"30":6,"35":0}},"MEMORY_PHC_SLOTS_FREED":{"bucket_count":64,"histogram_type":0,"sum":457,"range":[1,16384],"values":{"26":0,"30":6,"35":7,"40":0}},"PROCESS_LIFETIME":{"bucket_count":24,"histogram_type":0,"sum":831,"range":[15,86400],"values":{"0":1,"771":1,"1142":0}},"MOUSEUP_FOLLOWED_BY_CLICK_PRESENT_LATENCY":{"bucket_count":50,"histogram_type":0,"sum":55,"range":[1,200000],"values":{"17":0,"22":1,"28":1,"36":0}},"FONT_FINGERPRINTING_PER_TAB":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"HTTP_KBREAD_PER_CONN2":{"bucket_count":50,"histogram_type":0,"sum":14358,"range":[1,100000],"values":{"0":231,"1":5,"3":2,"20":1,"457":1,"13255":1,"16592":0}},"HTTP_TRANSACTION_IS_SSL":{"bucket_count":3,"histogram_type":2,"sum":168,"range":[1,2],"values":{"0":1056,"1":168,"2":0}},"HTTP_PAGELOAD_IS_SSL":{"bucket_count":3,"histogram_type":2,"sum":3,"range":[1,2],"values":{"0":0,"1":3,"2":0}},"TLS_EARLY_DATA_NEGOTIATED":{"bucket_count":4,"histogram_type":1,"sum":0,"range":[1,3],"values":{"0":46,"1":0}},"SSL_HANDSHAKE_VERSION":{"bucket_count":17,"histogram_type":1,"sum":238,"range":[1,16],"values":{"2":0,"3":18,"4":46,"5":0}},"SSL_HANDSHAKE_PRIVACY":{"bucket_count":17,"histogram_type":1,"sum":112,"range":[1,16],"values":{"0":12,"1":19,"2":6,"3":27,"4":0}},"SSL_HANDSHAKE_RESULT":{"bucket_count":673,"histogram_type":1,"sum":0,"range":[1,672],"values":{"0":64,"1":0}},"SSL_HANDSHAKE_RESULT_FIRST_TRY":{"bucket_count":673,"histogram_type":1,"sum":0,"range":[1,672],"values":{"0":63,"1":0}},"SSL_HANDSHAKE_RESULT_CONSERVATIVE":{"bucket_count":673,"histogram_type":1,"sum":0,"range":[1,672],"values":{"0":17,"1":0}},"SSL_HANDSHAKE_RESULT_ECH_GREASE":{"bucket_count":673,"histogram_type":1,"sum":0,"range":[1,672],"values":{"0":47,"1":0}},"SSL_TIME_UNTIL_READY":{"bucket_count":200,"histogram_type":0,"sum":5478,"range":[1,60000],"values":{"32":0,"33":1,"41":2,"43":2,"45":1,"58":6,"61":9,"64":12,"67":5,"70":2,"73":1,"76":2,"80":5,"84":1,"88":2,"96":1,"105":1,"115":3,"120":1,"126":1,"173":1,"198":1,"227":1,"237":2,"259":1,"271":0}},"SSL_TIME_UNTIL_READY_FIRST_TRY":{"bucket_count":200,"histogram_type":0,"sum":5414,"range":[1,60000],"values":{"32":0,"33":1,"41":2,"43":2,"45":1,"58":6,"61":9,"64":11,"67":5,"70":2,"73":1,"76":2,"80":5,"84":1,"88":2,"96":1,"105":1,"115":3,"120":1,"126":1,"173":1,"198":1,"227":1,"237":2,"259":1,"271":0}},"SSL_TIME_UNTIL_READY_CONSERVATIVE":{"bucket_count":200,"histogram_type":0,"sum":1680,"range":[1,60000],"values":{"41":0,"43":1,"58":2,"61":3,"64":1,"76":1,"80":2,"84":1,"96":1,"105":1,"115":2,"237":1,"259":1,"271":0}},"SSL_TIME_UNTIL_READY_ECH_GREASE":{"bucket_count":200,"histogram_type":0,"sum":3798,"range":[1,60000],"values":{"32":0,"33":1,"41":2,"43":1,"45":1,"58":4,"61":6,"64":11,"67":5,"70":2,"73":1,"76":1,"80":3,"88":2,"115":1,"120":1,"126":1,"173":1,"198":1,"227":1,"237":1,"248":0}},"SSL_BYTES_BEFORE_CERT_CALLBACK":{"bucket_count":64,"histogram_type":0,"sum":175394,"range":[1,32000],"values":{"2449":0,"2849":31,"3314":11,"3855":1,"4484":4,"5216":2,"6067":1,"7057":0}},"SSL_RESUMED_SESSION":{"bucket_count":3,"histogram_type":2,"sum":14,"range":[1,2],"values":{"0":50,"1":14,"2":0}},"CERT_VALIDATION_HTTP_REQUEST_RESULT":{"bucket_count":17,"histogram_type":1,"sum":33,"range":[1,16],"values":{"0":0,"1":33,"2":0}},"CERT_VALIDATION_HTTP_REQUEST_SUCCEEDED_TIME":{"bucket_count":200,"histogram_type":0,"sum":1716,"range":[1,60000],"values":{"19":0,"20":2,"22":2,"23":1,"24":1,"25":1,"26":2,"27":1,"28":2,"29":1,"30":1,"32":1,"35":1,"37":1,"39":1,"41":1,"43":2,"45":1,"47":1,"61":1,"70":1,"73":1,"76":2,"100":1,"120":1,"132":1,"138":2,"144":0}},"SSL_KEY_EXCHANGE_ALGORITHM_FULL":{"bucket_count":17,"histogram_type":1,"sum":200,"range":[1,16],"values":{"3":0,"4":50,"5":0}},"SSL_KEY_EXCHANGE_ALGORITHM_RESUMED":{"bucket_count":17,"histogram_type":1,"sum":56,"range":[1,16],"values":{"3":0,"4":14,"5":0}},"CERT_REVOCATION_MECHANISMS":{"bucket_count":51,"histogram_type":5,"sum":150,"range":[1,50],"values":{"0":0,"1":3,"2":24,"3":33,"4":0}},"SPDY_KBREAD_PER_CONN2":{"bucket_count":50,"histogram_type":0,"sum":11144,"range":[1,100000],"values":{"0":14,"1":4,"2":2,"3":1,"4":1,"5":1,"6":2,"8":5,"13":2,"25":2,"49":1,"61":1,"119":1,"292":1,"365":2,"457":1,"716":1,"1404":1,"6758":1,"8459":0}},"HTTP_CHANNEL_DISPOSITION":{"bucket_count":17,"histogram_type":1,"sum":4803,"range":[1,16],"values":{"0":378,"2":1056,"8":3,"9":113,"10":165,"11":0}},"HTTP_CHANNEL_ONSTART_SUCCESS":{"bucket_count":3,"histogram_type":2,"sum":1341,"range":[1,2],"values":{"0":378,"1":1341,"2":0}},"TRANSACTION_WAIT_TIME_HTTP2_SUP_HTTP3":{"bucket_count":100,"histogram_type":0,"sum":38,"range":[1,5000],"values":{"0":7,"38":1,"41":0}},"HTTP3_0RTT_STATE":{"bucket_count":6,"histogram_type":1,"sum":0,"range":[1,5],"values":{"0":10,"1":0}},"DNS_LOOKUP_METHOD2":{"bucket_count":17,"histogram_type":1,"sum":13366,"range":[1,16],"values":{"0":0,"1":1099,"6":1607,"7":375,"8":0}},"DNS_LOOKUP_TIME":{"bucket_count":50,"histogram_type":0,"sum":44882,"range":[1,60000],"values":{"0":6,"1":68,"2":104,"3":87,"4":95,"5":90,"6":82,"7":73,"9":25,"11":40,"14":14,"17":19,"21":26,"26":21,"32":26,"40":36,"50":42,"62":63,"77":53,"95":91,"118":61,"146":31,"181":15,"278":3,"345":0}},"DNS_NATIVE_LOOKUP_TIME":{"bucket_count":50,"histogram_type":0,"sum":45784,"range":[1,60000],"values":{"0":2,"1":48,"2":65,"3":75,"4":97,"5":80,"6":80,"7":97,"9":43,"11":49,"14":26,"17":19,"21":24,"26":24,"32":26,"40":36,"50":37,"62":65,"77":54,"95":94,"118":61,"146":31,"181":15,"278":3,"345":0}},"DNS_NATIVE_QUEUING":{"bucket_count":50,"histogram_type":0,"sum":7359,"range":[1,60000],"values":{"0":1129,"1":290,"2":141,"3":24,"4":3,"5":4,"6":4,"7":4,"9":7,"26":1,"50":1,"77":1,"95":8,"118":5,"146":10,"181":9,"224":1,"278":4,"345":0}},"DNS_FAILED_LOOKUP_TIME":{"bucket_count":50,"histogram_type":0,"sum":14839,"range":[1,60000],"values":{"0":16,"1":105,"2":53,"3":39,"4":26,"5":26,"6":24,"7":26,"9":12,"11":4,"14":6,"17":2,"21":5,"26":2,"32":6,"40":10,"50":11,"62":18,"77":13,"95":24,"118":21,"146":14,"181":5,"224":4,"278":1,"345":0}},"DNS_BLACKLIST_COUNT":{"bucket_count":20,"histogram_type":1,"sum":0,"range":[1,21],"values":{"0":1485,"1":0}},"TAB_COUNT":{"bucket_count":100,"histogram_type":0,"sum":2,"range":[1,1000],"values":{"1":0,"2":1,"3":0}},"LOADED_TAB_COUNT":{"bucket_count":100,"histogram_type":0,"sum":2,"range":[1,1000],"values":{"1":0,"2":1,"3":0}},"STARTUP_CACHE_REQUESTS":{"bucket_count":51,"histogram_type":5,"sum":1220,"range":[1,50],"values":{"0":2,"2":610,"3":0}},"SCRIPT_PRELOADER_REQUESTS":{"bucket_count":51,"histogram_type":5,"sum":1204,"range":[1,50],"values":{"0":32,"2":602,"3":0}},"NETWORK_ID_ONLINE":{"bucket_count":51,"histogram_type":5,"sum":288,"range":[1,50],"values":{"0":0,"1":288,"2":0}},"URLCLASSIFIER_LOOKUP_TIME_2":{"bucket_count":30,"histogram_type":0,"sum":7,"range":[1,5000],"values":{"0":34,"1":7,"2":0}},"URLCLASSIFIER_SHUTDOWN_TIME":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,60000],"values":{"0":1,"1":0}},"URLCLASSIFIER_CL_CHECK_TIME":{"bucket_count":10,"histogram_type":0,"sum":1,"range":[1,500],"values":{"0":42,"1":1,"2":0}},"URLCLASSIFIER_ASYNC_CLASSIFYLOCAL_TIME":{"bucket_count":30,"histogram_type":0,"sum":2,"range":[1,60000],"values":{"0":1,"2":1,"3":0}},"URLCLASSIFIER_VLPS_FALLOCATE_TIME":{"bucket_count":10,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":19,"1":0}},"URLCLASSIFIER_VLPS_CONSTRUCT_TIME":{"bucket_count":15,"histogram_type":0,"sum":13,"range":[1,5000],"values":{"0":3,"1":1,"8":1,"15":0}},"PLACES_FRECENCY_RECALC_CHUNK_TIME_MS":{"bucket_count":10,"histogram_type":0,"sum":3,"range":[50,10000],"values":{"0":1,"50":0}},"UPDATE_CHECK_CODE_NOTIFY":{"bucket_count":51,"histogram_type":1,"sum":39,"range":[1,50],"values":{"38":0,"39":1,"40":0}},"UPDATE_LAST_NOTIFY_INTERVAL_DAYS_NOTIFY":{"bucket_count":30,"histogram_type":0,"sum":0,"range":[1,180],"values":{"0":1,"1":0}},"UPDATE_PING_COUNT_NOTIFY":{"bucket_count":3,"histogram_type":4,"sum":1,"range":[1,2],"values":{"0":1,"1":0}},"FX_TAB_SWITCH_UPDATE_MS":{"bucket_count":20,"histogram_type":0,"sum":6,"range":[1,1000],"values":{"2":0,"3":2,"4":0}},"FX_TAB_SWITCH_TOTAL_E10S_MS":{"bucket_count":20,"histogram_type":0,"sum":11,"range":[1,1000],"values":{"0":1,"9":1,"13":0}},"FX_TAB_SWITCH_COMPOSITE_E10S_MS":{"bucket_count":20,"histogram_type":0,"sum":30,"range":[1,1000],"values":{"19":0,"27":1,"39":0}},"FX_NUMBER_OF_UNIQUE_SITE_ORIGINS_PER_DOCUMENT":{"bucket_count":50,"histogram_type":0,"sum":1,"range":[1,100],"values":{"0":0,"1":1,"2":0}},"FX_PAGE_LOAD_MS_2":{"bucket_count":200,"histogram_type":1,"sum":268,"range":[1,10000],"values":{"203":0,"254":1,"304":0}},"INPUT_EVENT_RESPONSE_MS":{"bucket_count":50,"histogram_type":0,"sum":583,"range":[1,10000],"values":{"0":513,"1":100,"2":6,"3":4,"4":2,"5":4,"8":3,"10":3,"12":6,"14":6,"17":4,"40":1,"48":2,"57":0}},"INPUT_EVENT_RESPONSE_COALESCED_MS":{"bucket_count":50,"histogram_type":0,"sum":380,"range":[1,10000],"values":{"0":273,"1":60,"2":5,"3":2,"4":2,"5":2,"8":1,"10":1,"14":1,"24":2,"29":1,"48":1,"114":1,"135":0}},"FX_SESSION_RESTORE_STARTUP_INIT_SESSION_MS":{"bucket_count":20,"histogram_type":0,"sum":0,"range":[1,30000],"values":{"0":1,"1":0}},"FX_SESSION_RESTORE_STARTUP_ONLOAD_INITIAL_WINDOW_MS":{"bucket_count":20,"histogram_type":0,"sum":26,"range":[1,30000],"values":{"12":0,"21":1,"37":0}},"FX_SESSION_RESTORE_ALL_FILES_CORRUPT":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"MS_MESSAGE_REQUEST_TIME_MS":{"bucket_count":20,"histogram_type":0,"sum":1,"range":[1,2000],"values":{"0":9,"1":1,"2":0}},"SEARCH_SERVICE_INIT2_MS":{"bucket_count":50,"histogram_type":0,"sum":167,"range":[1,10000],"values":{"135":0,"160":1,"190":0}},"SSL_SUCCESFUL_CERT_VALIDATION_TIME_MOZILLAPKIX":{"bucket_count":50,"histogram_type":0,"sum":2010,"range":[1,60000],"values":{"0":11,"1":10,"2":6,"21":5,"26":6,"32":6,"40":5,"50":1,"62":2,"77":3,"95":1,"118":1,"181":3,"224":0}},"MEDIA_GMP_UPDATE_XML_FETCH_RESULT":{"bucket_count":51,"histogram_type":5,"sum":6,"range":[1,50],"values":{"1":0,"2":3,"3":0}},"BROWSER_IS_USER_DEFAULT":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"BROWSER_IS_USER_DEFAULT_ERROR":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"BROWSER_SET_DEFAULT_DIALOG_PROMPT_RAWCOUNT":{"bucket_count":15,"histogram_type":0,"sum":0,"range":[1,250],"values":{"0":1,"1":0}},"BROWSER_SET_DEFAULT_ALWAYS_CHECK":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"MIXED_CONTENT_IMAGES":{"bucket_count":51,"histogram_type":5,"sum":26,"range":[1,50],"values":{"1":0,"2":13,"3":0}},"CONTENT_SIGNATURE_VERIFICATION_STATUS":{"bucket_count":21,"histogram_type":1,"sum":0,"range":[1,20],"values":{"0":114,"1":0}},"NETWORK_CACHE_V2_MISS_TIME_MS":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,10000],"values":{"0":30,"1":0}},"NETWORK_CACHE_V2_HIT_TIME_MS":{"bucket_count":50,"histogram_type":0,"sum":1,"range":[1,10000],"values":{"0":2,"1":1,"2":0}},"NETWORK_COOKIE_UNICODE_BYTE":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":4,"1":0}},"TLS_CIPHER_SUITE":{"bucket_count":65,"histogram_type":1,"sum":1076,"range":[1,64],"values":{"11":0,"12":2,"14":16,"18":46,"19":0}},"SSL_KEA_ECDHE_CURVE_FULL":{"bucket_count":37,"histogram_type":1,"sum":1444,"range":[1,36],"values":{"22":0,"23":1,"29":49,"30":0}},"SSL_AUTH_ALGORITHM_FULL":{"bucket_count":17,"histogram_type":1,"sum":341,"range":[1,16],"values":{"3":0,"4":3,"7":47,"8":0}},"SSL_AUTH_RSA_KEY_SIZE_FULL":{"bucket_count":25,"histogram_type":1,"sum":564,"range":[1,24],"values":{"11":0,"12":47,"13":0}},"SSL_AUTH_ECDSA_CURVE_FULL":{"bucket_count":37,"histogram_type":1,"sum":69,"range":[1,36],"values":{"22":0,"23":3,"24":0}},"SSL_REASONS_FOR_NOT_FALSE_STARTING":{"bucket_count":513,"histogram_type":1,"sum":0,"range":[1,512],"values":{"0":3,"1":0}},"SSL_HANDSHAKE_TYPE":{"bucket_count":9,"histogram_type":1,"sum":208,"range":[1,8],"values":{"0":0,"1":14,"2":3,"4":47,"5":0}},"SSL_OCSP_STAPLING":{"bucket_count":9,"histogram_type":1,"sum":117,"range":[1,8],"values":{"0":0,"1":3,"2":57,"3":0}},"SSL_CERT_ERROR_OVERRIDES":{"bucket_count":25,"histogram_type":1,"sum":60,"range":[1,24],"values":{"0":0,"1":60,"2":0}},"SSL_PERMANENT_CERT_ERROR_OVERRIDES":{"bucket_count":10,"histogram_type":0,"sum":0,"range":[1,1024],"values":{"0":1,"1":0}},"CERT_EV_STATUS":{"bucket_count":11,"histogram_type":1,"sum":60,"range":[1,10],"values":{"0":0,"1":60,"2":0}},"CERT_VALIDATION_SUCCESS_BY_CA":{"bucket_count":257,"histogram_type":1,"sum":10567,"range":[1,256],"values":{"48":0,"49":6,"181":43,"183":2,"236":9,"237":0}},"CERT_PINNING_RESULTS":{"bucket_count":3,"histogram_type":2,"sum":6,"range":[1,2],"values":{"0":0,"1":6,"2":0}},"CERT_PINNING_MOZ_RESULTS_BY_HOST":{"bucket_count":513,"histogram_type":1,"sum":1035,"range":[1,512],"values":{"2":0,"3":1,"9":2,"13":12,"33":26,"34":0}},"CERT_PINNING_MOZ_TEST_RESULTS_BY_HOST":{"bucket_count":513,"histogram_type":1,"sum":79,"range":[1,512],"values":{"14":0,"15":3,"17":2,"18":0}},"CERT_CHAIN_KEY_SIZE_STATUS":{"bucket_count":5,"histogram_type":1,"sum":60,"range":[1,4],"values":{"0":0,"1":60,"2":0}},"MASTER_PASSWORD_ENABLED":{"bucket_count":3,"histogram_type":3,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"COOKIE_BEHAVIOR":{"bucket_count":16,"histogram_type":1,"sum":5,"range":[1,15],"values":{"4":0,"5":1,"6":0}},"TRACKING_PROTECTION_ENABLED":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"TRACKING_PROTECTION_PBM_DISABLED":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":1,"1":0}},"FINGERPRINTERS_BLOCKED_COUNT":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"CRYPTOMINERS_BLOCKED_COUNT":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"TRACKING_PROTECTION_SHIELD":{"bucket_count":5,"histogram_type":1,"sum":0,"range":[1,4],"values":{"0":1,"1":0}},"QUERY_STRIPPING_COUNT":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":8,"1":0}},"PWMGR_BLOCKLIST_NUM_SITES":{"bucket_count":10,"histogram_type":0,"sum":0,"range":[1,100],"values":{"0":1,"1":0}},"PWMGR_NUM_SAVED_PASSWORDS":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,750],"values":{"0":1,"1":0}},"PWMGR_SAVING_ENABLED":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"CONTENT_FULL_PAINT_TIME":{"bucket_count":50,"histogram_type":0,"sum":24,"range":[1,1000],"values":{"0":26,"1":2,"2":4,"3":1,"5":1,"6":1,"7":0}},"CONTENT_FRAME_TIME":{"bucket_count":50,"histogram_type":0,"sum":3569,"range":[1,5000],"values":{"6":0,"7":1,"9":1,"11":1,"18":1,"21":1,"25":2,"75":3,"88":10,"103":8,"120":2,"140":2,"164":1,"569":1,"665":0}},"CONTENT_FRAME_TIME_VSYNC":{"bucket_count":100,"histogram_type":1,"sum":2337,"range":[8,792],"values":{"88":0,"96":4,"104":12,"112":1,"120":1,"184":1,"208":1,"216":0}},"TIME_TO_FIRST_CONTENTFUL_PAINT_MS":{"bucket_count":100,"histogram_type":0,"sum":362,"range":[1,100000],"values":{"321":0,"356":1,"395":0}},"INPUT_EVENT_QUEUED_CLICK_MS":{"bucket_count":100,"histogram_type":0,"sum":54,"range":[1,5000],"values":{"0":1,"1":1,"5":1,"47":1,"50":0}},"WEBEXT_BACKGROUND_PAGE_LOAD_MS":{"bucket_count":100,"histogram_type":0,"sum":1508,"range":[1,60000],"values":{"28":0,"31":1,"362":4,"399":0}},"WEBEXT_EXTENSION_STARTUP_MS":{"bucket_count":100,"histogram_type":0,"sum":2880,"range":[1,50000],"values":{"37":0,"41":1,"67":1,"666":4,"733":0}},"WR_RENDERER_TIME":{"bucket_count":50,"histogram_type":0,"sum":100,"range":[1,1000],"values":{"0":63,"1":30,"2":7,"6":1,"14":1,"33":1,"37":0}},"WR_RENDERER_TIME_NO_SC_MS":{"bucket_count":50,"histogram_type":0,"sum":50,"range":[1,1000],"values":{"0":63,"1":30,"2":7,"6":1,"7":0}},"COOKIE_PURGING_ORIGINS_PURGED":{"bucket_count":30,"histogram_type":0,"sum":0,"range":[1,500],"values":{"0":1,"1":0}},"COOKIE_PURGING_TRACKERS_WITH_USER_INTERACTION":{"bucket_count":30,"histogram_type":0,"sum":0,"range":[1,500],"values":{"0":1,"1":0}},"COOKIE_PURGING_DURATION_MS":{"bucket_count":30,"histogram_type":0,"sum":3,"range":[1,600000],"values":{"2":0,"3":1,"5":0}},"COOKIE_PURGING_INTERVAL_HOURS":{"bucket_count":56,"histogram_type":1,"sum":0,"range":[1,168],"values":{"0":1,"1":0}},"EH_NUM_OF_HINTS_PER_PAGE":{"bucket_count":20,"histogram_type":0,"sum":0,"range":[1,30],"values":{"0":1,"1":0}},"ORB_DID_EVER_BLOCK_RESPONSE":{"bucket_count":3,"histogram_type":2,"sum":0,"range":[1,2],"values":{"0":17,"1":0}}},"keyedHistograms":{"CANVAS_FINGERPRINTING_PER_TAB":{"unknown":{"bucket_count":9,"histogram_type":1,"sum":0,"range":[1,8],"values":{"0":1,"1":0}}},"NETWORK_HTTP_REDIRECT_TO_SCHEME":{"https":{"bucket_count":51,"histogram_type":5,"sum":1,"range":[1,50],"values":{"0":2,"1":1,"2":0}}},"NETWORK_DNS_END_TO_CONNECT_START_EXP_MS":{"h2_0":{"bucket_count":50,"histogram_type":0,"sum":0,"range":[1,2000],"values":{"0":10,"1":0}}},"SSL_TIME_UNTIL_HANDSHAKE_FINISHED_KEYED_BY_KA":{"P256":{"bucket_count":200,"histogram_type":0,"sum":235,"range":[1,60000],"values":{"217":0,"227":1,"237":0}},"x25519":{"bucket_count":200,"histogram_type":0,"sum":5111,"range":[1,60000],"values":{"32":0,"33":1,"41":2,"43":1,"45":1,"58":4,"61":7,"64":12,"67":5,"70":2,"73":2,"76":2,"80":6,"84":1,"88":2,"96":1,"105":1,"115":3,"120":1,"126":1,"173":1,"198":1,"237":2,"259":1,"271":0}},"none":{"bucket_count":200,"histogram_type":0,"sum":182,"range":[1,60000],"values":{"55":0,"58":1,"61":2,"64":0}}},"HTTP3_ECH_OUTCOME":{"GREASE":{"bucket_count":33,"histogram_type":1,"sum":0,"range":[1,32],"values":{"0":10,"1":0}}},"HTTP_CHANNEL_DISPOSITION_UPGRADE":{"enabledNoReason":{"bucket_count":51,"histogram_type":5,"sum":417,"range":[1,50],"values":{"0":3,"1":113,"2":152,"3":0}},"enabledWont":{"bucket_count":51,"histogram_type":5,"sum":2112,"range":[1,50],"values":{"0":378,"2":1056,"3":0}},"enabledUpgrade":{"bucket_count":51,"histogram_type":5,"sum":26,"range":[1,50],"values":{"1":0,"2":13,"3":0}}},"HTTP3_CONNECTION_CLOSE_CODE_3":{"transport_closed":{"bucket_count":101,"histogram_type":1,"sum":0,"range":[1,100],"values":{"0":10,"1":0}}},"HTTP3_CHANNEL_ONSTART_SUCCESS":{"no_http3":{"bucket_count":3,"histogram_type":2,"sum":1224,"range":[1,2],"values":{"0":378,"1":1224,"2":0}}},"DNS_LOOKUP_DISPOSITION3":{"private.canadianshield.cira.ca":{"bucket_count":51,"histogram_type":5,"sum":9094,"range":[1,50],"values":{"5":0,"6":1021,"7":424,"8":0}},"mozilla.cloudflare-dns.com":{"bucket_count":51,"histogram_type":5,"sum":990,"range":[1,50],"values":{"5":0,"6":130,"7":30,"8":0}}},"URLCLASSIFIER_CL_KEYED_UPDATE_TIME":{"google4":{"bucket_count":30,"histogram_type":0,"sum":291,"range":[20,120000],"values":{"173":0,"236":1,"322":0}},"mozilla":{"bucket_count":30,"histogram_type":0,"sum":14,"range":[20,120000],"values":{"0":1,"20":0}}},"URLCLASSIFIER_UPDATE_REMOTE_NETWORK_ERROR":{"google4":{"bucket_count":31,"histogram_type":1,"sum":0,"range":[1,30],"values":{"0":1,"1":0}},"mozilla":{"bucket_count":31,"histogram_type":1,"sum":0,"range":[1,30],"values":{"0":1,"1":0}},"":{"bucket_count":31,"histogram_type":1,"sum":0,"range":[1,30],"values":{"0":14,"1":0}}},"URLCLASSIFIER_UPDATE_REMOTE_STATUS2":{"google4":{"bucket_count":17,"histogram_type":1,"sum":1,"range":[1,16],"values":{"0":0,"1":1,"2":0}},"mozilla":{"bucket_count":17,"histogram_type":1,"sum":1,"range":[1,16],"values":{"0":0,"1":1,"2":0}},"":{"bucket_count":17,"histogram_type":1,"sum":14,"range":[1,16],"values":{"0":0,"1":14,"2":0}}},"URLCLASSIFIER_UPDATE_SERVER_RESPONSE_TIME":{"google4":{"bucket_count":30,"histogram_type":0,"sum":196,"range":[1,100000],"values":{"102":0,"153":1,"229":0}},"mozilla":{"bucket_count":30,"histogram_type":0,"sum":356,"range":[1,100000],"values":{"229":0,"343":1,"514":0}},"":{"bucket_count":30,"histogram_type":0,"sum":1335,"range":[1,100000],"values":{"45":0,"68":11,"102":3,"153":0}}},"URLCLASSIFIER_UPDATE_TIMEOUT":{"google4":{"bucket_count":5,"histogram_type":1,"sum":0,"range":[1,4],"values":{"0":1,"1":0}},"mozilla":{"bucket_count":5,"histogram_type":1,"sum":0,"range":[1,4],"values":{"0":1,"1":0}},"":{"bucket_count":5,"histogram_type":1,"sum":0,"range":[1,4],"values":{"0":14,"1":0}}},"URLCLASSIFIER_UPDATE_ERROR":{"google4":{"bucket_count":17,"histogram_type":1,"sum":0,"range":[1,16],"values":{"0":1,"1":0}},"mozilla":{"bucket_count":17,"histogram_type":1,"sum":0,"range":[1,16],"values":{"0":1,"1":0}}},"EMAIL_TRACKER_EMBEDDED_PER_TAB":{"content_normal":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":1,"1":0}},"base_normal":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":1,"1":0}},"all_normal":{"bucket_count":100,"histogram_type":0,"sum":0,"range":[1,1000],"values":{"0":1,"1":0}}},"WEBEXT_BACKGROUND_PAGE_LOAD_MS_BY_ADDONID":{"pictureinpicture@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":373,"range":[1,60000],"values":{"328":0,"362":1,"399":0}},"screenshots@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":363,"range":[1,60000],"values":{"328":0,"362":1,"399":0}},"webcompat@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":376,"range":[1,60000],"values":{"328":0,"362":1,"399":0}},"formautofill@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":364,"range":[1,60000],"values":{"328":0,"362":1,"399":0}},"addons-search-detection@mozilla.com":{"bucket_count":100,"histogram_type":0,"sum":32,"range":[1,60000],"values":{"28":0,"31":1,"34":0}}},"WEBEXT_EXTENSION_STARTUP_MS_BY_ADDONID":{"default-theme@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":41,"range":[1,50000],"values":{"37":0,"41":1,"45":0}},"pictureinpicture@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":688,"range":[1,50000],"values":{"605":0,"666":1,"733":0}},"screenshots@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":685,"range":[1,50000],"values":{"605":0,"666":1,"733":0}},"webcompat@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":710,"range":[1,50000],"values":{"605":0,"666":1,"733":0}},"formautofill@mozilla.org":{"bucket_count":100,"histogram_type":0,"sum":689,"range":[1,50000],"values":{"605":0,"666":1,"733":0}},"addons-search-detection@mozilla.com":{"bucket_count":100,"histogram_type":0,"sum":67,"range":[1,50000],"values":{"61":0,"67":1,"74":0}}},"QM_QUOTA_INFO_LOAD_TIME_V0":{"Normal":{"bucket_count":60,"histogram_type":0,"sum":0,"range":[1,180000],"values":{"0":1,"1":0}}},"QM_FIRST_INITIALIZATION_ATTEMPT":{"DefaultRepository":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"TemporaryRepository":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"TemporaryStorage":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"Storage":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"PersistentOrigin":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}},"TemporaryOrigin":{"bucket_count":3,"histogram_type":2,"sum":1,"range":[1,2],"values":{"0":0,"1":1,"2":0}}},"QM_SHUTDOWN_TIME_V0":{"Normal":{"bucket_count":60,"histogram_type":0,"sum":0,"range":[1,60000],"values":{"0":1,"1":0}}},"HTTP_TRAFFIC_ANALYSIS_3":{"Connection":{"bucket_count":51,"histogram_type":5,"sum":21,"range":[1,50],"values":{"0":292,"1":1,"2":10,"3":0}},"Transaction":{"bucket_count":51,"histogram_type":5,"sum":51,"range":[1,50],"values":{"0":1542,"1":31,"2":10,"3":0}}},"SQLITE_STORE_OPEN":{"permissions.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"2823318777ntouromlalnodry--naod.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":2,"1":0}},"cookies.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":2,"1":0}},"2918063365piupsah.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":3,"1":0}},"favicons.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":2,"1":0}},"3561288849sdhlie.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":3,"1":0}},"bounce-tracking-protection.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"content-prefs.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"1657114595AmcateirvtiSty.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":7,"1":0}},"1451318868ntouromlalnodry--epcr.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":4,"1":0}},"data.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"places.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":4,"1":0}},"storage.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"ls-archive.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":3,"1":0}},"formhistory.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}},"3870112724rsegmnoittet-es.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":73,"1":0}},"webappsstore.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":2,"1":0}},"protections.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":1,"1":0}}},"SQLITE_STORE_QUERY":{"permissions.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":12,"1":0}},"2823318777ntouromlalnodry--naod.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":54,"1":0}},"cookies.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":14,"1":0}},"2918063365piupsah.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":87,"1":0}},"favicons.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":18,"1":0}},"3561288849sdhlie.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":74,"1":0}},"bounce-tracking-protection.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":7,"1":0}},"content-prefs.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":30,"1":0}},"1657114595AmcateirvtiSty.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":243,"1":0}},"1451318868ntouromlalnodry--epcr.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":77,"1":0}},"data.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":23,"1":0}},"places.sqlite":{"bucket_count":51,"histogram_type":5,"sum":1,"range":[1,50],"values":{"0":537,"1":1,"2":0}},"storage.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":37,"1":0}},"ls-archive.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":32,"1":0}},"formhistory.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":22,"1":0}},"3870112724rsegmnoittet-es.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":16347,"1":0}},"webappsstore.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":20,"1":0}},"protections.sqlite":{"bucket_count":51,"histogram_type":5,"sum":0,"range":[1,50],"values":{"0":8,"1":0}}},"HTTP_CONNECTION_CLOSE_REASON":{"11_1_0_1_4":{"bucket_count":51,"histogram_type":1,"sum":286,"range":[1,50],"values":{"15":0,"16":3,"17":14,"18":0}},"20_1_0_7_4":{"bucket_count":51,"histogram_type":1,"sum":258,"range":[1,50],"values":{"17":0,"18":8,"19":6,"20":0}},"30_1_0_0_4":{"bucket_count":51,"histogram_type":1,"sum":20,"range":[1,50],"values":{"1":0,"2":10,"3":0}},"11_0_0_7_4":{"bucket_count":51,"histogram_type":1,"sum":3824,"range":[1,50],"values":{"15":0,"16":239,"17":0}},"20_1_0_3_4":{"bucket_count":51,"histogram_type":1,"sum":570,"range":[1,50],"values":{"18":0,"19":30,"20":0}},"11_0_0_0_1":{"bucket_count":51,"histogram_type":1,"sum":32,"range":[1,50],"values":{"15":0,"16":2,"17":0}},"11_1_0_3_4":{"bucket_count":51,"histogram_type":1,"sum":54,"range":[1,50],"values":{"15":0,"16":1,"19":2,"20":0}},"11_0_0_5_4":{"bucket_count":51,"histogram_type":1,"sum":96,"range":[1,50],"values":{"15":0,"16":6,"17":0}}}},"info":{"reason":"shutdown","revision":"https://hg.mozilla.org/releases/mozilla-release/rev/c6f0209c79239408bef9b3c98e9c729dcf20ec0c","timezoneOffset":-240,"previousBuildId":null,"sessionId":"cdaccdb0-d120-4df2-a641-99a2c8c2a67a","subsessionId":"129981fe-28ea-4dc5-bd07-ee6901b81d5b","previousSessionId":null,"previousSubsessionId":null,"subsessionCounter":1,"profileSubsessionCounter":1,"sessionStartDate":"2024-09-01T14:00:00.0-04:00","subsessionStartDate":"2024-09-01T14:00:00.0-04:00","sessionLength":829,"subsessionLength":829,"addons":"formautofill%40mozilla.org:1.0.1,pictureinpicture%40mozilla.org:1.0.0,webcompat%40mozilla.org:129.5.0,default-theme%40mozilla.org:1.3,addons-search-detection%40mozilla.com:2.0.0"}},"clientId":"6a3ae85d-19d1-4704-9355-b2caa2e4c90c","environment":{"build":{"applicationId":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","applicationName":"Firefox","architecture":"aarch64","buildId":"20240819150008","version":"129.0.2","vendor":"Mozilla","displayVersion":"129.0.2","platformVersion":"129.0.2","xpcomAbi":"aarch64-gcc3","updaterAvailable":true},"partner":{"distributionId":null,"distributionVersion":null,"partnerId":null,"distributor":null,"distributorChannel":null,"partnerNames":[]},"system":{"memoryMB":65536,"virtualMaxMB":null,"cpu":{"count":24,"cores":24,"vendor":"","name":"Apple M2 Ultra","family":0,"model":0,"stepping":0,"l2cacheKB":4096,"l3cacheKB":0,"speedMHz":0,"extensions":["hasNEON"]},"os":{"name":"Darwin","version":"23.6.0","locale":"en-CA"},"hdd":{"profile":{"model":null,"revision":null,"type":null},"binary":{"model":null,"revision":null,"type":null},"system":{"model":null,"revision":null,"type":null}},"gfx":{"D2DEnabled":null,"DWriteEnabled":null,"ContentBackend":"Skia","Headless":false,"EmbeddedInFirefoxReality":null,"TargetFrameRate":60,"adapters":[{"description":null,"vendorID":"0x106b","deviceID":null,"subsysID":null,"RAM":0,"driver":null,"driverVendor":null,"driverVersion":null,"driverDate":null,"GPUActive":true}],"monitors":[{"screenWidth":3840,"screenHeight":2160,"scale":1},{"screenWidth":1440,"screenHeight":2560,"scale":1}],"features":{"compositor":"webrender","hwCompositing":{"status":"available"},"gpuProcess":{"status":"unused"},"webrender":{"status":"available"},"wrCompositor":{"status":"available"},"openglCompositing":{"status":"available"},"omtp":{"status":"unused"}}},"appleModelId":"Mac14,14","hasWinPackageId":null},"settings":{"blocklistEnabled":true,"e10sEnabled":true,"e10sMultiProcesses":8,"fissionEnabled":true,"telemetryEnabled":false,"locale":"en-CA","intl":{"requestedLocales":["en-CA"],"availableLocales":["en-CA","en-US"],"appLocales":["en-CA","en-US"],"systemLocales":["en-CA","en"],"regionalPrefsLocales":["en-CA","en"],"acceptLanguages":["en-CA","en-US","en"]},"update":{"channel":"release","enabled":true,"autoDownload":true,"background":true},"userPrefs":{"browser.search.widget.inNavBar":false,"browser.urlbar.autoFill":true,"browser.urlbar.autoFill.adaptiveHistory.enabled":false,"browser.urlbar.dnsResolveSingleWordsAfterSearch":0,"browser.urlbar.quicksuggest.dataCollection.enabled":false,"browser.urlbar.suggest.quicksuggest.nonsponsored":false,"browser.urlbar.suggest.quicksuggest.sponsored":false,"network.trr.strict_native_fallback":false,"widget.content.gtk-high-contrast.enabled":true,"browser.search.region":"CA","media.gmp-gmpopenh264.lastInstallStart":1725215716,"media.gmp-widevinecdm.lastInstallStart":1725215716,"media.gmp-gmpopenh264.lastDownload":1725215717,"media.gmp-gmpopenh264.lastUpdate":1725215717,"media.gmp-widevinecdm.lastDownload":1725215718,"media.gmp-widevinecdm.lastUpdate":1725215718,"media.gmp-manager.lastCheck":1725215771,"media.gmp-manager.lastEmptyCheck":1725215771},"sandbox":{"effectiveContentProcessLevel":3,"contentWin32kLockdownState":3},"addonCompatibilityCheckEnabled":true,"isDefaultBrowser":true,"attribution":{"dlsource":"mozillaci"},"defaultSearchEngine":"google-b-d","defaultSearchEngineData":{"loadPath":"[app]google@search.mozilla.org","name":"Google","origin":"default","submissionURL":"https://www.google.com/search?client=firefox-b-d&q="}},"profile":{"creationDate":19967,"firstUseDate":19967},"addons":{"activeAddons":{"formautofill@mozilla.org":{"version":"1.0.1","scope":1,"type":"extension","updateDay":19954,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":null,"name":"Form Autofill","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19954,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"pictureinpicture@mozilla.org":{"version":"1.0.0","scope":1,"type":"extension","updateDay":19954,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Fixes for web compatibility with Picture-in-Picture","name":"Picture-In-Picture","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19954,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"webcompat@mozilla.org":{"version":"129.5.0","scope":1,"type":"extension","updateDay":19954,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Urgent post-release fixes for web compatibility.","name":"Web Compatibility Interventions","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19954,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false}},"theme":{"id":"default-theme@mozilla.org","blocklisted":false,"description":"Follow the operating system setting for buttons, menus, and windows.","name":"System theme — auto","userDisabled":false,"appDisabled":false,"version":"1.3","scope":4,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19967,"updateDay":19967},"activeGMPlugins":{"gmp-gmpopenh264":{"version":"2.3.2","userDisabled":false,"applyBackgroundUpdates":1},"gmp-widevinecdm":{"version":"4.10.2710.0","userDisabled":false,"applyBackgroundUpdates":1}}},"experiments":{"csv-import-release-rollout":{"branch":"enable-csv-import","type":"nimbus-rollout"},"upgrade-spotlight-rollout":{"branch":"treatment","type":"nimbus-rollout"},"address-autofill-desktop-pref-release-rollout":{"branch":"enable-address-autofill","type":"nimbus-rollout"},"highlighting-in-pdfs-rollout":{"branch":"treatment","type":"nimbus-rollout"},"consolidated-search-configuration-row-desktop-relaunch":{"branch":"rollout","type":"nimbus-rollout"},"long-term-holdback-2024-h2-velocity-desktop":{"branch":"delivery","type":"nimbus-nimbus"},"disable-redirects-for-authretries":{"branch":"control","type":"nimbus-rollout"},"fpp-floating-point-protection-rollout":{"branch":"control","type":"nimbus-rollout"},"home-and-newtab-wallpapers-v1-rollout-us-and-ca":{"branch":"control","type":"nimbus-rollout"},"tab-hover-preview-release-rollout":{"branch":"control","type":"nimbus-rollout"},"encrypted-client-hello-fallback-mechanism":{"branch":"control","type":"nimbus-rollout"}}}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/search.json.mozlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/search.json.mozlz4 deleted file mode 100644 index 4538567..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/search.json.mozlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/sessionCheckpoints.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/sessionCheckpoints.json deleted file mode 100644 index 928de6a..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/sessionCheckpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"profile-after-change":true,"final-ui-startup":true,"sessionstore-windows-restored":true,"quit-application-granted":true,"quit-application":true,"sessionstore-final-state-write-complete":true,"profile-change-net-teardown":true,"profile-change-teardown":true,"profile-before-change":true} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/sessionstore.jsonlz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/sessionstore.jsonlz4 deleted file mode 100644 index 43ea669..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/sessionstore.jsonlz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/settings/data.safe.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/settings/data.safe.bin deleted file mode 100644 index 5107428..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/settings/data.safe.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/settings/main/ms-language-packs/browser/newtab/asrouter.ftl b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/settings/main/ms-language-packs/browser/newtab/asrouter.ftl deleted file mode 100644 index d7f9c9d..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/settings/main/ms-language-packs/browser/newtab/asrouter.ftl +++ /dev/null @@ -1,170 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - - -## These messages are used as headings in the recommendation doorhanger - -cfr-doorhanger-extension-heading = Recommended Extension -cfr-doorhanger-feature-heading = Recommended Feature - -## - -cfr-doorhanger-extension-sumo-link = - .tooltiptext = Why am I seeing this -cfr-doorhanger-extension-cancel-button = Not Now - .accesskey = N -cfr-doorhanger-extension-ok-button = Add Now - .accesskey = A -cfr-doorhanger-extension-manage-settings-button = Manage Recommendation Settings - .accesskey = M -cfr-doorhanger-extension-never-show-recommendation = Don’t Show Me This Recommendation - .accesskey = S -cfr-doorhanger-extension-learn-more-link = Learn more -# This string is used on a new line below the add-on name -# Variables: -# $name (String) - Add-on author name -cfr-doorhanger-extension-author = by { $name } -# This is a notification displayed in the address bar. -# When clicked it opens a panel with a message for the user. -cfr-doorhanger-extension-notification = Recommendation -cfr-doorhanger-extension-notification2 = Recommendation - .tooltiptext = Extension recommendation - .a11y-announcement = Extension recommendation available -# This is a notification displayed in the address bar. -# When clicked it opens a panel with a message for the user. -cfr-doorhanger-feature-notification = Recommendation - .tooltiptext = Feature recommendation - .a11y-announcement = Feature recommendation available - -## Add-on statistics -## These strings are used to display the total number of -## users and rating for an add-on. They are shown next to each other. - -# Variables: -# $total (Number) - The rating of the add-on from 1 to 5 -cfr-doorhanger-extension-rating = - .tooltiptext = - { $total -> - [one] { $total } star - *[other] { $total } stars - } -# Variables: -# $total (Number) - The total number of users using the add-on -cfr-doorhanger-extension-total-users = - { $total -> - [one] { $total } user - *[other] { $total } users - } - -## Firefox Accounts Message - -cfr-doorhanger-bookmark-fxa-header = Sync your bookmarks everywhere. -cfr-doorhanger-bookmark-fxa-body = Great find! Now don’t be left without this bookmark on your mobile devices. Get Started with a { -fxaccount-brand-name }. -cfr-doorhanger-bookmark-fxa-link-text = Sync bookmarks now… -cfr-doorhanger-bookmark-fxa-close-btn-tooltip = - .aria-label = Close button - .title = Close - -## Protections panel - -cfr-protections-panel-header = Browse without being followed -cfr-protections-panel-body = Keep your data to yourself. { -brand-short-name } protects you from many of the most common trackers that follow what you do online. -cfr-protections-panel-link-text = Learn more - -## What's New toolbar button and panel - -# This string is used by screen readers to offer a text based alternative for -# the notification icon -cfr-badge-reader-label-newfeature = New feature: -cfr-whatsnew-button = - .label = What’s New - .tooltiptext = What’s New -cfr-whatsnew-release-notes-link-text = Read the release notes - -## Enhanced Tracking Protection Milestones - -# Variables: -# $blockedCount (Number) - The total count of blocked trackers. This number will always be greater than 1. -# $date (Datetime) - The date we began recording the count of blocked trackers -cfr-doorhanger-milestone-heading2 = - { $blockedCount -> - *[other] { -brand-short-name } blocked over { $blockedCount } trackers since { DATETIME($date, month: "long", year: "numeric") }! - } -cfr-doorhanger-milestone-ok-button = See All - .accesskey = S -cfr-doorhanger-milestone-close-button = Close - .accesskey = C - -## DOH Message - -cfr-doorhanger-doh-body = Your privacy matters. { -brand-short-name } now securely routes your DNS requests whenever possible to a partner service to protect you while you browse. -cfr-doorhanger-doh-header = More secure, encrypted DNS lookups -cfr-doorhanger-doh-primary-button-2 = Okay - .accesskey = O -cfr-doorhanger-doh-secondary-button = Disable - .accesskey = D - -## Fission Experiment Message - -cfr-doorhanger-fission-body-approved = Your privacy matters. { -brand-short-name } now isolates, or sandboxes, websites from each other, which makes it harder for hackers to steal passwords, credit card numbers, and other sensitive information. -cfr-doorhanger-fission-header = Site Isolation -cfr-doorhanger-fission-primary-button = OK, Got it - .accesskey = O -cfr-doorhanger-fission-secondary-button = Learn more - .accesskey = L - -## Full Video Support CFR message - -cfr-doorhanger-video-support-body = Videos on this site may not play correctly on this version of { -brand-short-name }. For full video support, update { -brand-short-name } now. -cfr-doorhanger-video-support-header = Update { -brand-short-name } to play video -cfr-doorhanger-video-support-primary-button = Update Now - .accesskey = U - -## Spotlight modal shared strings - -spotlight-learn-more-collapsed = Learn more - .title = Expand to learn more about the feature -spotlight-learn-more-expanded = Learn more - .title = Close - -## VPN promotion dialog for public Wi-Fi users -## -## If a user is detected to be on a public Wi-Fi network, they are given a -## bit of info about how to improve their privacy and then offered a button -## to the Mozilla VPN page and a link to dismiss the dialog. - -# This header text can be explicitly wrapped. -spotlight-public-wifi-vpn-header = Looks like you’re using public Wi-Fi -spotlight-public-wifi-vpn-body = To hide your location and browsing activity, consider a Virtual Private Network. It will help keep you protected when browsing in public places like airports and coffee shops. -spotlight-public-wifi-vpn-primary-button = Stay private with { -mozilla-vpn-brand-name } - .accesskey = S -spotlight-public-wifi-vpn-link = Not Now - .accesskey = N - -## Total Cookie Protection Rollout - -# "Test pilot" is used as a verb. Possible alternatives: "Be the first to try", -# "Join an early experiment". This header text can be explicitly wrapped. -spotlight-total-cookie-protection-header = - Test pilot our most powerful - privacy experience ever -spotlight-total-cookie-protection-body = Total Cookie Protection stops trackers from using cookies to stalk you around the web. -# "Early access" for this feature rollout means it's a "feature preview" or -# "soft launch" as not everybody will get it yet. -spotlight-total-cookie-protection-expanded = { -brand-short-name } builds a fence around cookies, limiting them to the site you’re on so trackers can’t use them to follow you. With early access, you’ll help optimize this feature so we can keep building a better web for everyone. -spotlight-total-cookie-protection-primary-button = Turn on Total Cookie Protection -spotlight-total-cookie-protection-secondary-button = Not now - -## Emotive Continuous Onboarding - -spotlight-better-internet-header = A better internet starts with you -spotlight-better-internet-body = When you use { -brand-short-name }, you’re voting for an open and accessible internet that’s better for everyone. -spotlight-peace-mind-header = We’ve got you covered -spotlight-peace-mind-body = Every month, { -brand-short-name } blocks an average of over 3,000 trackers per user. Because nothing, especially privacy nuisances like trackers, should stand between you and the good internet. -spotlight-pin-primary-button = - { PLATFORM() -> - [macos] Keep in Dock - *[other] Pin to taskbar - } -spotlight-pin-secondary-button = Not now diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/shield-preference-experiments.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/shield-preference-experiments.json deleted file mode 100644 index 3759a90..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/shield-preference-experiments.json +++ /dev/null @@ -1 +0,0 @@ -{"experiments":{}} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/scriptCache-child.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/scriptCache-child.bin deleted file mode 100644 index fe90a66..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/scriptCache-child.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/scriptCache.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/scriptCache.bin deleted file mode 100644 index 7ca3b1a..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/scriptCache.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/startupCache.8.little b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/startupCache.8.little deleted file mode 100644 index 99caf9e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/startupCache.8.little and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/urlCache.bin b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/urlCache.bin deleted file mode 100644 index 47da8ed..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/urlCache.bin and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/webext.sc.lz4 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/webext.sc.lz4 deleted file mode 100644 index aa09529..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/startupCache/webext.sc.lz4 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage.sqlite deleted file mode 100644 index ff9ff88..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/.metadata-v2 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/.metadata-v2 deleted file mode 100644 index 290610a..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/.metadata-v2 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/ls/data.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/ls/data.sqlite deleted file mode 100644 index 34369cb..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/ls/data.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/ls/usage b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/ls/usage deleted file mode 100644 index 636efde..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/default/https+++www.mozilla.org/ls/usage and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/ls-archive.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/ls-archive.sqlite deleted file mode 100644 index 46c89dd..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/ls-archive.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/.metadata-v2 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/.metadata-v2 deleted file mode 100644 index 1626ba1..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/.metadata-v2 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite deleted file mode 100644 index fd6cdb4..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1451318868ntouromlalnodry--epcr.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite deleted file mode 100644 index 9e8c097..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/1657114595AmcateirvtiSty.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite deleted file mode 100644 index 4452c36..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2823318777ntouromlalnodry--naod.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2918063365piupsah.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2918063365piupsah.sqlite deleted file mode 100644 index 4e4e474..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2918063365piupsah.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2918063365piupsah.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/2918063365piupsah.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3561288849sdhlie.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3561288849sdhlie.sqlite deleted file mode 100644 index 4772146..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3561288849sdhlie.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3561288849sdhlie.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3561288849sdhlie.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.files/1 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.files/1 deleted file mode 100644 index 00d595e..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.files/1 and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite deleted file mode 100644 index 1229b24..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/storage/permanent/chrome/idb/3870112724rsegmnoittet-es.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/times.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/times.json deleted file mode 100755 index e0443f6..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/times.json +++ /dev/null @@ -1 +0,0 @@ -{"created":1725215676403,"firstUse":1725215685561} \ No newline at end of file diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2023-12-05_2129 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2023-12-05_2129 deleted file mode 100644 index 1772671..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2023-12-05_2129 +++ /dev/null @@ -1,1191 +0,0 @@ -/****** -* name: arkenfox user.js -* date: 20 November 2023 -* version: 119 -* urls: https://github.com/arkenfox/user.js [repo] -* : https://arkenfox.github.io/gui/ [interactive] -* license: MIT: https://github.com/arkenfox/user.js/blob/master/LICENSE.txt - -* README: - - 1. Consider using Tor Browser if it meets your needs or fits your threat model - * https://2019.www.torproject.org/about/torusers.html - 2. Read the entire wiki - * https://github.com/arkenfox/user.js/wiki - 3. If you skipped step 2, return to step 2 - 4. Make changes in a user-overrides.js - * There are often trade-offs and conflicts between security vs privacy vs anti-tracking - and these need to be balanced against functionality & convenience & breakage - * Some site breakage and unintended consequences will happen. Everyone's experience will differ - e.g. some user data is erased on exit (section 2800), change this to suit your needs - * While not 100% definitive, search for "[SETUP" tags - 5. Some tag info - [SETUP-SECURITY] it's one item, read it - [SETUP-WEB] can cause some websites to break - [SETUP-CHROME] changes how Firefox itself behaves (i.e. not directly website related) - 6. Override Recipes: https://github.com/arkenfox/user.js/issues/1080 - -* RELEASES: https://github.com/arkenfox/user.js/releases - - * Use the arkenfox release that matches your Firefox version - - DON'T wait for arkenfox to update Firefox, nothing major changes these days - * Each release - - run prefsCleaner to reset prefs made inactive, including deprecated (9999) - * ESR - - It is recommended to not use the updater, or you will get a later version which may cause issues. - So you should manually append your overrides (and keep a copy), and manually update when you - change ESR releases (arkenfox is already past that release) - - If you decide to keep updating, then the onus is on - also see section 9999 - -* INDEX: - - 0100: STARTUP - 0200: GEOLOCATION - 0300: QUIETER FOX - 0400: SAFE BROWSING - 0600: BLOCK IMPLICIT OUTBOUND - 0700: DNS / DoH / PROXY / SOCKS - 0800: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS - 0900: PASSWORDS - 1000: DISK AVOIDANCE - 1200: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - 1600: REFERERS - 1700: CONTAINERS - 2000: PLUGINS / MEDIA / WEBRTC - 2400: DOM (DOCUMENT OBJECT MODEL) - 2600: MISCELLANEOUS - 2700: ETP (ENHANCED TRACKING PROTECTION) - 2800: SHUTDOWN & SANITIZING - 4500: RFP (resistFingerprinting) - 5000: OPTIONAL OPSEC - 5500: OPTIONAL HARDENING - 6000: DON'T TOUCH - 7000: DON'T BOTHER - 8000: DON'T BOTHER: FINGERPRINTING - 9000: NON-PROJECT RELATED - 9999: DEPRECATED / RENAMED - -******/ - -/* START: internal custom pref to test for syntax errors - * [NOTE] Not all syntax errors cause parsing to abort i.e. reaching the last debug pref - * no longer necessarily means that all prefs have been applied. Check the console right - * after startup for any warnings/error messages related to non-applied prefs - * [1] https://blog.mozilla.org/nnethercote/2018/03/09/a-new-preferences-parser-for-firefox/ ***/ -user_pref("_user.js.parrot", "START: Oh yes, the Norwegian Blue... what's wrong with it?"); - -/* 0000: disable about:config warning ***/ -user_pref("browser.aboutConfig.showWarning", false); - -/*** [SECTION 0100]: STARTUP ***/ -user_pref("_user.js.parrot", "0100 syntax error: the parrot's dead!"); -/* 0102: set startup page [SETUP-CHROME] - * 0=blank, 1=home, 2=last visited page, 3=resume previous session - * [NOTE] Session Restore is cleared with history (2811), and not used in Private Browsing mode - * [SETTING] General>Startup>Restore previous session ***/ -user_pref("browser.startup.page", 0); -/* 0103: set HOME+NEWWINDOW page - * about:home=Firefox Home (default, see 0105), custom URL, about:blank - * [SETTING] Home>New Windows and Tabs>Homepage and new windows ***/ -user_pref("browser.startup.homepage", "about:blank"); -/* 0104: set NEWTAB page - * true=Firefox Home (default, see 0105), false=blank page - * [SETTING] Home>New Windows and Tabs>New tabs ***/ -user_pref("browser.newtabpage.enabled", false); -/* 0105: disable sponsored content on Firefox Home (Activity Stream) - * [SETTING] Home>Firefox Home Content ***/ -user_pref("browser.newtabpage.activity-stream.showSponsored", false); // [FF58+] Pocket > Sponsored Stories -user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // [FF83+] Sponsored shortcuts -/* 0106: clear default topsites - * [NOTE] This does not block you from adding your own ***/ -user_pref("browser.newtabpage.activity-stream.default.sites", ""); - -/*** [SECTION 0200]: GEOLOCATION ***/ -user_pref("_user.js.parrot", "0200 syntax error: the parrot's definitely deceased!"); -/* 0201: use Mozilla geolocation service instead of Google if permission is granted [FF74+] - * Optionally enable logging to the console (defaults to false) ***/ -user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%"); - // user_pref("geo.provider.network.logging.enabled", true); // [HIDDEN PREF] -/* 0202: disable using the OS's geolocation service ***/ -user_pref("geo.provider.ms-windows-location", false); // [WINDOWS] -user_pref("geo.provider.use_corelocation", false); // [MAC] -user_pref("geo.provider.use_gpsd", false); // [LINUX] [HIDDEN PREF] -user_pref("geo.provider.use_geoclue", false); // [FF102+] [LINUX] - -/*** [SECTION 0300]: QUIETER FOX ***/ -user_pref("_user.js.parrot", "0300 syntax error: the parrot's not pinin' for the fjords!"); -/** RECOMMENDATIONS ***/ -/* 0320: disable recommendation pane in about:addons (uses Google Analytics) ***/ -user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF] -/* 0321: disable recommendations in about:addons' Extensions and Themes panes [FF68+] ***/ -user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); -/* 0322: disable personalized Extension Recommendations in about:addons and AMO [FF65+] - * [NOTE] This pref has no effect when Health Reports (0331) are disabled - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to make personalized extension recommendations - * [1] https://support.mozilla.org/kb/personalized-extension-recommendations ***/ -user_pref("browser.discovery.enabled", false); -/* 0323: disable shopping experience [FF116+] - * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0 ***/ -user_pref("browser.shopping.experience2023.enabled", false); // [DEFAULT: false] - -/** TELEMETRY ***/ -/* 0330: disable new data submission [FF41+] - * If disabled, no policy is shown or upload takes place, ever - * [1] https://bugzilla.mozilla.org/1195552 ***/ -user_pref("datareporting.policy.dataSubmissionEnabled", false); -/* 0331: disable Health Reports - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send technical... data ***/ -user_pref("datareporting.healthreport.uploadEnabled", false); -/* 0332: disable telemetry - * The "unified" pref affects the behavior of the "enabled" pref - * - If "unified" is false then "enabled" controls the telemetry module - * - If "unified" is true then "enabled" only controls whether to record extended data - * [NOTE] "toolkit.telemetry.enabled" is now LOCKED to reflect prerelease (true) or release builds (false) [2] - * [1] https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html - * [2] https://medium.com/georg-fritzsche/data-preference-changes-in-firefox-58-2d5df9c428b5 ***/ -user_pref("toolkit.telemetry.unified", false); -user_pref("toolkit.telemetry.enabled", false); // see [NOTE] -user_pref("toolkit.telemetry.server", "data:,"); -user_pref("toolkit.telemetry.archive.enabled", false); -user_pref("toolkit.telemetry.newProfilePing.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.shutdownPingSender.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.updatePing.enabled", false); // [FF56+] -user_pref("toolkit.telemetry.bhrPing.enabled", false); // [FF57+] Background Hang Reporter -user_pref("toolkit.telemetry.firstShutdownPing.enabled", false); // [FF57+] -/* 0333: disable Telemetry Coverage - * [1] https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/ ***/ -user_pref("toolkit.telemetry.coverage.opt-out", true); // [HIDDEN PREF] -user_pref("toolkit.coverage.opt-out", true); // [FF64+] [HIDDEN PREF] -user_pref("toolkit.coverage.endpoint.base", ""); -/* 0334: disable PingCentre telemetry (used in several System Add-ons) [FF57+] - * Defense-in-depth: currently covered by 0331 ***/ -user_pref("browser.ping-centre.telemetry", false); -/* 0335: disable Firefox Home (Activity Stream) telemetry ***/ -user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); -user_pref("browser.newtabpage.activity-stream.telemetry", false); - -/** STUDIES ***/ -/* 0340: disable Studies - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to install and run studies ***/ -user_pref("app.shield.optoutstudies.enabled", false); -/* 0341: disable Normandy/Shield [FF60+] - * Shield is a telemetry system that can push and test "recipes" - * [1] https://mozilla.github.io/normandy/ ***/ -user_pref("app.normandy.enabled", false); -user_pref("app.normandy.api_url", ""); - -/** CRASH REPORTS ***/ -/* 0350: disable Crash Reports ***/ -user_pref("breakpad.reportURL", ""); -user_pref("browser.tabs.crashReporting.sendReport", false); // [FF44+] - // user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // [FF51+] [DEFAULT: false] -/* 0351: enforce no submission of backlogged Crash Reports [FF58+] - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send backlogged crash reports ***/ -user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); // [DEFAULT: false] - -/** OTHER ***/ -/* 0360: disable Captive Portal detection - * [1] https://www.eff.org/deeplinks/2017/08/how-captive-portals-interfere-wireless-security-and-privacy ***/ -user_pref("captivedetect.canonicalURL", ""); -user_pref("network.captive-portal-service.enabled", false); // [FF52+] -/* 0361: disable Network Connectivity checks [FF65+] - * [1] https://bugzilla.mozilla.org/1460537 ***/ -user_pref("network.connectivity-service.enabled", false); - -/*** [SECTION 0400]: SAFE BROWSING (SB) - SB has taken many steps to preserve privacy. If required, a full url is never sent - to Google, only a part-hash of the prefix, hidden with noise of other real part-hashes. - Firefox takes measures such as stripping out identifying parameters and since SBv4 (FF57+) - doesn't even use cookies. (#Turn on browser.safebrowsing.debug to monitor this activity) - - [1] https://feeding.cloud.geek.nz/posts/how-safe-browsing-works-in-firefox/ - [2] https://wiki.mozilla.org/Security/Safe_Browsing - [3] https://support.mozilla.org/kb/how-does-phishing-and-malware-protection-work - [4] https://educatedguesswork.org/posts/safe-browsing-privacy/ -***/ -user_pref("_user.js.parrot", "0400 syntax error: the parrot's passed on!"); -/* 0401: disable SB (Safe Browsing) - * [WARNING] Do this at your own risk! These are the master switches - * [SETTING] Privacy & Security>Security>... Block dangerous and deceptive content ***/ - // user_pref("browser.safebrowsing.malware.enabled", false); - // user_pref("browser.safebrowsing.phishing.enabled", false); -/* 0402: disable SB checks for downloads (both local lookups + remote) - * This is the master switch for the safebrowsing.downloads* prefs (0403, 0404) - * [SETTING] Privacy & Security>Security>... "Block dangerous downloads" ***/ - // user_pref("browser.safebrowsing.downloads.enabled", false); -/* 0403: disable SB checks for downloads (remote) - * To verify the safety of certain executable files, Firefox may submit some information about the - * file, including the name, origin, size and a cryptographic hash of the contents, to the Google - * Safe Browsing service which helps Firefox determine whether or not the file should be blocked - * [SETUP-SECURITY] If you do not understand this, or you want this protection, then override this ***/ -user_pref("browser.safebrowsing.downloads.remote.enabled", false); - // user_pref("browser.safebrowsing.downloads.remote.url", ""); // Defense-in-depth -/* 0404: disable SB checks for unwanted software - * [SETTING] Privacy & Security>Security>... "Warn you about unwanted and uncommon software" ***/ - // user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); - // user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); -/* 0405: disable "ignore this warning" on SB warnings [FF45+] - * If clicked, it bypasses the block for that session. This is a means for admins to enforce SB - * [TEST] see https://github.com/arkenfox/user.js/wiki/Appendix-A-Test-Sites#-mozilla - * [1] https://bugzilla.mozilla.org/1226490 ***/ - // user_pref("browser.safebrowsing.allowOverride", false); - -/*** [SECTION 0600]: BLOCK IMPLICIT OUTBOUND [not explicitly asked for - e.g. clicked on] ***/ -user_pref("_user.js.parrot", "0600 syntax error: the parrot's no more!"); -/* 0601: disable link prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Link_prefetching_FAQ ***/ -user_pref("network.prefetch-next", false); -/* 0602: disable DNS prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control ***/ -user_pref("network.dns.disablePrefetch", true); - // user_pref("network.dns.disablePrefetchFromHTTPS", true); // [DEFAULT: true] -/* 0603: disable predictor / prefetching ***/ -user_pref("network.predictor.enabled", false); -user_pref("network.predictor.enable-prefetch", false); // [FF48+] [DEFAULT: false] -/* 0604: disable link-mouseover opening connection to linked server - * [1] https://news.slashdot.org/story/15/08/14/2321202/how-to-quash-firefoxs-silent-requests ***/ -user_pref("network.http.speculative-parallel-limit", 0); -/* 0605: disable mousedown speculative connections on bookmarks and history [FF98+] ***/ -user_pref("browser.places.speculativeConnect.enabled", false); -/* 0610: enforce no "Hyperlink Auditing" (click tracking) - * [1] https://www.bleepingcomputer.com/news/software/major-browsers-to-prevent-disabling-of-click-tracking-privacy-risk/ ***/ - // user_pref("browser.send_pings", false); // [DEFAULT: false] - -/*** [SECTION 0700]: DNS / DoH / PROXY / SOCKS ***/ -user_pref("_user.js.parrot", "0700 syntax error: the parrot's given up the ghost!"); -/* 0702: set the proxy server to do any DNS lookups when using SOCKS - * e.g. in Tor, this stops your local DNS server from knowing your Tor destination - * as a remote Tor node will handle the DNS request - * [1] https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/WebBrowsers ***/ -user_pref("network.proxy.socks_remote_dns", true); -/* 0703: disable using UNC (Uniform Naming Convention) paths [FF61+] - * [SETUP-CHROME] Can break extensions for profiles on network shares - * [1] https://bugzilla.mozilla.org/1413868 ***/ -user_pref("network.file.disable_unc_paths", true); // [HIDDEN PREF] -/* 0704: disable GIO as a potential proxy bypass vector - * Gvfs/GIO has a set of supported protocols like obex, network, archive, computer, - * dav, cdda, gphoto2, trash, etc. From FF87-117, by default only sftp was accepted - * [1] https://bugzilla.mozilla.org/1433507 - * [2] https://en.wikipedia.org/wiki/GVfs - * [3] https://en.wikipedia.org/wiki/GIO_(software) ***/ -user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF] [DEFAULT: "" FF118+] -/* 0705: disable proxy direct failover for system requests [FF91+] - * [WARNING] Default true is a security feature against malicious extensions [1] - * [SETUP-CHROME] If you use a proxy and you trust your extensions - * [1] https://blog.mozilla.org/security/2021/10/25/securing-the-proxy-api-for-firefox-add-ons/ ***/ - // user_pref("network.proxy.failover_direct", false); -/* 0706: disable proxy bypass for system request failures [FF95+] - * RemoteSettings, UpdateService, Telemetry [1] - * [WARNING] If false, this will break the fallback for some security features - * [SETUP-CHROME] If you use a proxy and you understand the security impact - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1732792,1733994,1733481 ***/ - // user_pref("network.proxy.allow_bypass", false); -/* 0710: enable DNS-over-HTTPS (DoH) [FF60+] - * 0=default, 2=increased (TRR (Trusted Recursive Resolver) first), 3=max (TRR only), 5=off (no rollout) - * see "doh-rollout.home-region": USA 2019, Canada 2021, Russia/Ukraine 2022 [3] - * [SETTING] Privacy & Security>DNS over HTTPS - * [1] https://hacks.mozilla.org/2018/05/a-cartoon-intro-to-dns-over-https/ - * [2] https://wiki.mozilla.org/Security/DOH-resolver-policy - * [3] https://support.mozilla.org/en-US/kb/firefox-dns-over-https - * [4] https://www.eff.org/deeplinks/2020/12/dns-doh-and-odoh-oh-my-year-review-2020 ***/ - // user_pref("network.trr.mode", 3); -/* 0712: set DoH provider - * The custom uri is the value shown when you "Choose provider>Custom>" - * [NOTE] If you USE custom then "network.trr.uri" should be set the same - * [SETTING] Privacy & Security>DNS over HTTPS>Increased/Max>Choose provider ***/ - // user_pref("network.trr.uri", "https://example.dns"); - // user_pref("network.trr.custom_uri", "https://example.dns"); - -/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/ -user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!"); -/* 0801: disable location bar making speculative connections [FF56+] - * [1] https://bugzilla.mozilla.org/1348275 ***/ -user_pref("browser.urlbar.speculativeConnect.enabled", false); -/* 0802: disable location bar contextual suggestions - * [SETTING] Privacy & Security>Address Bar>Suggestions from... - * [1] https://blog.mozilla.org/data/2021/09/15/data-and-firefox-suggest/ ***/ -user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false); // [FF95+] -user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false); // [FF92+] -/* 0803: disable live search suggestions - * [NOTE] Both must be true for the location bar to work - * [SETUP-CHROME] Override these if you trust and use a privacy respecting search engine - * [SETTING] Search>Provide search suggestions | Show search suggestions in address bar results ***/ -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -/* 0805: disable urlbar trending search suggestions [FF118+] - * [SETTING] Search>Search Suggestions>Show trending search suggestions (FF119) ***/ -user_pref("browser.urlbar.trending.featureGate", false); -/* 0806: disable urlbar suggestions ***/ -user_pref("browser.urlbar.addons.featureGate", false); // [FF115+] -user_pref("browser.urlbar.mdn.featureGate", false); // [FF117+] [HIDDEN PREF] -user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false] -user_pref("browser.urlbar.weather.featureGate", false); // [FF108+] [DEFAULT: false] -/* 0807: disable urlbar clipboard suggestions [FF118+] ***/ - // user_pref("browser.urlbar.clipboard.featureGate", false); // [DEFAULT: false] -/* 0810: disable search and form history - * [SETUP-WEB] Be aware that autocomplete form data can be read by third parties [1][2] - * [NOTE] We also clear formdata on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember search and form history - * [1] https://blog.mindedsecurity.com/2011/10/autocompleteagain.html - * [2] https://bugzilla.mozilla.org/381681 ***/ -user_pref("browser.formfill.enable", false); -/* 0815: disable tab-to-search [FF85+] - * Alternatively, you can exclude on a per-engine basis by unchecking them in Options>Search - * [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest>Search engines ***/ - // user_pref("browser.urlbar.suggest.engines", false); -/* 0820: disable coloring of visited links - * [SETUP-HARDEN] Bulk rapid history sniffing was mitigated in 2010 [1][2]. Slower and more expensive - * redraw timing attacks were largely mitigated in FF77+ [3]. Using RFP (4501) further hampers timing - * attacks. Don't forget clearing history on exit (2811). However, social engineering [2#limits][4][5] - * and advanced targeted timing attacks could still produce usable results - * [1] https://developer.mozilla.org/docs/Web/CSS/Privacy_and_the_:visited_selector - * [2] https://dbaron.org/mozilla/visited-privacy - * [3] https://bugzilla.mozilla.org/1632765 - * [4] https://earthlng.github.io/testpages/visited_links.html (see github wiki APPENDIX A on how to use) - * [5] https://lcamtuf.blogspot.com/2016/08/css-mix-blend-mode-is-bad-for-keeping.html ***/ - // user_pref("layout.css.visited_links_enabled", false); -/* 0830: enable separate default search engine in Private Windows and its UI setting - * [SETTING] Search>Default Search Engine>Choose a different default search engine for Private Windows only ***/ -user_pref("browser.search.separatePrivateDefault", true); // [FF70+] -user_pref("browser.search.separatePrivateDefault.ui.enabled", true); // [FF71+] - -/*** [SECTION 0900]: PASSWORDS - [1] https://support.mozilla.org/kb/use-primary-password-protect-stored-logins-and-pas -***/ -user_pref("_user.js.parrot", "0900 syntax error: the parrot's expired!"); -/* 0903: disable auto-filling username & password form fields - * can leak in cross-site forms *and* be spoofed - * [NOTE] Username & password is still available when you enter the field - * [SETTING] Privacy & Security>Logins and Passwords>Autofill logins and passwords - * [1] https://freedom-to-tinker.com/2017/12/27/no-boundaries-for-user-identities-web-trackers-exploit-browser-login-managers/ - * [2] https://homes.esat.kuleuven.be/~asenol/leaky-forms/ ***/ -user_pref("signon.autofillForms", false); -/* 0904: disable formless login capture for Password Manager [FF51+] ***/ -user_pref("signon.formlessCapture.enabled", false); -/* 0905: limit (or disable) HTTP authentication credentials dialogs triggered by sub-resources [FF41+] - * hardens against potential credentials phishing - * 0 = don't allow sub-resources to open HTTP authentication credentials dialogs - * 1 = don't allow cross-origin sub-resources to open HTTP authentication credentials dialogs - * 2 = allow sub-resources to open HTTP authentication credentials dialogs (default) ***/ -user_pref("network.auth.subresource-http-auth-allow", 1); -/* 0906: enforce no automatic authentication on Microsoft sites [FF91+] [WINDOWS 10+] - * [SETTING] Privacy & Security>Logins and Passwords>Allow Windows single sign-on for... - * [1] https://support.mozilla.org/kb/windows-sso ***/ - // user_pref("network.http.windows-sso.enabled", false); // [DEFAULT: false] - -/*** [SECTION 1000]: DISK AVOIDANCE ***/ -user_pref("_user.js.parrot", "1000 syntax error: the parrot's gone to meet 'is maker!"); -/* 1001: disable disk cache - * [SETUP-CHROME] If you think disk cache helps perf, then feel free to override this - * [NOTE] We also clear cache on exit (2811) ***/ -user_pref("browser.cache.disk.enable", false); -/* 1002: disable media cache from writing to disk in Private Browsing - * [NOTE] MSE (Media Source Extensions) are already stored in-memory in PB ***/ -user_pref("browser.privatebrowsing.forceMediaMemoryCache", true); // [FF75+] -user_pref("media.memory_cache_max_size", 65536); -/* 1003: disable storing extra session data [SETUP-CHROME] - * define on which sites to save extra session data such as form content, cookies and POST data - * 0=everywhere, 1=unencrypted sites, 2=nowhere ***/ -user_pref("browser.sessionstore.privacy_level", 2); -/* 1005: disable automatic Firefox start and session restore after reboot [FF62+] [WINDOWS] - * [1] https://bugzilla.mozilla.org/603903 ***/ -user_pref("toolkit.winRegisterApplicationRestart", false); -/* 1006: disable favicons in shortcuts [WINDOWS] - * URL shortcuts use a cached randomly named .ico file which is stored in your - * profile/shortcutCache directory. The .ico remains after the shortcut is deleted - * If set to false then the shortcuts use a generic Firefox icon ***/ -user_pref("browser.shell.shortcutFavicons", false); - -/*** [SECTION 1200]: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - Your cipher and other settings can be used in server side fingerprinting - [TEST] https://www.ssllabs.com/ssltest/viewMyClient.html - [TEST] https://browserleaks.com/ssl - [TEST] https://ja3er.com/ - [1] https://www.securityartwork.es/2017/02/02/tls-client-fingerprinting-with-bro/ -***/ -user_pref("_user.js.parrot", "1200 syntax error: the parrot's a stiff!"); -/** SSL (Secure Sockets Layer) / TLS (Transport Layer Security) ***/ -/* 1201: require safe negotiation - * Blocks connections to servers that don't support RFC 5746 [2] as they're potentially vulnerable to a - * MiTM attack [3]. A server without RFC 5746 can be safe from the attack if it disables renegotiations - * but the problem is that the browser can't know that. Setting this pref to true is the only way for the - * browser to ensure there will be no unsafe renegotiations on the channel between the browser and the server - * [SETUP-WEB] SSL_ERROR_UNSAFE_NEGOTIATION: is it worth overriding this for that one site? - * [STATS] SSL Labs (Nov 2023) reports over 99.5% of top sites have secure renegotiation [4] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://datatracker.ietf.org/doc/html/rfc5746 - * [3] https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555 - * [4] https://www.ssllabs.com/ssl-pulse/ ***/ -user_pref("security.ssl.require_safe_negotiation", true); -/* 1206: disable TLS1.3 0-RTT (round-trip time) [FF51+] - * This data is not forward secret, as it is encrypted solely under keys derived using - * the offered PSK. There are no guarantees of non-replay between connections - * [1] https://github.com/tlswg/tls13-spec/issues/1001 - * [2] https://www.rfc-editor.org/rfc/rfc9001.html#name-replay-attacks-with-0-rtt - * [3] https://blog.cloudflare.com/tls-1-3-overview-and-q-and-a/ ***/ -user_pref("security.tls.enable_0rtt_data", false); - -/** OCSP (Online Certificate Status Protocol) - [1] https://scotthelme.co.uk/revocation-is-broken/ - [2] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ -***/ -/* 1211: enforce OCSP fetching to confirm current validity of certificates - * 0=disabled, 1=enabled (default), 2=enabled for EV certificates only - * OCSP (non-stapled) leaks information about the sites you visit to the CA (cert authority) - * It's a trade-off between security (checking) and privacy (leaking info to the CA) - * [NOTE] This pref only controls OCSP fetching and does not affect OCSP stapling - * [SETTING] Privacy & Security>Security>Certificates>Query OCSP responder servers... - * [1] https://en.wikipedia.org/wiki/Ocsp ***/ -user_pref("security.OCSP.enabled", 1); // [DEFAULT: 1] -/* 1212: set OCSP fetch failures (non-stapled, see 1211) to hard-fail - * [SETUP-WEB] SEC_ERROR_OCSP_SERVER_ERROR - * When a CA cannot be reached to validate a cert, Firefox just continues the connection (=soft-fail) - * Setting this pref to true tells Firefox to instead terminate the connection (=hard-fail) - * It is pointless to soft-fail when an OCSP fetch fails: you cannot confirm a cert is still valid (it - * could have been revoked) and/or you could be under attack (e.g. malicious blocking of OCSP servers) - * [1] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ - * [2] https://www.imperialviolet.org/2014/04/19/revchecking.html ***/ -user_pref("security.OCSP.require", true); - -/** CERTS / HPKP (HTTP Public Key Pinning) ***/ -/* 1223: enable strict PKP (Public Key Pinning) - * 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict - * [SETUP-WEB] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE ***/ -user_pref("security.cert_pinning.enforcement_level", 2); -/* 1224: enable CRLite [FF73+] - * 0 = disabled - * 1 = consult CRLite but only collect telemetry - * 2 = consult CRLite and enforce both "Revoked" and "Not Revoked" results - * 3 = consult CRLite and enforce "Not Revoked" results, but defer to OCSP for "Revoked" (default) - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1429800,1670985,1753071 - * [2] https://blog.mozilla.org/security/tag/crlite/ ***/ -user_pref("security.remote_settings.crlite_filters.enabled", true); -user_pref("security.pki.crlite_mode", 2); - -/** MIXED CONTENT ***/ -/* 1241: disable insecure passive content (such as images) on https pages ***/ - // user_pref("security.mixed_content.block_display_content", true); // Defense-in-depth (see 1244) -/* 1244: enable HTTPS-Only mode in all windows - * When the top-level is HTTPS, insecure subresources are also upgraded (silent fail) - * [SETTING] to add site exceptions: Padlock>HTTPS-Only mode>On (after "Continue to HTTP Site") - * [SETTING] Privacy & Security>HTTPS-Only Mode (and manage exceptions) - * [TEST] http://example.com [upgrade] - * [TEST] http://httpforever.com/ | http://http.rip [no upgrade] ***/ -user_pref("dom.security.https_only_mode", true); // [FF76+] - // user_pref("dom.security.https_only_mode_pbm", true); // [FF80+] -/* 1245: enable HTTPS-Only mode for local resources [FF77+] ***/ - // user_pref("dom.security.https_only_mode.upgrade_local", true); -/* 1246: disable HTTP background requests [FF82+] - * When attempting to upgrade, if the server doesn't respond within 3 seconds, Firefox sends - * a top-level HTTP request without path in order to check if the server supports HTTPS or not - * This is done to avoid waiting for a timeout which takes 90 seconds - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1642387,1660945 ***/ -user_pref("dom.security.https_only_mode_send_http_background_request", false); - -/** UI (User Interface) ***/ -/* 1270: display warning on the padlock for "broken security" (if 1201 is false) - * Bug: warning padlock not indicated for subresources on a secure page! [2] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://bugzilla.mozilla.org/1353705 ***/ -user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); -/* 1272: display advanced information on Insecure Connection warning pages - * only works when it's possible to add an exception - * i.e. it doesn't work for HSTS discrepancies (https://subdomain.preloaded-hsts.badssl.com/) - * [TEST] https://expired.badssl.com/ ***/ -user_pref("browser.xul.error_pages.expert_bad_cert", true); - -/*** [SECTION 1600]: REFERERS - full URI: https://example.com:8888/foo/bar.html?id=1234 - scheme+host+port+path: https://example.com:8888/foo/bar.html - scheme+host+port: https://example.com:8888 - [1] https://feeding.cloud.geek.nz/posts/tweaking-referrer-for-privacy-in-firefox/ -***/ -user_pref("_user.js.parrot", "1600 syntax error: the parrot rests in peace!"); -/* 1602: control the amount of cross-origin information to send [FF52+] - * 0=send full URI (default), 1=scheme+host+port+path, 2=scheme+host+port ***/ -user_pref("network.http.referer.XOriginTrimmingPolicy", 2); - -/*** [SECTION 1700]: CONTAINERS ***/ -user_pref("_user.js.parrot", "1700 syntax error: the parrot's bit the dust!"); -/* 1701: enable Container Tabs and its UI setting [FF50+] - * [SETTING] General>Tabs>Enable Container Tabs - * https://wiki.mozilla.org/Security/Contextual_Identity_Project/Containers ***/ -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); -/* 1702: set behavior on "+ Tab" button to display container menu on left click [FF74+] - * [NOTE] The menu is always shown on long press and right click - * [SETTING] General>Tabs>Enable Container Tabs>Settings>Select a container for each new tab ***/ - // user_pref("privacy.userContext.newTabContainerOnLeftClick.enabled", true); - -/*** [SECTION 2000]: PLUGINS / MEDIA / WEBRTC ***/ -user_pref("_user.js.parrot", "2000 syntax error: the parrot's snuffed it!"); -/* 2002: force WebRTC inside the proxy [FF70+] ***/ -user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true); -/* 2003: force a single network interface for ICE candidates generation [FF42+] - * When using a system-wide proxy, it uses the proxy interface - * [1] https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate - * [2] https://wiki.mozilla.org/Media/WebRTC/Privacy ***/ -user_pref("media.peerconnection.ice.default_address_only", true); -/* 2004: force exclusion of private IPs from ICE candidates [FF51+] - * [SETUP-HARDEN] This will protect your private IP even in TRUSTED scenarios after you - * grant device access, but often results in breakage on video-conferencing platforms ***/ - // user_pref("media.peerconnection.ice.no_host", true); -/* 2020: disable GMP (Gecko Media Plugins) - * [1] https://wiki.mozilla.org/GeckoMediaPlugins ***/ - // user_pref("media.gmp-provider.enabled", false); - -/*** [SECTION 2400]: DOM (DOCUMENT OBJECT MODEL) ***/ -user_pref("_user.js.parrot", "2400 syntax error: the parrot's kicked the bucket!"); -/* 2402: prevent scripts from moving and resizing open windows ***/ -user_pref("dom.disable_window_move_resize", true); - -/*** [SECTION 2600]: MISCELLANEOUS ***/ -user_pref("_user.js.parrot", "2600 syntax error: the parrot's run down the curtain!"); -/* 2603: remove temp files opened from non-PB windows with an external application - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=302433,1738574 ***/ -user_pref("browser.download.start_downloads_in_tmp_dir", true); // [FF102+] -user_pref("browser.helperApps.deleteTempFileOnExit", true); -/* 2606: disable UITour backend so there is no chance that a remote page can use it ***/ -user_pref("browser.uitour.enabled", false); - // user_pref("browser.uitour.url", ""); // Defense-in-depth -/* 2608: reset remote debugging to disabled - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/16222 ***/ -user_pref("devtools.debugger.remote-enabled", false); // [DEFAULT: false] -/* 2615: disable websites overriding Firefox's keyboard shortcuts [FF58+] - * 0 (default) or 1=allow, 2=block - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Override Keyboard Shortcuts ***/ - // user_pref("permissions.default.shortcuts", 2); -/* 2616: remove special permissions for certain mozilla domains [FF35+] - * [1] resource://app/defaults/permissions ***/ -user_pref("permissions.manager.defaultsUrl", ""); -/* 2617: remove webchannel whitelist ***/ -user_pref("webchannel.allowObject.urlWhitelist", ""); -/* 2619: use Punycode in Internationalized Domain Names to eliminate possible spoofing - * [SETUP-WEB] Might be undesirable for non-latin alphabet users since legitimate IDN's are also punycoded - * [TEST] https://www.xn--80ak6aa92e.com/ (www.apple.com) - * [1] https://wiki.mozilla.org/IDN_Display_Algorithm - * [2] https://en.wikipedia.org/wiki/IDN_homograph_attack - * [3] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=punycode+firefox - * [4] https://www.xudongz.com/blog/2017/idn-phishing/ ***/ -user_pref("network.IDN_show_punycode", true); -/* 2620: enforce PDFJS, disable PDFJS scripting - * This setting controls if the option "Display in Firefox" is available in the setting below - * and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With") - * [WHY] pdfjs is lightweight, open source, and secure: the last exploit was June 2015 [1] - * It doesn't break "state separation" of browser content (by not sharing with OS, independent apps). - * It maintains disk avoidance and application data isolation. It's convenient. You can still save to disk. - * [NOTE] JS can still force a pdf to open in-browser by bundling its own code - * [SETUP-CHROME] You may prefer a different pdf reader for security/workflow reasons - * [SETTING] General>Applications>Portable Document Format (PDF) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=pdf.js+firefox ***/ -user_pref("pdfjs.disabled", false); // [DEFAULT: false] -user_pref("pdfjs.enableScripting", false); // [FF86+] -/* 2624: disable middle click on new tab button opening URLs or searches using clipboard [FF115+] */ -user_pref("browser.tabs.searchclipboardfor.middleclick", false); // [DEFAULT: false NON-LINUX] - -/** DOWNLOADS ***/ -/* 2651: enable user interaction for security by always asking where to download - * [SETUP-CHROME] On Android this blocks longtapping and saving images - * [SETTING] General>Downloads>Always ask you where to save files ***/ -user_pref("browser.download.useDownloadDir", false); -/* 2652: disable downloads panel opening on every download [FF96+] ***/ -user_pref("browser.download.alwaysOpenPanel", false); -/* 2653: disable adding downloads to the system's "recent documents" list ***/ -user_pref("browser.download.manager.addToRecentDocs", false); -/* 2654: enable user interaction for security by always asking how to handle new mimetypes [FF101+] - * [SETTING] General>Files and Applications>What should Firefox do with other files ***/ -user_pref("browser.download.always_ask_before_handling_new_types", true); - -/** EXTENSIONS ***/ -/* 2660: limit allowed extension directories - * 1=profile, 2=user, 4=application, 8=system, 16=temporary, 31=all - * The pref value represents the sum: e.g. 5 would be profile and application directories - * [SETUP-CHROME] Breaks usage of files which are installed outside allowed directories - * [1] https://archive.is/DYjAM ***/ -user_pref("extensions.enabledScopes", 5); // [HIDDEN PREF] - // user_pref("extensions.autoDisableScopes", 15); // [DEFAULT: 15] -/* 2661: disable bypassing 3rd party extension install prompts [FF82+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1659530,1681331 ***/ -user_pref("extensions.postDownloadThirdPartyPrompt", false); -/* 2662: disable webextension restrictions on certain mozilla domains (you also need 4503) [FF60+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ - // user_pref("extensions.webextensions.restrictedDomains", ""); - -/*** [SECTION 2700]: ETP (ENHANCED TRACKING PROTECTION) ***/ -user_pref("_user.js.parrot", "2700 syntax error: the parrot's joined the bleedin' choir invisible!"); -/* 2701: enable ETP Strict Mode [FF86+] - * ETP Strict Mode enables Total Cookie Protection (TCP) - * [NOTE] Adding site exceptions disables all ETP protections for that site and increases the risk of - * cross-site state tracking e.g. exceptions for SiteA and SiteB means PartyC on both sites is shared - * [1] https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/ - * [SETTING] to add site exceptions: Urlbar>ETP Shield - * [SETTING] to manage site exceptions: Options>Privacy & Security>Enhanced Tracking Protection>Manage Exceptions ***/ -user_pref("browser.contentblocking.category", "strict"); // [HIDDEN PREF] -/* 2702: disable ETP web compat features [FF93+] - * [SETUP-HARDEN] Includes skip lists, heuristics (SmartBlock) and automatic grants - * Opener and redirect heuristics are granted for 30 days, see [3] - * [1] https://blog.mozilla.org/security/2021/07/13/smartblock-v2/ - * [2] https://hg.mozilla.org/mozilla-central/rev/e5483fd469ab#l4.12 - * [3] https://developer.mozilla.org/en-US/docs/Web/Privacy/State_Partitioning#storage_access_heuristics ***/ - // user_pref("privacy.antitracking.enableWebcompat", false); - -/*** [SECTION 2800]: SHUTDOWN & SANITIZING ***/ -user_pref("_user.js.parrot", "2800 syntax error: the parrot's bleedin' demised!"); -/* 2810: enable Firefox to clear items on shutdown - * [SETTING] Privacy & Security>History>Custom Settings>Clear history when Firefox closes | Settings ***/ -user_pref("privacy.sanitize.sanitizeOnShutdown", true); - -/** SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2811: set/enforce what items to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] If "history" is true, downloads will also be cleared - * [NOTE] "sessions": Active Logins: refers to HTTP Basic Authentication [1], not logins via cookies - * [1] https://en.wikipedia.org/wiki/Basic_access_authentication ***/ -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -/* 2812: set Session Restore to clear on shutdown (if 2810 is true) [FF34+] - * [NOTE] Not needed if Session Restore is not used (0102) or it is already cleared with history (2811) - * [NOTE] If true, this prevents resuming from crashes (also see 5008) ***/ - // user_pref("privacy.clearOnShutdown.openWindows", true); - -/** SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ ***/ -/* 2815: set "Cookies" and "Site Data" to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] Exceptions: A "cookie" block permission also controls "offlineApps" (see note below). - * serviceWorkers require an "Allow" permission. For cross-domain logins, add exceptions for - * both sites e.g. https://www.youtube.com (site) + https://accounts.google.com (single sign on) - * [NOTE] "offlineApps": Offline Website Data: localStorage, service worker cache, QuotaManager (IndexedDB, asm-cache) - * [WARNING] Be selective with what sites you "Allow", as they also disable partitioning (1767271) - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow (when on the website in question) - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("privacy.clearOnShutdown.cookies", true); // Cookies -user_pref("privacy.clearOnShutdown.offlineApps", true); // Site Data - -/** SANITIZE MANUAL: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2820: reset default items to clear with Ctrl-Shift-Del [SETUP-CHROME] - * This dialog can also be accessed from the menu History>Clear Recent History - * Firefox remembers your last choices. This will reset them when you start Firefox - * [NOTE] Regardless of what you set "downloads" to, as soon as the dialog - * for "Clear Recent History" is opened, it is synced to the same as "history" ***/ -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.openWindows", false); // Session Restore - // user_pref("privacy.cpd.passwords", false); - // user_pref("privacy.cpd.siteSettings", false); -/* 2822: reset default "Time range to clear" for "Clear Recent History" (2820) - * Firefox remembers your last choice. This will reset the value when you start Firefox - * 0=everything, 1=last hour, 2=last two hours, 3=last four hours, 4=today - * [NOTE] Values 5 (last 5 minutes) and 6 (last 24 hours) are not listed in the dropdown, - * which will display a blank value, and are not guaranteed to work ***/ -user_pref("privacy.sanitize.timeSpan", 0); - -/*** [SECTION 4500]: RFP (resistFingerprinting) - RFP covers a wide range of ongoing fingerprinting solutions. - It is an all-or-nothing buy in: you cannot pick and choose what parts you want - [TEST] https://arkenfox.github.io/TZP/tzp.html - - [WARNING] DO NOT USE extensions to alter RFP protected metrics - - 418986 - limit window.screen & CSS media queries (FF41) - 1281949 - spoof screen orientation (FF50) - 1330890 - spoof timezone as UTC0 (FF55) - 1360039 - spoof navigator.hardwareConcurrency as 2 (FF55) - FF56 - 1333651 - spoof User Agent & Navigator API - version: android version spoofed as ESR (FF119 or lower) - OS: JS spoofed as Windows 10, OS 10.15, Android 10, or Linux | HTTP Headers spoofed as Windows or Android - 1369319 - disable device sensor API - 1369357 - disable site specific zoom - 1337161 - hide gamepads from content - 1372072 - spoof network information API as "unknown" when dom.netinfo.enabled = true - 1333641 - reduce fingerprinting in WebSpeech API - FF57 - 1369309 - spoof media statistics - 1382499 - reduce screen co-ordinate fingerprinting in Touch API - 1217290 & 1409677 - enable some fingerprinting resistance for WebGL - 1354633 - limit MediaError.message to a whitelist - FF58+ - 1372073 - spoof/block fingerprinting in MediaDevices API (FF59) - Spoof: enumerate devices as one "Internal Camera" and one "Internal Microphone" - Block: suppresses the ondevicechange event - 1039069 - warn when language prefs are not set to "en*" (also see 0210, 0211) (FF59) - 1222285 & 1433592 - spoof keyboard events and suppress keyboard modifier events (FF59) - Spoofing mimics the content language of the document. Currently it only supports en-US. - Modifier events suppressed are SHIFT and both ALT keys. Chrome is not affected. - 1337157 - disable WebGL debug renderer info (FF60) - 1459089 - disable OS locale in HTTP Accept-Language headers (ANDROID) (FF62) - 1479239 - return "no-preference" with prefers-reduced-motion (FF63) - 1363508 - spoof/suppress Pointer Events (FF64) - 1492766 - spoof pointerEvent.pointerid (FF65) - 1485266 - disable exposure of system colors to CSS or canvas (FF67) - 1494034 - return "light" with prefers-color-scheme (FF67) - 1564422 - spoof audioContext outputLatency (FF70) - 1595823 - return audioContext sampleRate as 44100 (FF72) - 1607316 - spoof pointer as coarse and hover as none (ANDROID) (FF74) - 1621433 - randomize canvas (previously FF58+ returned an all-white canvas) (FF78) - 1506364 - return "no-preference" with prefers-contrast (FF80) - 1653987 - limit font visibility to bundled and "Base Fonts" (Windows, Mac, some Linux) (FF80) - 1461454 - spoof smooth=true and powerEfficient=false for supported media in MediaCapabilities (FF82) - 531915 - use fdlibm's sin, cos and tan in jsmath (FF93, ESR91.1) - 1756280 - enforce navigator.pdfViewerEnabled as true and plugins/mimeTypes as hard-coded values (FF100-115) - 1692609 - reduce JS timing precision to 16.67ms (previously FF55+ was 100ms) (FF102) - 1422237 - return "srgb" with color-gamut (FF110) - 1794628 - return "none" with inverted-colors (FF114) -***/ -user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs"); -/* 4501: enable RFP - * [SETUP-WEB] RFP can cause some website breakage: mainly canvas, use a canvas site exception via the urlbar - * RFP also has a few side effects: mainly timezone is UTC0, and websites will prefer light theme - * [NOTE] pbmode applies if true and the original pref is false - * [1] https://bugzilla.mozilla.org/418986 ***/ -user_pref("privacy.resistFingerprinting", true); // [FF41+] - // user_pref("privacy.resistFingerprinting.pbmode", true); // [FF114+] -/* 4502: set new window size rounding max values [FF55+] - * [SETUP-CHROME] sizes round down in hundreds: width to 200s and height to 100s, to fit your screen - * [1] https://bugzilla.mozilla.org/1330882 ***/ -user_pref("privacy.window.maxInnerWidth", 1600); -user_pref("privacy.window.maxInnerHeight", 900); -/* 4503: disable mozAddonManager Web API [FF57+] - * [NOTE] To allow extensions to work on AMO, you also need 2662 - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ -user_pref("privacy.resistFingerprinting.block_mozAddonManager", true); -/* 4504: enable RFP letterboxing [FF67+] - * Dynamically resizes the inner window by applying margins in stepped ranges [2] - * If you use the dimension pref, then it will only apply those resolutions. - * The format is "width1xheight1, width2xheight2, ..." (e.g. "800x600, 1000x1000") - * [SETUP-WEB] This is independent of RFP (4501). If you're not using RFP, or you are but - * dislike the margins, then flip this pref, keeping in mind that it is effectively fingerprintable - * [WARNING] DO NOT USE: the dimension pref is only meant for testing - * [1] https://bugzilla.mozilla.org/1407366 - * [2] https://hg.mozilla.org/mozilla-central/rev/6d2d7856e468#l2.32 ***/ -user_pref("privacy.resistFingerprinting.letterboxing", true); // [HIDDEN PREF] - // user_pref("privacy.resistFingerprinting.letterboxing.dimensions", ""); // [HIDDEN PREF] -/* 4505: experimental RFP [FF91+] - * [WARNING] DO NOT USE unless testing, see [1] comment 12 - * [1] https://bugzilla.mozilla.org/1635603 ***/ - // user_pref("privacy.resistFingerprinting.exemptedDomains", "*.example.invalid"); -/* 4510: disable using system colors - * [SETTING] General>Language and Appearance>Fonts and Colors>Colors>Use system colors ***/ -user_pref("browser.display.use_system_colors", false); // [DEFAULT: false NON-WINDOWS] -/* 4511: enforce non-native widget theme - * Security: removes/reduces system API calls, e.g. win32k API [1] - * Fingerprinting: provides a uniform look and feel across platforms [2] - * [1] https://bugzilla.mozilla.org/1381938 - * [2] https://bugzilla.mozilla.org/1411425 ***/ -user_pref("widget.non-native-theme.enabled", true); // [DEFAULT: true] -/* 4512: enforce links targeting new windows to open in a new tab instead - * 1=most recent window or tab, 2=new window, 3=new tab - * Stops malicious window sizes and some screen resolution leaks. - * You can still right-click a link and open in a new window - * [SETTING] General>Tabs>Open links in tabs instead of new windows - * [TEST] https://arkenfox.github.io/TZP/tzp.html#screen - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/9881 ***/ -user_pref("browser.link.open_newwindow", 3); // [DEFAULT: 3] -/* 4513: set all open window methods to abide by "browser.link.open_newwindow" (4512) - * [1] https://searchfox.org/mozilla-central/source/dom/tests/browser/browser_test_new_window_from_content.js ***/ -user_pref("browser.link.open_newwindow.restriction", 0); -/* 4520: disable WebGL (Web Graphics Library) - * [SETUP-WEB] If you need it then override it. RFP still randomizes canvas for naive scripts ***/ -user_pref("webgl.disabled", true); - -/*** [SECTION 5000]: OPTIONAL OPSEC - Disk avoidance, application data isolation, eyeballs... -***/ -user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow"); -/* 5001: start Firefox in PB (Private Browsing) mode - * [NOTE] In this mode all windows are "private windows" and the PB mode icon is not displayed - * [NOTE] The P in PB mode can be misleading: it means no "persistent" disk state such as history, - * caches, searches, cookies, localStorage, IndexedDB etc (which you can achieve in normal mode). - * In fact, PB mode limits or removes the ability to control some of these, and you need to quit - * Firefox to clear them. PB is best used as a one off window (Menu>New Private Window) to provide - * a temporary self-contained new session. Close all private windows to clear the PB session. - * [SETTING] Privacy & Security>History>Custom Settings>Always use private browsing mode - * [1] https://wiki.mozilla.org/Private_Browsing - * [2] https://support.mozilla.org/kb/common-myths-about-private-browsing ***/ - // user_pref("browser.privatebrowsing.autostart", true); -/* 5002: disable memory cache - * capacity: -1=determine dynamically (default), 0=none, n=memory capacity in kibibytes ***/ - // user_pref("browser.cache.memory.enable", false); - // user_pref("browser.cache.memory.capacity", 0); -/* 5003: disable saving passwords - * [NOTE] This does not clear any passwords already saved - * [SETTING] Privacy & Security>Logins and Passwords>Ask to save logins and passwords for websites ***/ - // user_pref("signon.rememberSignons", false); -/* 5004: disable permissions manager from writing to disk [FF41+] [RESTART] - * [NOTE] This means any permission changes are session only - * [1] https://bugzilla.mozilla.org/967812 ***/ - // user_pref("permissions.memory_only", true); // [HIDDEN PREF] -/* 5005: disable intermediate certificate caching [FF41+] [RESTART] - * [NOTE] This affects login/cert/key dbs. The effect is all credentials are session-only. - * Saved logins and passwords are not available. Reset the pref and restart to return them ***/ - // user_pref("security.nocertdb", true); -/* 5006: disable favicons in history and bookmarks - * [NOTE] Stored as data blobs in favicons.sqlite, these don't reveal anything that your - * actual history (and bookmarks) already do. Your history is more detailed, so - * control that instead; e.g. disable history, clear history on exit, use PB mode - * [NOTE] favicons.sqlite is sanitized on Firefox close ***/ - // user_pref("browser.chrome.site_icons", false); -/* 5007: exclude "Undo Closed Tabs" in Session Restore ***/ - // user_pref("browser.sessionstore.max_tabs_undo", 0); -/* 5008: disable resuming session from crash - * [TEST] about:crashparent ***/ - // user_pref("browser.sessionstore.resume_from_crash", false); -/* 5009: disable "open with" in download dialog [FF50+] - * Application data isolation [1] - * [1] https://bugzilla.mozilla.org/1281959 ***/ - // user_pref("browser.download.forbid_open_with", true); -/* 5010: disable location bar suggestion types - * [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest ***/ - // user_pref("browser.urlbar.suggest.history", false); - // user_pref("browser.urlbar.suggest.bookmark", false); - // user_pref("browser.urlbar.suggest.openpage", false); - // user_pref("browser.urlbar.suggest.topsites", false); // [FF78+] -/* 5011: disable location bar dropdown - * This value controls the total number of entries to appear in the location bar dropdown ***/ - // user_pref("browser.urlbar.maxRichResults", 0); -/* 5012: disable location bar autofill - * [1] https://support.mozilla.org/kb/address-bar-autocomplete-firefox#w_url-autocomplete ***/ - // user_pref("browser.urlbar.autoFill", false); -/* 5013: disable browsing and download history - * [NOTE] We also clear history and downloads on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember browsing and download history ***/ - // user_pref("places.history.enabled", false); -/* 5014: disable Windows jumplist [WINDOWS] ***/ - // user_pref("browser.taskbar.lists.enabled", false); - // user_pref("browser.taskbar.lists.frequent.enabled", false); - // user_pref("browser.taskbar.lists.recent.enabled", false); - // user_pref("browser.taskbar.lists.tasks.enabled", false); -/* 5016: discourage downloading to desktop - * 0=desktop, 1=downloads (default), 2=custom - * [SETTING] To set your custom default "downloads": General>Downloads>Save files to ***/ - // user_pref("browser.download.folderList", 2); -/* 5017: disable Form Autofill - * If .supportedCountries includes your region (browser.search.region) and .supported - * is "detect" (default), then the UI will show. Stored data is not secure, uses JSON - * [SETTING] Privacy & Security>Forms and Autofill>Autofill addresses - * [1] https://wiki.mozilla.org/Firefox/Features/Form_Autofill ***/ - // user_pref("extensions.formautofill.addresses.enabled", false); // [FF55+] - // user_pref("extensions.formautofill.creditCards.enabled", false); // [FF56+] -/* 5018: limit events that can cause a pop-up ***/ - // user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); -/* 5019: disable page thumbnail collection ***/ - // user_pref("browser.pagethumbnails.capturing_disabled", true); // [HIDDEN PREF] -/* 5020: disable Windows native notifications and use app notications instead [FF111+] [WINDOWS] ***/ - // user_pref("alerts.useSystemBackend.windows.notificationserver.enabled", false); -/* 5021: disable location bar using search - * Don't leak URL typos to a search engine, give an error message instead - * Examples: "secretplace,com", "secretplace/com", "secretplace com", "secret place.com" - * [NOTE] This does not affect explicit user action such as using search buttons in the - * dropdown, or using keyword search shortcuts you configure in options (e.g. "d" for DuckDuckGo) ***/ - // user_pref("keyword.enabled", false); - -/*** [SECTION 5500]: OPTIONAL HARDENING - Not recommended. Overriding these can cause breakage and performance issues, - they are mostly fingerprintable, and the threat model is practically nonexistent -***/ -user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!"); -/* 5501: disable MathML (Mathematical Markup Language) [FF51+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=mathml ***/ - // user_pref("mathml.disabled", true); // 1173199 -/* 5502: disable in-content SVG (Scalable Vector Graphics) [FF53+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+svg ***/ - // user_pref("svg.disabled", true); // 1216893 -/* 5503: disable graphite - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+graphite - * [2] https://en.wikipedia.org/wiki/Graphite_(SIL) ***/ - // user_pref("gfx.font_rendering.graphite.enabled", false); -/* 5504: disable asm.js [FF22+] - * [1] http://asmjs.org/ - * [2] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=asm.js - * [3] https://rh0dev.github.io/blog/2017/the-return-of-the-jit/ ***/ - // user_pref("javascript.options.asmjs", false); -/* 5505: disable Ion and baseline JIT to harden against JS exploits - * [NOTE] When both Ion and JIT are disabled, and trustedprincipals - * is enabled, then Ion can still be used by extensions (1599226) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+jit - * [2] https://microsoftedge.github.io/edgevr/posts/Super-Duper-Secure-Mode/ ***/ - // user_pref("javascript.options.ion", false); - // user_pref("javascript.options.baselinejit", false); - // user_pref("javascript.options.jit_trustedprincipals", true); // [FF75+] [HIDDEN PREF] -/* 5506: disable WebAssembly [FF52+] - * Vulnerabilities [1] have increasingly been found, including those known and fixed - * in native programs years ago [2]. WASM has powerful low-level access, making - * certain attacks (brute-force) and vulnerabilities more possible - * [STATS] ~0.2% of websites, about half of which are for cryptomining / malvertising [2][3] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=wasm - * [2] https://spectrum.ieee.org/tech-talk/telecom/security/more-worries-over-the-security-of-web-assembly - * [3] https://www.zdnet.com/article/half-of-the-websites-using-webassembly-use-it-for-malicious-purposes ***/ - // user_pref("javascript.options.wasm", false); -/* 5507: disable rendering of SVG OpenType fonts ***/ - // user_pref("gfx.font_rendering.opentype_svg.enabled", false); -/* 5508: disable all DRM content (EME: Encryption Media Extension) - * Optionally hide the UI setting which also disables the DRM prompt - * [SETTING] General>DRM Content>Play DRM-controlled content - * [TEST] https://bitmovin.com/demos/drm - * [1] https://www.eff.org/deeplinks/2017/10/drms-dead-canary-how-we-just-lost-web-what-we-learned-it-and-what-we-need-do-next ***/ - // user_pref("media.eme.enabled", false); - // user_pref("browser.eme.ui.enabled", false); -/* 5509: disable IPv6 if using a VPN - * This is an application level fallback. Disabling IPv6 is best done at an OS/network - * level, and/or configured properly in system wide VPN setups. - * [SETUP-WEB] PR_CONNECT_RESET_ERROR - * [NOTE] PHP defaults to IPv6 with "localhost". Use "php -S 127.0.0.1:PORT" - * [TEST] https://ipleak.org/ - * [1] https://www.internetsociety.org/tag/ipv6-security/ (Myths 2,4,5,6) ***/ - // user_pref("network.dns.disableIPv6", true); -/* 5510: control when to send a cross-origin referer - * 0=always (default), 1=only if base domains match, 2=only if hosts match - * [NOTE] Will cause breakage: older modems/routers and some sites e.g banks, vimeo, icloud, instagram ***/ - // user_pref("network.http.referer.XOriginPolicy", 2); -/* 5511: set DoH bootstrap address [FF89+] - * Firefox uses the system DNS to initially resolve the IP address of your DoH server. - * When set to a valid, working value that matches your "network.trr.uri" (0712) Firefox - * won't use the system DNS. If the IP doesn't match then DoH won't work ***/ - // user_pref("network.trr.bootstrapAddr", "10.0.0.1"); // [HIDDEN PREF] - -/*** [SECTION 6000]: DON'T TOUCH ***/ -user_pref("_user.js.parrot", "6000 syntax error: the parrot's 'istory!"); -/* 6001: enforce Firefox blocklist - * [WHY] It includes updates for "revoked certificates" - * [1] https://blog.mozilla.org/security/2015/03/03/revoking-intermediate-certificates-introducing-onecrl/ ***/ -user_pref("extensions.blocklist.enabled", true); // [DEFAULT: true] -/* 6002: enforce no referer spoofing - * [WHY] Spoofing can affect CSRF (Cross-Site Request Forgery) protections ***/ -user_pref("network.http.referer.spoofSource", false); // [DEFAULT: false] -/* 6004: enforce a security delay on some confirmation dialogs such as install, open/save - * [1] https://www.squarefree.com/2004/07/01/race-conditions-in-security-dialogs/ ***/ -user_pref("security.dialog_enable_delay", 1000); // [DEFAULT: 1000] -/* 6008: enforce no First Party Isolation [FF51+] - * [WARNING] Replaced with network partitioning (FF85+) and TCP (2701), and enabling FPI - * disables those. FPI is no longer maintained except at Tor Project for Tor Browser's config ***/ -user_pref("privacy.firstparty.isolate", false); // [DEFAULT: false] -/* 6009: enforce SmartBlock shims (about:compat) [FF81+] - * [1] https://blog.mozilla.org/security/2021/03/23/introducing-smartblock/ ***/ -user_pref("extensions.webcompat.enable_shims", true); // [HIDDEN PREF] [DEFAULT: true] -/* 6010: enforce no TLS 1.0/1.1 downgrades - * [TEST] https://tls-v1-1.badssl.com:1010/ ***/ -user_pref("security.tls.version.enable-deprecated", false); // [DEFAULT: false] -/* 6011: enforce disabling of Web Compatibility Reporter [FF56+] - * Web Compatibility Reporter adds a "Report Site Issue" button to send data to Mozilla - * [WHY] To prevent wasting Mozilla's time with a custom setup ***/ -user_pref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false] -/* 6012: enforce Quarantined Domains [FF115+] - * [WHY] https://support.mozilla.org/kb/quarantined-domains */ -user_pref("extensions.quarantinedDomains.enabled", true); // [DEFAULT: true] -/* 6050: prefsCleaner: previously active items removed from arkenfox 115-127 ***/ - // user_pref("accessibility.force_disabled", ""); - // user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", ""); - // user_pref("network.protocol-handler.external.ms-windows-store", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", ""); - // user_pref("privacy.partition.serviceWorkers", ""); - -/*** [SECTION 7000]: DON'T BOTHER ***/ -user_pref("_user.js.parrot", "7000 syntax error: the parrot's pushing up daisies!"); -/* 7001: disable APIs - * Location-Aware Browsing, Full Screen - * [WHY] The API state is easily fingerprintable. - * Geo is behind a prompt (7002). Full screen requires user interaction ***/ - // user_pref("geo.enabled", false); - // user_pref("full-screen-api.enabled", false); -/* 7002: set default permissions - * Location, Camera, Microphone, Notifications [FF58+] Virtual Reality [FF73+] - * 0=always ask (default), 1=allow, 2=block - * [WHY] These are fingerprintable via Permissions API, except VR. Just add site - * exceptions as allow/block for frequently visited/annoying sites: i.e. not global - * [SETTING] to add site exceptions: Ctrl+I>Permissions> - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ - // user_pref("permissions.default.geo", 0); - // user_pref("permissions.default.camera", 0); - // user_pref("permissions.default.microphone", 0); - // user_pref("permissions.default.desktop-notification", 0); - // user_pref("permissions.default.xr", 0); // Virtual Reality -/* 7003: disable non-modern cipher suites [1] - * [WHY] Passive fingerprinting. Minimal/non-existent threat of downgrade attacks - * [1] https://browserleaks.com/ssl ***/ - // user_pref("security.ssl3.ecdhe_ecdsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_ecdsa_aes_256_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_256_sha", false); - // user_pref("security.ssl3.rsa_aes_128_gcm_sha256", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_gcm_sha384", false); // no PFS - // user_pref("security.ssl3.rsa_aes_128_sha", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_sha", false); // no PFS -/* 7004: control TLS versions - * [WHY] Passive fingerprinting and security ***/ - // user_pref("security.tls.version.min", 3); // [DEFAULT: 3] - // user_pref("security.tls.version.max", 4); -/* 7005: disable SSL session IDs [FF36+] - * [WHY] Passive fingerprinting and perf costs. These are session-only - * and isolated with network partitioning (FF85+) and/or containers ***/ - // user_pref("security.ssl.disable_session_identifiers", true); -/* 7006: onions - * [WHY] Firefox doesn't support hidden services. Use Tor Browser ***/ - // user_pref("dom.securecontext.allowlist_onions", true); // [FF97+] 1382359/1744006 - // user_pref("network.http.referer.hideOnionSource", true); // 1305144 -/* 7007: referers - * [WHY] Only cross-origin referers (1602, 5510) matter ***/ - // user_pref("network.http.sendRefererHeader", 2); - // user_pref("network.http.referer.trimmingPolicy", 0); -/* 7008: set the default Referrer Policy [FF59+] - * 0=no-referer, 1=same-origin, 2=strict-origin-when-cross-origin, 3=no-referrer-when-downgrade - * [WHY] Defaults are fine. They can be overridden by a site-controlled Referrer Policy ***/ - // user_pref("network.http.referer.defaultPolicy", 2); // [DEFAULT: 2] - // user_pref("network.http.referer.defaultPolicy.pbmode", 2); // [DEFAULT: 2] -/* 7010: disable HTTP Alternative Services [FF37+] - * [WHY] Already isolated with network partitioning (FF85+) ***/ - // user_pref("network.http.altsvc.enabled", false); -/* 7011: disable website control over browser right-click context menu - * [WHY] Just use Shift-Right-Click ***/ - // user_pref("dom.event.contextmenu.enabled", false); -/* 7012: disable icon fonts (glyphs) and local fallback rendering - * [WHY] Breakage, font fallback is equivalency, also RFP - * [1] https://bugzilla.mozilla.org/789788 - * [2] https://gitlab.torproject.org/legacy/trac/-/issues/8455 ***/ - // user_pref("gfx.downloadable_fonts.enabled", false); // [FF41+] - // user_pref("gfx.downloadable_fonts.fallback_delay", -1); -/* 7013: disable Clipboard API - * [WHY] Fingerprintable. Breakage. Cut/copy/paste require user - * interaction, and paste is limited to focused editable fields ***/ - // user_pref("dom.event.clipboardevents.enabled", false); -/* 7014: disable System Add-on updates - * [WHY] It can compromise security. System addons ship with prefs, use those ***/ - // user_pref("extensions.systemAddon.update.enabled", false); // [FF62+] - // user_pref("extensions.systemAddon.update.url", ""); // [FF44+] -/* 7015: enable the DNT (Do Not Track) HTTP header - * [WHY] DNT is enforced with Tracking Protection which is used in ETP Strict (2701) ***/ - // user_pref("privacy.donottrackheader.enabled", true); -/* 7016: customize ETP settings - * [NOTE] FPP (fingerprintingProtection) is ignored when RFP (4501) is enabled - * [WHY] Arkenfox only supports strict (2701) which sets these at runtime ***/ - // user_pref("network.cookie.cookieBehavior", 5); // [DEFAULT: 5] - // user_pref("privacy.fingerprintingProtection", true); // [FF114+] [ETP FF119+] - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault", true); - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault.top_navigation", true); // [FF100+] - // user_pref("privacy.partition.network_state.ocsp_cache", true); - // user_pref("privacy.query_stripping.enabled", true); // [FF101+] - // user_pref("privacy.trackingprotection.enabled", true); - // user_pref("privacy.trackingprotection.socialtracking.enabled", true); - // user_pref("privacy.trackingprotection.cryptomining.enabled", true); // [DEFAULT: true] - // user_pref("privacy.trackingprotection.fingerprinting.enabled", true); // [DEFAULT: true] -/* 7017: disable service workers - * [WHY] Already isolated with TCP (2701) behind a pref (2710) ***/ - // user_pref("dom.serviceWorkers.enabled", false); -/* 7018: disable Web Notifications [FF22+] - * [WHY] Web Notifications are behind a prompt (7002) - * [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ ***/ - // user_pref("dom.webnotifications.enabled", false); -/* 7019: disable Push Notifications [FF44+] - * [WHY] Push requires subscription - * [NOTE] To remove all subscriptions, reset "dom.push.userAgentID" - * [1] https://support.mozilla.org/kb/push-notifications-firefox ***/ - // user_pref("dom.push.enabled", false); -/* 7020: disable WebRTC (Web Real-Time Communication) - * [WHY] Firefox desktop uses mDNS hostname obfuscation and the private IP is never exposed until - * required in TRUSTED scenarios; i.e. after you grant device (microphone or camera) access - * [TEST] https://browserleaks.com/webrtc - * [1] https://groups.google.com/g/discuss-webrtc/c/6stQXi72BEU/m/2FwZd24UAQAJ - * [2] https://datatracker.ietf.org/doc/html/draft-ietf-mmusic-mdns-ice-candidates#section-3.1.1 ***/ - // user_pref("media.peerconnection.enabled", false); - -/*** [SECTION 8000]: DON'T BOTHER: FINGERPRINTING - [WHY] They are insufficient to help anti-fingerprinting and do more harm than good - [WARNING] DO NOT USE with RFP. RFP already covers these and they can interfere -***/ -user_pref("_user.js.parrot", "8000 syntax error: the parrot's crossed the Jordan"); -/* 8001: prefsCleaner: reset items useless for anti-fingerprinting ***/ - // user_pref("browser.display.use_document_fonts", ""); - // user_pref("browser.zoom.siteSpecific", ""); - // user_pref("device.sensors.enabled", ""); - // user_pref("dom.enable_performance", ""); - // user_pref("dom.enable_resource_timing", ""); - // user_pref("dom.gamepad.enabled", ""); - // user_pref("dom.maxHardwareConcurrency", ""); - // user_pref("dom.w3c_touch_events.enabled", ""); - // user_pref("dom.webaudio.enabled", ""); - // user_pref("font.system.whitelist", ""); - // user_pref("general.appname.override", ""); - // user_pref("general.appversion.override", ""); - // user_pref("general.buildID.override", ""); - // user_pref("general.oscpu.override", ""); - // user_pref("general.platform.override", ""); - // user_pref("general.useragent.override", ""); - // user_pref("media.navigator.enabled", ""); - // user_pref("media.ondevicechange.enabled", ""); - // user_pref("media.video_stats.enabled", ""); - // user_pref("media.webspeech.synth.enabled", ""); - // user_pref("ui.use_standins_for_native_colors", ""); - // user_pref("webgl.enable-debug-renderer-info", ""); - -/*** [SECTION 9000]: NON-PROJECT RELATED ***/ -user_pref("_user.js.parrot", "9000 syntax error: the parrot's cashed in 'is chips!"); -/* 9001: disable welcome notices ***/ -user_pref("browser.startup.homepage_override.mstone", "ignore"); // [HIDDEN PREF] -/* 9002: disable General>Browsing>Recommend extensions/features as you browse [FF67+] ***/ -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); -/* 9003: disable What's New toolbar icon [FF69+] ***/ -user_pref("browser.messaging-system.whatsNewPanel.enabled", false); -/* 9004: disable search terms [FF110+] - * [SETTING] Search>Search Bar>Use the address bar for search and navigation>Show search terms instead of URL... ***/ -user_pref("browser.urlbar.showSearchTerms.enabled", false); - -/*** [SECTION 9999]: DEPRECATED / RENAMED ***/ -user_pref("_user.js.parrot", "9999 syntax error: the parrot's shuffled off 'is mortal coil!"); -/* ESR115.x still uses all the following prefs -// [NOTE] replace the * with a slash in the line above to re-enable active ones -// FF116 -// 4506: set RFP's font visibility level (1402) [FF94+] - // [-] https://bugzilla.mozilla.org/1838415 - // user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1] -// FF117 -// 1221: disable Windows Microsoft Family Safety cert [FF50+] [WINDOWS] - // 0=disable detecting Family Safety mode and importing the root - // 1=only attempt to detect Family Safety mode (don't import the root) - // 2=detect Family Safety mode and import the root - // [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/21686 - // [-] https://bugzilla.mozilla.org/1844908 -user_pref("security.family_safety.mode", 0); -// 7018: disable service worker Web Notifications [FF44+] - // [WHY] Web Notifications are behind a prompt (7002) - // [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ - // [-] https://bugzilla.mozilla.org/1842457 - // user_pref("dom.webnotifications.serviceworker.enabled", false); -// FF118 -// 1402: limit font visibility (Windows, Mac, some Linux) [FF94+] - // Uses hardcoded lists with two parts: kBaseFonts + kLangPackFonts [1], bundled fonts are auto-allowed - // In normal windows: uses the first applicable: RFP over TP over Standard - // In Private Browsing windows: uses the most restrictive between normal and private - // 1=only base system fonts, 2=also fonts from optional language packs, 3=also user-installed fonts - // [1] https://searchfox.org/mozilla-central/search?path=StandardFonts*.inc - // [-] https://bugzilla.mozilla.org/1847599 - // user_pref("layout.css.font-visibility.private", 1); - // user_pref("layout.css.font-visibility.standard", 1); - // user_pref("layout.css.font-visibility.trackingprotection", 1); -// 2623: disable permissions delegation [FF73+] - // Currently applies to cross-origin geolocation, camera, mic and screen-sharing - // permissions, and fullscreen requests. Disabling delegation means any prompts - // for these will show/use their correct 3rd party origin - // [1] https://groups.google.com/forum/#!topic/mozilla.dev.platform/BdFOMAuCGW8/discussion - // [-] https://bugzilla.mozilla.org/1697151 - // user_pref("permissions.delegation.enabled", false); -// FF119 -// 0211: use en-US locale regardless of the system or region locale - // [SETUP-WEB] May break some input methods e.g xim/ibus for CJK languages [1] - // [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=867501,1629630 - // [-] https://bugzilla.mozilla.org/1846224 - // user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF] -// 0711: disable skipping DoH when parental controls are enabled [FF70+] - // [-] https://bugzilla.mozilla.org/1586941 -user_pref("network.dns.skipTRR-when-parental-control-enabled", false); -// ***/ - -/* END: internal custom pref to test for syntax errors ***/ -user_pref("_user.js.parrot", "SUCCESS: No no he's not dead, he's, he's restin'!"); diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2023-12-05_2132 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2023-12-05_2132 deleted file mode 100644 index 05d8210..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2023-12-05_2132 +++ /dev/null @@ -1,1296 +0,0 @@ -/****** -* name: arkenfox user.js -* date: 20 November 2023 -* version: 119 -* urls: https://github.com/arkenfox/user.js [repo] -* : https://arkenfox.github.io/gui/ [interactive] -* license: MIT: https://github.com/arkenfox/user.js/blob/master/LICENSE.txt - -* README: - - 1. Consider using Tor Browser if it meets your needs or fits your threat model - * https://2019.www.torproject.org/about/torusers.html - 2. Read the entire wiki - * https://github.com/arkenfox/user.js/wiki - 3. If you skipped step 2, return to step 2 - 4. Make changes in a user-overrides.js - * There are often trade-offs and conflicts between security vs privacy vs anti-tracking - and these need to be balanced against functionality & convenience & breakage - * Some site breakage and unintended consequences will happen. Everyone's experience will differ - e.g. some user data is erased on exit (section 2800), change this to suit your needs - * While not 100% definitive, search for "[SETUP" tags - 5. Some tag info - [SETUP-SECURITY] it's one item, read it - [SETUP-WEB] can cause some websites to break - [SETUP-CHROME] changes how Firefox itself behaves (i.e. not directly website related) - 6. Override Recipes: https://github.com/arkenfox/user.js/issues/1080 - -* RELEASES: https://github.com/arkenfox/user.js/releases - - * Use the arkenfox release that matches your Firefox version - - DON'T wait for arkenfox to update Firefox, nothing major changes these days - * Each release - - run prefsCleaner to reset prefs made inactive, including deprecated (9999) - * ESR - - It is recommended to not use the updater, or you will get a later version which may cause issues. - So you should manually append your overrides (and keep a copy), and manually update when you - change ESR releases (arkenfox is already past that release) - - If you decide to keep updating, then the onus is on - also see section 9999 - -* INDEX: - - 0100: STARTUP - 0200: GEOLOCATION - 0300: QUIETER FOX - 0400: SAFE BROWSING - 0600: BLOCK IMPLICIT OUTBOUND - 0700: DNS / DoH / PROXY / SOCKS - 0800: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS - 0900: PASSWORDS - 1000: DISK AVOIDANCE - 1200: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - 1600: REFERERS - 1700: CONTAINERS - 2000: PLUGINS / MEDIA / WEBRTC - 2400: DOM (DOCUMENT OBJECT MODEL) - 2600: MISCELLANEOUS - 2700: ETP (ENHANCED TRACKING PROTECTION) - 2800: SHUTDOWN & SANITIZING - 4500: RFP (resistFingerprinting) - 5000: OPTIONAL OPSEC - 5500: OPTIONAL HARDENING - 6000: DON'T TOUCH - 7000: DON'T BOTHER - 8000: DON'T BOTHER: FINGERPRINTING - 9000: NON-PROJECT RELATED - 9999: DEPRECATED / RENAMED - -******/ - -/* START: internal custom pref to test for syntax errors - * [NOTE] Not all syntax errors cause parsing to abort i.e. reaching the last debug pref - * no longer necessarily means that all prefs have been applied. Check the console right - * after startup for any warnings/error messages related to non-applied prefs - * [1] https://blog.mozilla.org/nnethercote/2018/03/09/a-new-preferences-parser-for-firefox/ ***/ -user_pref("_user.js.parrot", "START: Oh yes, the Norwegian Blue... what's wrong with it?"); - -/* 0000: disable about:config warning ***/ -user_pref("browser.aboutConfig.showWarning", false); - -/*** [SECTION 0100]: STARTUP ***/ -user_pref("_user.js.parrot", "0100 syntax error: the parrot's dead!"); -/* 0102: set startup page [SETUP-CHROME] - * 0=blank, 1=home, 2=last visited page, 3=resume previous session - * [NOTE] Session Restore is cleared with history (2811), and not used in Private Browsing mode - * [SETTING] General>Startup>Restore previous session ***/ -user_pref("browser.startup.page", 0); -/* 0103: set HOME+NEWWINDOW page - * about:home=Firefox Home (default, see 0105), custom URL, about:blank - * [SETTING] Home>New Windows and Tabs>Homepage and new windows ***/ -user_pref("browser.startup.homepage", "about:blank"); -/* 0104: set NEWTAB page - * true=Firefox Home (default, see 0105), false=blank page - * [SETTING] Home>New Windows and Tabs>New tabs ***/ -user_pref("browser.newtabpage.enabled", false); -/* 0105: disable sponsored content on Firefox Home (Activity Stream) - * [SETTING] Home>Firefox Home Content ***/ -user_pref("browser.newtabpage.activity-stream.showSponsored", false); // [FF58+] Pocket > Sponsored Stories -user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // [FF83+] Sponsored shortcuts -/* 0106: clear default topsites - * [NOTE] This does not block you from adding your own ***/ -user_pref("browser.newtabpage.activity-stream.default.sites", ""); - -/*** [SECTION 0200]: GEOLOCATION ***/ -user_pref("_user.js.parrot", "0200 syntax error: the parrot's definitely deceased!"); -/* 0201: use Mozilla geolocation service instead of Google if permission is granted [FF74+] - * Optionally enable logging to the console (defaults to false) ***/ -user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%"); - // user_pref("geo.provider.network.logging.enabled", true); // [HIDDEN PREF] -/* 0202: disable using the OS's geolocation service ***/ -user_pref("geo.provider.ms-windows-location", false); // [WINDOWS] -user_pref("geo.provider.use_corelocation", false); // [MAC] -user_pref("geo.provider.use_gpsd", false); // [LINUX] [HIDDEN PREF] -user_pref("geo.provider.use_geoclue", false); // [FF102+] [LINUX] - -/*** [SECTION 0300]: QUIETER FOX ***/ -user_pref("_user.js.parrot", "0300 syntax error: the parrot's not pinin' for the fjords!"); -/** RECOMMENDATIONS ***/ -/* 0320: disable recommendation pane in about:addons (uses Google Analytics) ***/ -user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF] -/* 0321: disable recommendations in about:addons' Extensions and Themes panes [FF68+] ***/ -user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); -/* 0322: disable personalized Extension Recommendations in about:addons and AMO [FF65+] - * [NOTE] This pref has no effect when Health Reports (0331) are disabled - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to make personalized extension recommendations - * [1] https://support.mozilla.org/kb/personalized-extension-recommendations ***/ -user_pref("browser.discovery.enabled", false); -/* 0323: disable shopping experience [FF116+] - * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0 ***/ -user_pref("browser.shopping.experience2023.enabled", false); // [DEFAULT: false] - -/** TELEMETRY ***/ -/* 0330: disable new data submission [FF41+] - * If disabled, no policy is shown or upload takes place, ever - * [1] https://bugzilla.mozilla.org/1195552 ***/ -user_pref("datareporting.policy.dataSubmissionEnabled", false); -/* 0331: disable Health Reports - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send technical... data ***/ -user_pref("datareporting.healthreport.uploadEnabled", false); -/* 0332: disable telemetry - * The "unified" pref affects the behavior of the "enabled" pref - * - If "unified" is false then "enabled" controls the telemetry module - * - If "unified" is true then "enabled" only controls whether to record extended data - * [NOTE] "toolkit.telemetry.enabled" is now LOCKED to reflect prerelease (true) or release builds (false) [2] - * [1] https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html - * [2] https://medium.com/georg-fritzsche/data-preference-changes-in-firefox-58-2d5df9c428b5 ***/ -user_pref("toolkit.telemetry.unified", false); -user_pref("toolkit.telemetry.enabled", false); // see [NOTE] -user_pref("toolkit.telemetry.server", "data:,"); -user_pref("toolkit.telemetry.archive.enabled", false); -user_pref("toolkit.telemetry.newProfilePing.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.shutdownPingSender.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.updatePing.enabled", false); // [FF56+] -user_pref("toolkit.telemetry.bhrPing.enabled", false); // [FF57+] Background Hang Reporter -user_pref("toolkit.telemetry.firstShutdownPing.enabled", false); // [FF57+] -/* 0333: disable Telemetry Coverage - * [1] https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/ ***/ -user_pref("toolkit.telemetry.coverage.opt-out", true); // [HIDDEN PREF] -user_pref("toolkit.coverage.opt-out", true); // [FF64+] [HIDDEN PREF] -user_pref("toolkit.coverage.endpoint.base", ""); -/* 0334: disable PingCentre telemetry (used in several System Add-ons) [FF57+] - * Defense-in-depth: currently covered by 0331 ***/ -user_pref("browser.ping-centre.telemetry", false); -/* 0335: disable Firefox Home (Activity Stream) telemetry ***/ -user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); -user_pref("browser.newtabpage.activity-stream.telemetry", false); - -/** STUDIES ***/ -/* 0340: disable Studies - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to install and run studies ***/ -user_pref("app.shield.optoutstudies.enabled", false); -/* 0341: disable Normandy/Shield [FF60+] - * Shield is a telemetry system that can push and test "recipes" - * [1] https://mozilla.github.io/normandy/ ***/ -user_pref("app.normandy.enabled", false); -user_pref("app.normandy.api_url", ""); - -/** CRASH REPORTS ***/ -/* 0350: disable Crash Reports ***/ -user_pref("breakpad.reportURL", ""); -user_pref("browser.tabs.crashReporting.sendReport", false); // [FF44+] - // user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // [FF51+] [DEFAULT: false] -/* 0351: enforce no submission of backlogged Crash Reports [FF58+] - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send backlogged crash reports ***/ -user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); // [DEFAULT: false] - -/** OTHER ***/ -/* 0360: disable Captive Portal detection - * [1] https://www.eff.org/deeplinks/2017/08/how-captive-portals-interfere-wireless-security-and-privacy ***/ -user_pref("captivedetect.canonicalURL", ""); -user_pref("network.captive-portal-service.enabled", false); // [FF52+] -/* 0361: disable Network Connectivity checks [FF65+] - * [1] https://bugzilla.mozilla.org/1460537 ***/ -user_pref("network.connectivity-service.enabled", false); - -/*** [SECTION 0400]: SAFE BROWSING (SB) - SB has taken many steps to preserve privacy. If required, a full url is never sent - to Google, only a part-hash of the prefix, hidden with noise of other real part-hashes. - Firefox takes measures such as stripping out identifying parameters and since SBv4 (FF57+) - doesn't even use cookies. (#Turn on browser.safebrowsing.debug to monitor this activity) - - [1] https://feeding.cloud.geek.nz/posts/how-safe-browsing-works-in-firefox/ - [2] https://wiki.mozilla.org/Security/Safe_Browsing - [3] https://support.mozilla.org/kb/how-does-phishing-and-malware-protection-work - [4] https://educatedguesswork.org/posts/safe-browsing-privacy/ -***/ -user_pref("_user.js.parrot", "0400 syntax error: the parrot's passed on!"); -/* 0401: disable SB (Safe Browsing) - * [WARNING] Do this at your own risk! These are the master switches - * [SETTING] Privacy & Security>Security>... Block dangerous and deceptive content ***/ - // user_pref("browser.safebrowsing.malware.enabled", false); - // user_pref("browser.safebrowsing.phishing.enabled", false); -/* 0402: disable SB checks for downloads (both local lookups + remote) - * This is the master switch for the safebrowsing.downloads* prefs (0403, 0404) - * [SETTING] Privacy & Security>Security>... "Block dangerous downloads" ***/ - // user_pref("browser.safebrowsing.downloads.enabled", false); -/* 0403: disable SB checks for downloads (remote) - * To verify the safety of certain executable files, Firefox may submit some information about the - * file, including the name, origin, size and a cryptographic hash of the contents, to the Google - * Safe Browsing service which helps Firefox determine whether or not the file should be blocked - * [SETUP-SECURITY] If you do not understand this, or you want this protection, then override this ***/ -user_pref("browser.safebrowsing.downloads.remote.enabled", false); - // user_pref("browser.safebrowsing.downloads.remote.url", ""); // Defense-in-depth -/* 0404: disable SB checks for unwanted software - * [SETTING] Privacy & Security>Security>... "Warn you about unwanted and uncommon software" ***/ - // user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); - // user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); -/* 0405: disable "ignore this warning" on SB warnings [FF45+] - * If clicked, it bypasses the block for that session. This is a means for admins to enforce SB - * [TEST] see https://github.com/arkenfox/user.js/wiki/Appendix-A-Test-Sites#-mozilla - * [1] https://bugzilla.mozilla.org/1226490 ***/ - // user_pref("browser.safebrowsing.allowOverride", false); - -/*** [SECTION 0600]: BLOCK IMPLICIT OUTBOUND [not explicitly asked for - e.g. clicked on] ***/ -user_pref("_user.js.parrot", "0600 syntax error: the parrot's no more!"); -/* 0601: disable link prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Link_prefetching_FAQ ***/ -user_pref("network.prefetch-next", false); -/* 0602: disable DNS prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control ***/ -user_pref("network.dns.disablePrefetch", true); - // user_pref("network.dns.disablePrefetchFromHTTPS", true); // [DEFAULT: true] -/* 0603: disable predictor / prefetching ***/ -user_pref("network.predictor.enabled", false); -user_pref("network.predictor.enable-prefetch", false); // [FF48+] [DEFAULT: false] -/* 0604: disable link-mouseover opening connection to linked server - * [1] https://news.slashdot.org/story/15/08/14/2321202/how-to-quash-firefoxs-silent-requests ***/ -user_pref("network.http.speculative-parallel-limit", 0); -/* 0605: disable mousedown speculative connections on bookmarks and history [FF98+] ***/ -user_pref("browser.places.speculativeConnect.enabled", false); -/* 0610: enforce no "Hyperlink Auditing" (click tracking) - * [1] https://www.bleepingcomputer.com/news/software/major-browsers-to-prevent-disabling-of-click-tracking-privacy-risk/ ***/ - // user_pref("browser.send_pings", false); // [DEFAULT: false] - -/*** [SECTION 0700]: DNS / DoH / PROXY / SOCKS ***/ -user_pref("_user.js.parrot", "0700 syntax error: the parrot's given up the ghost!"); -/* 0702: set the proxy server to do any DNS lookups when using SOCKS - * e.g. in Tor, this stops your local DNS server from knowing your Tor destination - * as a remote Tor node will handle the DNS request - * [1] https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/WebBrowsers ***/ -user_pref("network.proxy.socks_remote_dns", true); -/* 0703: disable using UNC (Uniform Naming Convention) paths [FF61+] - * [SETUP-CHROME] Can break extensions for profiles on network shares - * [1] https://bugzilla.mozilla.org/1413868 ***/ -user_pref("network.file.disable_unc_paths", true); // [HIDDEN PREF] -/* 0704: disable GIO as a potential proxy bypass vector - * Gvfs/GIO has a set of supported protocols like obex, network, archive, computer, - * dav, cdda, gphoto2, trash, etc. From FF87-117, by default only sftp was accepted - * [1] https://bugzilla.mozilla.org/1433507 - * [2] https://en.wikipedia.org/wiki/GVfs - * [3] https://en.wikipedia.org/wiki/GIO_(software) ***/ -user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF] [DEFAULT: "" FF118+] -/* 0705: disable proxy direct failover for system requests [FF91+] - * [WARNING] Default true is a security feature against malicious extensions [1] - * [SETUP-CHROME] If you use a proxy and you trust your extensions - * [1] https://blog.mozilla.org/security/2021/10/25/securing-the-proxy-api-for-firefox-add-ons/ ***/ - // user_pref("network.proxy.failover_direct", false); -/* 0706: disable proxy bypass for system request failures [FF95+] - * RemoteSettings, UpdateService, Telemetry [1] - * [WARNING] If false, this will break the fallback for some security features - * [SETUP-CHROME] If you use a proxy and you understand the security impact - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1732792,1733994,1733481 ***/ - // user_pref("network.proxy.allow_bypass", false); -/* 0710: enable DNS-over-HTTPS (DoH) [FF60+] - * 0=default, 2=increased (TRR (Trusted Recursive Resolver) first), 3=max (TRR only), 5=off (no rollout) - * see "doh-rollout.home-region": USA 2019, Canada 2021, Russia/Ukraine 2022 [3] - * [SETTING] Privacy & Security>DNS over HTTPS - * [1] https://hacks.mozilla.org/2018/05/a-cartoon-intro-to-dns-over-https/ - * [2] https://wiki.mozilla.org/Security/DOH-resolver-policy - * [3] https://support.mozilla.org/en-US/kb/firefox-dns-over-https - * [4] https://www.eff.org/deeplinks/2020/12/dns-doh-and-odoh-oh-my-year-review-2020 ***/ - // user_pref("network.trr.mode", 3); -/* 0712: set DoH provider - * The custom uri is the value shown when you "Choose provider>Custom>" - * [NOTE] If you USE custom then "network.trr.uri" should be set the same - * [SETTING] Privacy & Security>DNS over HTTPS>Increased/Max>Choose provider ***/ - // user_pref("network.trr.uri", "https://example.dns"); - // user_pref("network.trr.custom_uri", "https://example.dns"); - -/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/ -user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!"); -/* 0801: disable location bar making speculative connections [FF56+] - * [1] https://bugzilla.mozilla.org/1348275 ***/ -user_pref("browser.urlbar.speculativeConnect.enabled", false); -/* 0802: disable location bar contextual suggestions - * [SETTING] Privacy & Security>Address Bar>Suggestions from... - * [1] https://blog.mozilla.org/data/2021/09/15/data-and-firefox-suggest/ ***/ -user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false); // [FF95+] -user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false); // [FF92+] -/* 0803: disable live search suggestions - * [NOTE] Both must be true for the location bar to work - * [SETUP-CHROME] Override these if you trust and use a privacy respecting search engine - * [SETTING] Search>Provide search suggestions | Show search suggestions in address bar results ***/ -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -/* 0805: disable urlbar trending search suggestions [FF118+] - * [SETTING] Search>Search Suggestions>Show trending search suggestions (FF119) ***/ -user_pref("browser.urlbar.trending.featureGate", false); -/* 0806: disable urlbar suggestions ***/ -user_pref("browser.urlbar.addons.featureGate", false); // [FF115+] -user_pref("browser.urlbar.mdn.featureGate", false); // [FF117+] [HIDDEN PREF] -user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false] -user_pref("browser.urlbar.weather.featureGate", false); // [FF108+] [DEFAULT: false] -/* 0807: disable urlbar clipboard suggestions [FF118+] ***/ - // user_pref("browser.urlbar.clipboard.featureGate", false); // [DEFAULT: false] -/* 0810: disable search and form history - * [SETUP-WEB] Be aware that autocomplete form data can be read by third parties [1][2] - * [NOTE] We also clear formdata on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember search and form history - * [1] https://blog.mindedsecurity.com/2011/10/autocompleteagain.html - * [2] https://bugzilla.mozilla.org/381681 ***/ -user_pref("browser.formfill.enable", false); -/* 0815: disable tab-to-search [FF85+] - * Alternatively, you can exclude on a per-engine basis by unchecking them in Options>Search - * [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest>Search engines ***/ - // user_pref("browser.urlbar.suggest.engines", false); -/* 0820: disable coloring of visited links - * [SETUP-HARDEN] Bulk rapid history sniffing was mitigated in 2010 [1][2]. Slower and more expensive - * redraw timing attacks were largely mitigated in FF77+ [3]. Using RFP (4501) further hampers timing - * attacks. Don't forget clearing history on exit (2811). However, social engineering [2#limits][4][5] - * and advanced targeted timing attacks could still produce usable results - * [1] https://developer.mozilla.org/docs/Web/CSS/Privacy_and_the_:visited_selector - * [2] https://dbaron.org/mozilla/visited-privacy - * [3] https://bugzilla.mozilla.org/1632765 - * [4] https://earthlng.github.io/testpages/visited_links.html (see github wiki APPENDIX A on how to use) - * [5] https://lcamtuf.blogspot.com/2016/08/css-mix-blend-mode-is-bad-for-keeping.html ***/ - // user_pref("layout.css.visited_links_enabled", false); -/* 0830: enable separate default search engine in Private Windows and its UI setting - * [SETTING] Search>Default Search Engine>Choose a different default search engine for Private Windows only ***/ -user_pref("browser.search.separatePrivateDefault", true); // [FF70+] -user_pref("browser.search.separatePrivateDefault.ui.enabled", true); // [FF71+] - -/*** [SECTION 0900]: PASSWORDS - [1] https://support.mozilla.org/kb/use-primary-password-protect-stored-logins-and-pas -***/ -user_pref("_user.js.parrot", "0900 syntax error: the parrot's expired!"); -/* 0903: disable auto-filling username & password form fields - * can leak in cross-site forms *and* be spoofed - * [NOTE] Username & password is still available when you enter the field - * [SETTING] Privacy & Security>Logins and Passwords>Autofill logins and passwords - * [1] https://freedom-to-tinker.com/2017/12/27/no-boundaries-for-user-identities-web-trackers-exploit-browser-login-managers/ - * [2] https://homes.esat.kuleuven.be/~asenol/leaky-forms/ ***/ -user_pref("signon.autofillForms", false); -/* 0904: disable formless login capture for Password Manager [FF51+] ***/ -user_pref("signon.formlessCapture.enabled", false); -/* 0905: limit (or disable) HTTP authentication credentials dialogs triggered by sub-resources [FF41+] - * hardens against potential credentials phishing - * 0 = don't allow sub-resources to open HTTP authentication credentials dialogs - * 1 = don't allow cross-origin sub-resources to open HTTP authentication credentials dialogs - * 2 = allow sub-resources to open HTTP authentication credentials dialogs (default) ***/ -user_pref("network.auth.subresource-http-auth-allow", 1); -/* 0906: enforce no automatic authentication on Microsoft sites [FF91+] [WINDOWS 10+] - * [SETTING] Privacy & Security>Logins and Passwords>Allow Windows single sign-on for... - * [1] https://support.mozilla.org/kb/windows-sso ***/ - // user_pref("network.http.windows-sso.enabled", false); // [DEFAULT: false] - -/*** [SECTION 1000]: DISK AVOIDANCE ***/ -user_pref("_user.js.parrot", "1000 syntax error: the parrot's gone to meet 'is maker!"); -/* 1001: disable disk cache - * [SETUP-CHROME] If you think disk cache helps perf, then feel free to override this - * [NOTE] We also clear cache on exit (2811) ***/ -user_pref("browser.cache.disk.enable", false); -/* 1002: disable media cache from writing to disk in Private Browsing - * [NOTE] MSE (Media Source Extensions) are already stored in-memory in PB ***/ -user_pref("browser.privatebrowsing.forceMediaMemoryCache", true); // [FF75+] -user_pref("media.memory_cache_max_size", 65536); -/* 1003: disable storing extra session data [SETUP-CHROME] - * define on which sites to save extra session data such as form content, cookies and POST data - * 0=everywhere, 1=unencrypted sites, 2=nowhere ***/ -user_pref("browser.sessionstore.privacy_level", 2); -/* 1005: disable automatic Firefox start and session restore after reboot [FF62+] [WINDOWS] - * [1] https://bugzilla.mozilla.org/603903 ***/ -user_pref("toolkit.winRegisterApplicationRestart", false); -/* 1006: disable favicons in shortcuts [WINDOWS] - * URL shortcuts use a cached randomly named .ico file which is stored in your - * profile/shortcutCache directory. The .ico remains after the shortcut is deleted - * If set to false then the shortcuts use a generic Firefox icon ***/ -user_pref("browser.shell.shortcutFavicons", false); - -/*** [SECTION 1200]: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - Your cipher and other settings can be used in server side fingerprinting - [TEST] https://www.ssllabs.com/ssltest/viewMyClient.html - [TEST] https://browserleaks.com/ssl - [TEST] https://ja3er.com/ - [1] https://www.securityartwork.es/2017/02/02/tls-client-fingerprinting-with-bro/ -***/ -user_pref("_user.js.parrot", "1200 syntax error: the parrot's a stiff!"); -/** SSL (Secure Sockets Layer) / TLS (Transport Layer Security) ***/ -/* 1201: require safe negotiation - * Blocks connections to servers that don't support RFC 5746 [2] as they're potentially vulnerable to a - * MiTM attack [3]. A server without RFC 5746 can be safe from the attack if it disables renegotiations - * but the problem is that the browser can't know that. Setting this pref to true is the only way for the - * browser to ensure there will be no unsafe renegotiations on the channel between the browser and the server - * [SETUP-WEB] SSL_ERROR_UNSAFE_NEGOTIATION: is it worth overriding this for that one site? - * [STATS] SSL Labs (Nov 2023) reports over 99.5% of top sites have secure renegotiation [4] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://datatracker.ietf.org/doc/html/rfc5746 - * [3] https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555 - * [4] https://www.ssllabs.com/ssl-pulse/ ***/ -user_pref("security.ssl.require_safe_negotiation", true); -/* 1206: disable TLS1.3 0-RTT (round-trip time) [FF51+] - * This data is not forward secret, as it is encrypted solely under keys derived using - * the offered PSK. There are no guarantees of non-replay between connections - * [1] https://github.com/tlswg/tls13-spec/issues/1001 - * [2] https://www.rfc-editor.org/rfc/rfc9001.html#name-replay-attacks-with-0-rtt - * [3] https://blog.cloudflare.com/tls-1-3-overview-and-q-and-a/ ***/ -user_pref("security.tls.enable_0rtt_data", false); - -/** OCSP (Online Certificate Status Protocol) - [1] https://scotthelme.co.uk/revocation-is-broken/ - [2] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ -***/ -/* 1211: enforce OCSP fetching to confirm current validity of certificates - * 0=disabled, 1=enabled (default), 2=enabled for EV certificates only - * OCSP (non-stapled) leaks information about the sites you visit to the CA (cert authority) - * It's a trade-off between security (checking) and privacy (leaking info to the CA) - * [NOTE] This pref only controls OCSP fetching and does not affect OCSP stapling - * [SETTING] Privacy & Security>Security>Certificates>Query OCSP responder servers... - * [1] https://en.wikipedia.org/wiki/Ocsp ***/ -user_pref("security.OCSP.enabled", 1); // [DEFAULT: 1] -/* 1212: set OCSP fetch failures (non-stapled, see 1211) to hard-fail - * [SETUP-WEB] SEC_ERROR_OCSP_SERVER_ERROR - * When a CA cannot be reached to validate a cert, Firefox just continues the connection (=soft-fail) - * Setting this pref to true tells Firefox to instead terminate the connection (=hard-fail) - * It is pointless to soft-fail when an OCSP fetch fails: you cannot confirm a cert is still valid (it - * could have been revoked) and/or you could be under attack (e.g. malicious blocking of OCSP servers) - * [1] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ - * [2] https://www.imperialviolet.org/2014/04/19/revchecking.html ***/ -user_pref("security.OCSP.require", true); - -/** CERTS / HPKP (HTTP Public Key Pinning) ***/ -/* 1223: enable strict PKP (Public Key Pinning) - * 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict - * [SETUP-WEB] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE ***/ -user_pref("security.cert_pinning.enforcement_level", 2); -/* 1224: enable CRLite [FF73+] - * 0 = disabled - * 1 = consult CRLite but only collect telemetry - * 2 = consult CRLite and enforce both "Revoked" and "Not Revoked" results - * 3 = consult CRLite and enforce "Not Revoked" results, but defer to OCSP for "Revoked" (default) - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1429800,1670985,1753071 - * [2] https://blog.mozilla.org/security/tag/crlite/ ***/ -user_pref("security.remote_settings.crlite_filters.enabled", true); -user_pref("security.pki.crlite_mode", 2); - -/** MIXED CONTENT ***/ -/* 1241: disable insecure passive content (such as images) on https pages ***/ - // user_pref("security.mixed_content.block_display_content", true); // Defense-in-depth (see 1244) -/* 1244: enable HTTPS-Only mode in all windows - * When the top-level is HTTPS, insecure subresources are also upgraded (silent fail) - * [SETTING] to add site exceptions: Padlock>HTTPS-Only mode>On (after "Continue to HTTP Site") - * [SETTING] Privacy & Security>HTTPS-Only Mode (and manage exceptions) - * [TEST] http://example.com [upgrade] - * [TEST] http://httpforever.com/ | http://http.rip [no upgrade] ***/ -user_pref("dom.security.https_only_mode", true); // [FF76+] - // user_pref("dom.security.https_only_mode_pbm", true); // [FF80+] -/* 1245: enable HTTPS-Only mode for local resources [FF77+] ***/ - // user_pref("dom.security.https_only_mode.upgrade_local", true); -/* 1246: disable HTTP background requests [FF82+] - * When attempting to upgrade, if the server doesn't respond within 3 seconds, Firefox sends - * a top-level HTTP request without path in order to check if the server supports HTTPS or not - * This is done to avoid waiting for a timeout which takes 90 seconds - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1642387,1660945 ***/ -user_pref("dom.security.https_only_mode_send_http_background_request", false); - -/** UI (User Interface) ***/ -/* 1270: display warning on the padlock for "broken security" (if 1201 is false) - * Bug: warning padlock not indicated for subresources on a secure page! [2] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://bugzilla.mozilla.org/1353705 ***/ -user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); -/* 1272: display advanced information on Insecure Connection warning pages - * only works when it's possible to add an exception - * i.e. it doesn't work for HSTS discrepancies (https://subdomain.preloaded-hsts.badssl.com/) - * [TEST] https://expired.badssl.com/ ***/ -user_pref("browser.xul.error_pages.expert_bad_cert", true); - -/*** [SECTION 1600]: REFERERS - full URI: https://example.com:8888/foo/bar.html?id=1234 - scheme+host+port+path: https://example.com:8888/foo/bar.html - scheme+host+port: https://example.com:8888 - [1] https://feeding.cloud.geek.nz/posts/tweaking-referrer-for-privacy-in-firefox/ -***/ -user_pref("_user.js.parrot", "1600 syntax error: the parrot rests in peace!"); -/* 1602: control the amount of cross-origin information to send [FF52+] - * 0=send full URI (default), 1=scheme+host+port+path, 2=scheme+host+port ***/ -user_pref("network.http.referer.XOriginTrimmingPolicy", 2); - -/*** [SECTION 1700]: CONTAINERS ***/ -user_pref("_user.js.parrot", "1700 syntax error: the parrot's bit the dust!"); -/* 1701: enable Container Tabs and its UI setting [FF50+] - * [SETTING] General>Tabs>Enable Container Tabs - * https://wiki.mozilla.org/Security/Contextual_Identity_Project/Containers ***/ -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); -/* 1702: set behavior on "+ Tab" button to display container menu on left click [FF74+] - * [NOTE] The menu is always shown on long press and right click - * [SETTING] General>Tabs>Enable Container Tabs>Settings>Select a container for each new tab ***/ - // user_pref("privacy.userContext.newTabContainerOnLeftClick.enabled", true); - -/*** [SECTION 2000]: PLUGINS / MEDIA / WEBRTC ***/ -user_pref("_user.js.parrot", "2000 syntax error: the parrot's snuffed it!"); -/* 2002: force WebRTC inside the proxy [FF70+] ***/ -user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true); -/* 2003: force a single network interface for ICE candidates generation [FF42+] - * When using a system-wide proxy, it uses the proxy interface - * [1] https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate - * [2] https://wiki.mozilla.org/Media/WebRTC/Privacy ***/ -user_pref("media.peerconnection.ice.default_address_only", true); -/* 2004: force exclusion of private IPs from ICE candidates [FF51+] - * [SETUP-HARDEN] This will protect your private IP even in TRUSTED scenarios after you - * grant device access, but often results in breakage on video-conferencing platforms ***/ - // user_pref("media.peerconnection.ice.no_host", true); -/* 2020: disable GMP (Gecko Media Plugins) - * [1] https://wiki.mozilla.org/GeckoMediaPlugins ***/ - // user_pref("media.gmp-provider.enabled", false); - -/*** [SECTION 2400]: DOM (DOCUMENT OBJECT MODEL) ***/ -user_pref("_user.js.parrot", "2400 syntax error: the parrot's kicked the bucket!"); -/* 2402: prevent scripts from moving and resizing open windows ***/ -user_pref("dom.disable_window_move_resize", true); - -/*** [SECTION 2600]: MISCELLANEOUS ***/ -user_pref("_user.js.parrot", "2600 syntax error: the parrot's run down the curtain!"); -/* 2603: remove temp files opened from non-PB windows with an external application - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=302433,1738574 ***/ -user_pref("browser.download.start_downloads_in_tmp_dir", true); // [FF102+] -user_pref("browser.helperApps.deleteTempFileOnExit", true); -/* 2606: disable UITour backend so there is no chance that a remote page can use it ***/ -user_pref("browser.uitour.enabled", false); - // user_pref("browser.uitour.url", ""); // Defense-in-depth -/* 2608: reset remote debugging to disabled - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/16222 ***/ -user_pref("devtools.debugger.remote-enabled", false); // [DEFAULT: false] -/* 2615: disable websites overriding Firefox's keyboard shortcuts [FF58+] - * 0 (default) or 1=allow, 2=block - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Override Keyboard Shortcuts ***/ - // user_pref("permissions.default.shortcuts", 2); -/* 2616: remove special permissions for certain mozilla domains [FF35+] - * [1] resource://app/defaults/permissions ***/ -user_pref("permissions.manager.defaultsUrl", ""); -/* 2617: remove webchannel whitelist ***/ -user_pref("webchannel.allowObject.urlWhitelist", ""); -/* 2619: use Punycode in Internationalized Domain Names to eliminate possible spoofing - * [SETUP-WEB] Might be undesirable for non-latin alphabet users since legitimate IDN's are also punycoded - * [TEST] https://www.xn--80ak6aa92e.com/ (www.apple.com) - * [1] https://wiki.mozilla.org/IDN_Display_Algorithm - * [2] https://en.wikipedia.org/wiki/IDN_homograph_attack - * [3] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=punycode+firefox - * [4] https://www.xudongz.com/blog/2017/idn-phishing/ ***/ -user_pref("network.IDN_show_punycode", true); -/* 2620: enforce PDFJS, disable PDFJS scripting - * This setting controls if the option "Display in Firefox" is available in the setting below - * and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With") - * [WHY] pdfjs is lightweight, open source, and secure: the last exploit was June 2015 [1] - * It doesn't break "state separation" of browser content (by not sharing with OS, independent apps). - * It maintains disk avoidance and application data isolation. It's convenient. You can still save to disk. - * [NOTE] JS can still force a pdf to open in-browser by bundling its own code - * [SETUP-CHROME] You may prefer a different pdf reader for security/workflow reasons - * [SETTING] General>Applications>Portable Document Format (PDF) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=pdf.js+firefox ***/ -user_pref("pdfjs.disabled", false); // [DEFAULT: false] -user_pref("pdfjs.enableScripting", false); // [FF86+] -/* 2624: disable middle click on new tab button opening URLs or searches using clipboard [FF115+] */ -user_pref("browser.tabs.searchclipboardfor.middleclick", false); // [DEFAULT: false NON-LINUX] - -/** DOWNLOADS ***/ -/* 2651: enable user interaction for security by always asking where to download - * [SETUP-CHROME] On Android this blocks longtapping and saving images - * [SETTING] General>Downloads>Always ask you where to save files ***/ -user_pref("browser.download.useDownloadDir", false); -/* 2652: disable downloads panel opening on every download [FF96+] ***/ -user_pref("browser.download.alwaysOpenPanel", false); -/* 2653: disable adding downloads to the system's "recent documents" list ***/ -user_pref("browser.download.manager.addToRecentDocs", false); -/* 2654: enable user interaction for security by always asking how to handle new mimetypes [FF101+] - * [SETTING] General>Files and Applications>What should Firefox do with other files ***/ -user_pref("browser.download.always_ask_before_handling_new_types", true); - -/** EXTENSIONS ***/ -/* 2660: limit allowed extension directories - * 1=profile, 2=user, 4=application, 8=system, 16=temporary, 31=all - * The pref value represents the sum: e.g. 5 would be profile and application directories - * [SETUP-CHROME] Breaks usage of files which are installed outside allowed directories - * [1] https://archive.is/DYjAM ***/ -user_pref("extensions.enabledScopes", 5); // [HIDDEN PREF] - // user_pref("extensions.autoDisableScopes", 15); // [DEFAULT: 15] -/* 2661: disable bypassing 3rd party extension install prompts [FF82+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1659530,1681331 ***/ -user_pref("extensions.postDownloadThirdPartyPrompt", false); -/* 2662: disable webextension restrictions on certain mozilla domains (you also need 4503) [FF60+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ - // user_pref("extensions.webextensions.restrictedDomains", ""); - -/*** [SECTION 2700]: ETP (ENHANCED TRACKING PROTECTION) ***/ -user_pref("_user.js.parrot", "2700 syntax error: the parrot's joined the bleedin' choir invisible!"); -/* 2701: enable ETP Strict Mode [FF86+] - * ETP Strict Mode enables Total Cookie Protection (TCP) - * [NOTE] Adding site exceptions disables all ETP protections for that site and increases the risk of - * cross-site state tracking e.g. exceptions for SiteA and SiteB means PartyC on both sites is shared - * [1] https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/ - * [SETTING] to add site exceptions: Urlbar>ETP Shield - * [SETTING] to manage site exceptions: Options>Privacy & Security>Enhanced Tracking Protection>Manage Exceptions ***/ -user_pref("browser.contentblocking.category", "strict"); // [HIDDEN PREF] -/* 2702: disable ETP web compat features [FF93+] - * [SETUP-HARDEN] Includes skip lists, heuristics (SmartBlock) and automatic grants - * Opener and redirect heuristics are granted for 30 days, see [3] - * [1] https://blog.mozilla.org/security/2021/07/13/smartblock-v2/ - * [2] https://hg.mozilla.org/mozilla-central/rev/e5483fd469ab#l4.12 - * [3] https://developer.mozilla.org/en-US/docs/Web/Privacy/State_Partitioning#storage_access_heuristics ***/ - // user_pref("privacy.antitracking.enableWebcompat", false); - -/*** [SECTION 2800]: SHUTDOWN & SANITIZING ***/ -user_pref("_user.js.parrot", "2800 syntax error: the parrot's bleedin' demised!"); -/* 2810: enable Firefox to clear items on shutdown - * [SETTING] Privacy & Security>History>Custom Settings>Clear history when Firefox closes | Settings ***/ -user_pref("privacy.sanitize.sanitizeOnShutdown", true); - -/** SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2811: set/enforce what items to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] If "history" is true, downloads will also be cleared - * [NOTE] "sessions": Active Logins: refers to HTTP Basic Authentication [1], not logins via cookies - * [1] https://en.wikipedia.org/wiki/Basic_access_authentication ***/ -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -/* 2812: set Session Restore to clear on shutdown (if 2810 is true) [FF34+] - * [NOTE] Not needed if Session Restore is not used (0102) or it is already cleared with history (2811) - * [NOTE] If true, this prevents resuming from crashes (also see 5008) ***/ - // user_pref("privacy.clearOnShutdown.openWindows", true); - -/** SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ ***/ -/* 2815: set "Cookies" and "Site Data" to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] Exceptions: A "cookie" block permission also controls "offlineApps" (see note below). - * serviceWorkers require an "Allow" permission. For cross-domain logins, add exceptions for - * both sites e.g. https://www.youtube.com (site) + https://accounts.google.com (single sign on) - * [NOTE] "offlineApps": Offline Website Data: localStorage, service worker cache, QuotaManager (IndexedDB, asm-cache) - * [WARNING] Be selective with what sites you "Allow", as they also disable partitioning (1767271) - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow (when on the website in question) - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("privacy.clearOnShutdown.cookies", true); // Cookies -user_pref("privacy.clearOnShutdown.offlineApps", true); // Site Data - -/** SANITIZE MANUAL: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2820: reset default items to clear with Ctrl-Shift-Del [SETUP-CHROME] - * This dialog can also be accessed from the menu History>Clear Recent History - * Firefox remembers your last choices. This will reset them when you start Firefox - * [NOTE] Regardless of what you set "downloads" to, as soon as the dialog - * for "Clear Recent History" is opened, it is synced to the same as "history" ***/ -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.openWindows", false); // Session Restore - // user_pref("privacy.cpd.passwords", false); - // user_pref("privacy.cpd.siteSettings", false); -/* 2822: reset default "Time range to clear" for "Clear Recent History" (2820) - * Firefox remembers your last choice. This will reset the value when you start Firefox - * 0=everything, 1=last hour, 2=last two hours, 3=last four hours, 4=today - * [NOTE] Values 5 (last 5 minutes) and 6 (last 24 hours) are not listed in the dropdown, - * which will display a blank value, and are not guaranteed to work ***/ -user_pref("privacy.sanitize.timeSpan", 0); - -/*** [SECTION 4500]: RFP (resistFingerprinting) - RFP covers a wide range of ongoing fingerprinting solutions. - It is an all-or-nothing buy in: you cannot pick and choose what parts you want - [TEST] https://arkenfox.github.io/TZP/tzp.html - - [WARNING] DO NOT USE extensions to alter RFP protected metrics - - 418986 - limit window.screen & CSS media queries (FF41) - 1281949 - spoof screen orientation (FF50) - 1330890 - spoof timezone as UTC0 (FF55) - 1360039 - spoof navigator.hardwareConcurrency as 2 (FF55) - FF56 - 1333651 - spoof User Agent & Navigator API - version: android version spoofed as ESR (FF119 or lower) - OS: JS spoofed as Windows 10, OS 10.15, Android 10, or Linux | HTTP Headers spoofed as Windows or Android - 1369319 - disable device sensor API - 1369357 - disable site specific zoom - 1337161 - hide gamepads from content - 1372072 - spoof network information API as "unknown" when dom.netinfo.enabled = true - 1333641 - reduce fingerprinting in WebSpeech API - FF57 - 1369309 - spoof media statistics - 1382499 - reduce screen co-ordinate fingerprinting in Touch API - 1217290 & 1409677 - enable some fingerprinting resistance for WebGL - 1354633 - limit MediaError.message to a whitelist - FF58+ - 1372073 - spoof/block fingerprinting in MediaDevices API (FF59) - Spoof: enumerate devices as one "Internal Camera" and one "Internal Microphone" - Block: suppresses the ondevicechange event - 1039069 - warn when language prefs are not set to "en*" (also see 0210, 0211) (FF59) - 1222285 & 1433592 - spoof keyboard events and suppress keyboard modifier events (FF59) - Spoofing mimics the content language of the document. Currently it only supports en-US. - Modifier events suppressed are SHIFT and both ALT keys. Chrome is not affected. - 1337157 - disable WebGL debug renderer info (FF60) - 1459089 - disable OS locale in HTTP Accept-Language headers (ANDROID) (FF62) - 1479239 - return "no-preference" with prefers-reduced-motion (FF63) - 1363508 - spoof/suppress Pointer Events (FF64) - 1492766 - spoof pointerEvent.pointerid (FF65) - 1485266 - disable exposure of system colors to CSS or canvas (FF67) - 1494034 - return "light" with prefers-color-scheme (FF67) - 1564422 - spoof audioContext outputLatency (FF70) - 1595823 - return audioContext sampleRate as 44100 (FF72) - 1607316 - spoof pointer as coarse and hover as none (ANDROID) (FF74) - 1621433 - randomize canvas (previously FF58+ returned an all-white canvas) (FF78) - 1506364 - return "no-preference" with prefers-contrast (FF80) - 1653987 - limit font visibility to bundled and "Base Fonts" (Windows, Mac, some Linux) (FF80) - 1461454 - spoof smooth=true and powerEfficient=false for supported media in MediaCapabilities (FF82) - 531915 - use fdlibm's sin, cos and tan in jsmath (FF93, ESR91.1) - 1756280 - enforce navigator.pdfViewerEnabled as true and plugins/mimeTypes as hard-coded values (FF100-115) - 1692609 - reduce JS timing precision to 16.67ms (previously FF55+ was 100ms) (FF102) - 1422237 - return "srgb" with color-gamut (FF110) - 1794628 - return "none" with inverted-colors (FF114) -***/ -user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs"); -/* 4501: enable RFP - * [SETUP-WEB] RFP can cause some website breakage: mainly canvas, use a canvas site exception via the urlbar - * RFP also has a few side effects: mainly timezone is UTC0, and websites will prefer light theme - * [NOTE] pbmode applies if true and the original pref is false - * [1] https://bugzilla.mozilla.org/418986 ***/ -user_pref("privacy.resistFingerprinting", true); // [FF41+] - // user_pref("privacy.resistFingerprinting.pbmode", true); // [FF114+] -/* 4502: set new window size rounding max values [FF55+] - * [SETUP-CHROME] sizes round down in hundreds: width to 200s and height to 100s, to fit your screen - * [1] https://bugzilla.mozilla.org/1330882 ***/ -user_pref("privacy.window.maxInnerWidth", 1600); -user_pref("privacy.window.maxInnerHeight", 900); -/* 4503: disable mozAddonManager Web API [FF57+] - * [NOTE] To allow extensions to work on AMO, you also need 2662 - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ -user_pref("privacy.resistFingerprinting.block_mozAddonManager", true); -/* 4504: enable RFP letterboxing [FF67+] - * Dynamically resizes the inner window by applying margins in stepped ranges [2] - * If you use the dimension pref, then it will only apply those resolutions. - * The format is "width1xheight1, width2xheight2, ..." (e.g. "800x600, 1000x1000") - * [SETUP-WEB] This is independent of RFP (4501). If you're not using RFP, or you are but - * dislike the margins, then flip this pref, keeping in mind that it is effectively fingerprintable - * [WARNING] DO NOT USE: the dimension pref is only meant for testing - * [1] https://bugzilla.mozilla.org/1407366 - * [2] https://hg.mozilla.org/mozilla-central/rev/6d2d7856e468#l2.32 ***/ -user_pref("privacy.resistFingerprinting.letterboxing", true); // [HIDDEN PREF] - // user_pref("privacy.resistFingerprinting.letterboxing.dimensions", ""); // [HIDDEN PREF] -/* 4505: experimental RFP [FF91+] - * [WARNING] DO NOT USE unless testing, see [1] comment 12 - * [1] https://bugzilla.mozilla.org/1635603 ***/ - // user_pref("privacy.resistFingerprinting.exemptedDomains", "*.example.invalid"); -/* 4510: disable using system colors - * [SETTING] General>Language and Appearance>Fonts and Colors>Colors>Use system colors ***/ -user_pref("browser.display.use_system_colors", false); // [DEFAULT: false NON-WINDOWS] -/* 4511: enforce non-native widget theme - * Security: removes/reduces system API calls, e.g. win32k API [1] - * Fingerprinting: provides a uniform look and feel across platforms [2] - * [1] https://bugzilla.mozilla.org/1381938 - * [2] https://bugzilla.mozilla.org/1411425 ***/ -user_pref("widget.non-native-theme.enabled", true); // [DEFAULT: true] -/* 4512: enforce links targeting new windows to open in a new tab instead - * 1=most recent window or tab, 2=new window, 3=new tab - * Stops malicious window sizes and some screen resolution leaks. - * You can still right-click a link and open in a new window - * [SETTING] General>Tabs>Open links in tabs instead of new windows - * [TEST] https://arkenfox.github.io/TZP/tzp.html#screen - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/9881 ***/ -user_pref("browser.link.open_newwindow", 3); // [DEFAULT: 3] -/* 4513: set all open window methods to abide by "browser.link.open_newwindow" (4512) - * [1] https://searchfox.org/mozilla-central/source/dom/tests/browser/browser_test_new_window_from_content.js ***/ -user_pref("browser.link.open_newwindow.restriction", 0); -/* 4520: disable WebGL (Web Graphics Library) - * [SETUP-WEB] If you need it then override it. RFP still randomizes canvas for naive scripts ***/ -user_pref("webgl.disabled", true); - -/*** [SECTION 5000]: OPTIONAL OPSEC - Disk avoidance, application data isolation, eyeballs... -***/ -user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow"); -/* 5001: start Firefox in PB (Private Browsing) mode - * [NOTE] In this mode all windows are "private windows" and the PB mode icon is not displayed - * [NOTE] The P in PB mode can be misleading: it means no "persistent" disk state such as history, - * caches, searches, cookies, localStorage, IndexedDB etc (which you can achieve in normal mode). - * In fact, PB mode limits or removes the ability to control some of these, and you need to quit - * Firefox to clear them. PB is best used as a one off window (Menu>New Private Window) to provide - * a temporary self-contained new session. Close all private windows to clear the PB session. - * [SETTING] Privacy & Security>History>Custom Settings>Always use private browsing mode - * [1] https://wiki.mozilla.org/Private_Browsing - * [2] https://support.mozilla.org/kb/common-myths-about-private-browsing ***/ - // user_pref("browser.privatebrowsing.autostart", true); -/* 5002: disable memory cache - * capacity: -1=determine dynamically (default), 0=none, n=memory capacity in kibibytes ***/ - // user_pref("browser.cache.memory.enable", false); - // user_pref("browser.cache.memory.capacity", 0); -/* 5003: disable saving passwords - * [NOTE] This does not clear any passwords already saved - * [SETTING] Privacy & Security>Logins and Passwords>Ask to save logins and passwords for websites ***/ - // user_pref("signon.rememberSignons", false); -/* 5004: disable permissions manager from writing to disk [FF41+] [RESTART] - * [NOTE] This means any permission changes are session only - * [1] https://bugzilla.mozilla.org/967812 ***/ - // user_pref("permissions.memory_only", true); // [HIDDEN PREF] -/* 5005: disable intermediate certificate caching [FF41+] [RESTART] - * [NOTE] This affects login/cert/key dbs. The effect is all credentials are session-only. - * Saved logins and passwords are not available. Reset the pref and restart to return them ***/ - // user_pref("security.nocertdb", true); -/* 5006: disable favicons in history and bookmarks - * [NOTE] Stored as data blobs in favicons.sqlite, these don't reveal anything that your - * actual history (and bookmarks) already do. Your history is more detailed, so - * control that instead; e.g. disable history, clear history on exit, use PB mode - * [NOTE] favicons.sqlite is sanitized on Firefox close ***/ - // user_pref("browser.chrome.site_icons", false); -/* 5007: exclude "Undo Closed Tabs" in Session Restore ***/ - // user_pref("browser.sessionstore.max_tabs_undo", 0); -/* 5008: disable resuming session from crash - * [TEST] about:crashparent ***/ - // user_pref("browser.sessionstore.resume_from_crash", false); -/* 5009: disable "open with" in download dialog [FF50+] - * Application data isolation [1] - * [1] https://bugzilla.mozilla.org/1281959 ***/ - // user_pref("browser.download.forbid_open_with", true); -/* 5010: disable location bar suggestion types - * [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest ***/ - // user_pref("browser.urlbar.suggest.history", false); - // user_pref("browser.urlbar.suggest.bookmark", false); - // user_pref("browser.urlbar.suggest.openpage", false); - // user_pref("browser.urlbar.suggest.topsites", false); // [FF78+] -/* 5011: disable location bar dropdown - * This value controls the total number of entries to appear in the location bar dropdown ***/ - // user_pref("browser.urlbar.maxRichResults", 0); -/* 5012: disable location bar autofill - * [1] https://support.mozilla.org/kb/address-bar-autocomplete-firefox#w_url-autocomplete ***/ - // user_pref("browser.urlbar.autoFill", false); -/* 5013: disable browsing and download history - * [NOTE] We also clear history and downloads on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember browsing and download history ***/ - // user_pref("places.history.enabled", false); -/* 5014: disable Windows jumplist [WINDOWS] ***/ - // user_pref("browser.taskbar.lists.enabled", false); - // user_pref("browser.taskbar.lists.frequent.enabled", false); - // user_pref("browser.taskbar.lists.recent.enabled", false); - // user_pref("browser.taskbar.lists.tasks.enabled", false); -/* 5016: discourage downloading to desktop - * 0=desktop, 1=downloads (default), 2=custom - * [SETTING] To set your custom default "downloads": General>Downloads>Save files to ***/ - // user_pref("browser.download.folderList", 2); -/* 5017: disable Form Autofill - * If .supportedCountries includes your region (browser.search.region) and .supported - * is "detect" (default), then the UI will show. Stored data is not secure, uses JSON - * [SETTING] Privacy & Security>Forms and Autofill>Autofill addresses - * [1] https://wiki.mozilla.org/Firefox/Features/Form_Autofill ***/ - // user_pref("extensions.formautofill.addresses.enabled", false); // [FF55+] - // user_pref("extensions.formautofill.creditCards.enabled", false); // [FF56+] -/* 5018: limit events that can cause a pop-up ***/ - // user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); -/* 5019: disable page thumbnail collection ***/ - // user_pref("browser.pagethumbnails.capturing_disabled", true); // [HIDDEN PREF] -/* 5020: disable Windows native notifications and use app notications instead [FF111+] [WINDOWS] ***/ - // user_pref("alerts.useSystemBackend.windows.notificationserver.enabled", false); -/* 5021: disable location bar using search - * Don't leak URL typos to a search engine, give an error message instead - * Examples: "secretplace,com", "secretplace/com", "secretplace com", "secret place.com" - * [NOTE] This does not affect explicit user action such as using search buttons in the - * dropdown, or using keyword search shortcuts you configure in options (e.g. "d" for DuckDuckGo) ***/ - // user_pref("keyword.enabled", false); - -/*** [SECTION 5500]: OPTIONAL HARDENING - Not recommended. Overriding these can cause breakage and performance issues, - they are mostly fingerprintable, and the threat model is practically nonexistent -***/ -user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!"); -/* 5501: disable MathML (Mathematical Markup Language) [FF51+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=mathml ***/ - // user_pref("mathml.disabled", true); // 1173199 -/* 5502: disable in-content SVG (Scalable Vector Graphics) [FF53+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+svg ***/ - // user_pref("svg.disabled", true); // 1216893 -/* 5503: disable graphite - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+graphite - * [2] https://en.wikipedia.org/wiki/Graphite_(SIL) ***/ - // user_pref("gfx.font_rendering.graphite.enabled", false); -/* 5504: disable asm.js [FF22+] - * [1] http://asmjs.org/ - * [2] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=asm.js - * [3] https://rh0dev.github.io/blog/2017/the-return-of-the-jit/ ***/ - // user_pref("javascript.options.asmjs", false); -/* 5505: disable Ion and baseline JIT to harden against JS exploits - * [NOTE] When both Ion and JIT are disabled, and trustedprincipals - * is enabled, then Ion can still be used by extensions (1599226) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+jit - * [2] https://microsoftedge.github.io/edgevr/posts/Super-Duper-Secure-Mode/ ***/ - // user_pref("javascript.options.ion", false); - // user_pref("javascript.options.baselinejit", false); - // user_pref("javascript.options.jit_trustedprincipals", true); // [FF75+] [HIDDEN PREF] -/* 5506: disable WebAssembly [FF52+] - * Vulnerabilities [1] have increasingly been found, including those known and fixed - * in native programs years ago [2]. WASM has powerful low-level access, making - * certain attacks (brute-force) and vulnerabilities more possible - * [STATS] ~0.2% of websites, about half of which are for cryptomining / malvertising [2][3] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=wasm - * [2] https://spectrum.ieee.org/tech-talk/telecom/security/more-worries-over-the-security-of-web-assembly - * [3] https://www.zdnet.com/article/half-of-the-websites-using-webassembly-use-it-for-malicious-purposes ***/ - // user_pref("javascript.options.wasm", false); -/* 5507: disable rendering of SVG OpenType fonts ***/ - // user_pref("gfx.font_rendering.opentype_svg.enabled", false); -/* 5508: disable all DRM content (EME: Encryption Media Extension) - * Optionally hide the UI setting which also disables the DRM prompt - * [SETTING] General>DRM Content>Play DRM-controlled content - * [TEST] https://bitmovin.com/demos/drm - * [1] https://www.eff.org/deeplinks/2017/10/drms-dead-canary-how-we-just-lost-web-what-we-learned-it-and-what-we-need-do-next ***/ - // user_pref("media.eme.enabled", false); - // user_pref("browser.eme.ui.enabled", false); -/* 5509: disable IPv6 if using a VPN - * This is an application level fallback. Disabling IPv6 is best done at an OS/network - * level, and/or configured properly in system wide VPN setups. - * [SETUP-WEB] PR_CONNECT_RESET_ERROR - * [NOTE] PHP defaults to IPv6 with "localhost". Use "php -S 127.0.0.1:PORT" - * [TEST] https://ipleak.org/ - * [1] https://www.internetsociety.org/tag/ipv6-security/ (Myths 2,4,5,6) ***/ - // user_pref("network.dns.disableIPv6", true); -/* 5510: control when to send a cross-origin referer - * 0=always (default), 1=only if base domains match, 2=only if hosts match - * [NOTE] Will cause breakage: older modems/routers and some sites e.g banks, vimeo, icloud, instagram ***/ - // user_pref("network.http.referer.XOriginPolicy", 2); -/* 5511: set DoH bootstrap address [FF89+] - * Firefox uses the system DNS to initially resolve the IP address of your DoH server. - * When set to a valid, working value that matches your "network.trr.uri" (0712) Firefox - * won't use the system DNS. If the IP doesn't match then DoH won't work ***/ - // user_pref("network.trr.bootstrapAddr", "10.0.0.1"); // [HIDDEN PREF] - -/*** [SECTION 6000]: DON'T TOUCH ***/ -user_pref("_user.js.parrot", "6000 syntax error: the parrot's 'istory!"); -/* 6001: enforce Firefox blocklist - * [WHY] It includes updates for "revoked certificates" - * [1] https://blog.mozilla.org/security/2015/03/03/revoking-intermediate-certificates-introducing-onecrl/ ***/ -user_pref("extensions.blocklist.enabled", true); // [DEFAULT: true] -/* 6002: enforce no referer spoofing - * [WHY] Spoofing can affect CSRF (Cross-Site Request Forgery) protections ***/ -user_pref("network.http.referer.spoofSource", false); // [DEFAULT: false] -/* 6004: enforce a security delay on some confirmation dialogs such as install, open/save - * [1] https://www.squarefree.com/2004/07/01/race-conditions-in-security-dialogs/ ***/ -user_pref("security.dialog_enable_delay", 1000); // [DEFAULT: 1000] -/* 6008: enforce no First Party Isolation [FF51+] - * [WARNING] Replaced with network partitioning (FF85+) and TCP (2701), and enabling FPI - * disables those. FPI is no longer maintained except at Tor Project for Tor Browser's config ***/ -user_pref("privacy.firstparty.isolate", false); // [DEFAULT: false] -/* 6009: enforce SmartBlock shims (about:compat) [FF81+] - * [1] https://blog.mozilla.org/security/2021/03/23/introducing-smartblock/ ***/ -user_pref("extensions.webcompat.enable_shims", true); // [HIDDEN PREF] [DEFAULT: true] -/* 6010: enforce no TLS 1.0/1.1 downgrades - * [TEST] https://tls-v1-1.badssl.com:1010/ ***/ -user_pref("security.tls.version.enable-deprecated", false); // [DEFAULT: false] -/* 6011: enforce disabling of Web Compatibility Reporter [FF56+] - * Web Compatibility Reporter adds a "Report Site Issue" button to send data to Mozilla - * [WHY] To prevent wasting Mozilla's time with a custom setup ***/ -user_pref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false] -/* 6012: enforce Quarantined Domains [FF115+] - * [WHY] https://support.mozilla.org/kb/quarantined-domains */ -user_pref("extensions.quarantinedDomains.enabled", true); // [DEFAULT: true] -/* 6050: prefsCleaner: previously active items removed from arkenfox 115-127 ***/ - // user_pref("accessibility.force_disabled", ""); - // user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", ""); - // user_pref("network.protocol-handler.external.ms-windows-store", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", ""); - // user_pref("privacy.partition.serviceWorkers", ""); - -/*** [SECTION 7000]: DON'T BOTHER ***/ -user_pref("_user.js.parrot", "7000 syntax error: the parrot's pushing up daisies!"); -/* 7001: disable APIs - * Location-Aware Browsing, Full Screen - * [WHY] The API state is easily fingerprintable. - * Geo is behind a prompt (7002). Full screen requires user interaction ***/ - // user_pref("geo.enabled", false); - // user_pref("full-screen-api.enabled", false); -/* 7002: set default permissions - * Location, Camera, Microphone, Notifications [FF58+] Virtual Reality [FF73+] - * 0=always ask (default), 1=allow, 2=block - * [WHY] These are fingerprintable via Permissions API, except VR. Just add site - * exceptions as allow/block for frequently visited/annoying sites: i.e. not global - * [SETTING] to add site exceptions: Ctrl+I>Permissions> - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ - // user_pref("permissions.default.geo", 0); - // user_pref("permissions.default.camera", 0); - // user_pref("permissions.default.microphone", 0); - // user_pref("permissions.default.desktop-notification", 0); - // user_pref("permissions.default.xr", 0); // Virtual Reality -/* 7003: disable non-modern cipher suites [1] - * [WHY] Passive fingerprinting. Minimal/non-existent threat of downgrade attacks - * [1] https://browserleaks.com/ssl ***/ - // user_pref("security.ssl3.ecdhe_ecdsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_ecdsa_aes_256_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_256_sha", false); - // user_pref("security.ssl3.rsa_aes_128_gcm_sha256", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_gcm_sha384", false); // no PFS - // user_pref("security.ssl3.rsa_aes_128_sha", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_sha", false); // no PFS -/* 7004: control TLS versions - * [WHY] Passive fingerprinting and security ***/ - // user_pref("security.tls.version.min", 3); // [DEFAULT: 3] - // user_pref("security.tls.version.max", 4); -/* 7005: disable SSL session IDs [FF36+] - * [WHY] Passive fingerprinting and perf costs. These are session-only - * and isolated with network partitioning (FF85+) and/or containers ***/ - // user_pref("security.ssl.disable_session_identifiers", true); -/* 7006: onions - * [WHY] Firefox doesn't support hidden services. Use Tor Browser ***/ - // user_pref("dom.securecontext.allowlist_onions", true); // [FF97+] 1382359/1744006 - // user_pref("network.http.referer.hideOnionSource", true); // 1305144 -/* 7007: referers - * [WHY] Only cross-origin referers (1602, 5510) matter ***/ - // user_pref("network.http.sendRefererHeader", 2); - // user_pref("network.http.referer.trimmingPolicy", 0); -/* 7008: set the default Referrer Policy [FF59+] - * 0=no-referer, 1=same-origin, 2=strict-origin-when-cross-origin, 3=no-referrer-when-downgrade - * [WHY] Defaults are fine. They can be overridden by a site-controlled Referrer Policy ***/ - // user_pref("network.http.referer.defaultPolicy", 2); // [DEFAULT: 2] - // user_pref("network.http.referer.defaultPolicy.pbmode", 2); // [DEFAULT: 2] -/* 7010: disable HTTP Alternative Services [FF37+] - * [WHY] Already isolated with network partitioning (FF85+) ***/ - // user_pref("network.http.altsvc.enabled", false); -/* 7011: disable website control over browser right-click context menu - * [WHY] Just use Shift-Right-Click ***/ - // user_pref("dom.event.contextmenu.enabled", false); -/* 7012: disable icon fonts (glyphs) and local fallback rendering - * [WHY] Breakage, font fallback is equivalency, also RFP - * [1] https://bugzilla.mozilla.org/789788 - * [2] https://gitlab.torproject.org/legacy/trac/-/issues/8455 ***/ - // user_pref("gfx.downloadable_fonts.enabled", false); // [FF41+] - // user_pref("gfx.downloadable_fonts.fallback_delay", -1); -/* 7013: disable Clipboard API - * [WHY] Fingerprintable. Breakage. Cut/copy/paste require user - * interaction, and paste is limited to focused editable fields ***/ - // user_pref("dom.event.clipboardevents.enabled", false); -/* 7014: disable System Add-on updates - * [WHY] It can compromise security. System addons ship with prefs, use those ***/ - // user_pref("extensions.systemAddon.update.enabled", false); // [FF62+] - // user_pref("extensions.systemAddon.update.url", ""); // [FF44+] -/* 7015: enable the DNT (Do Not Track) HTTP header - * [WHY] DNT is enforced with Tracking Protection which is used in ETP Strict (2701) ***/ - // user_pref("privacy.donottrackheader.enabled", true); -/* 7016: customize ETP settings - * [NOTE] FPP (fingerprintingProtection) is ignored when RFP (4501) is enabled - * [WHY] Arkenfox only supports strict (2701) which sets these at runtime ***/ - // user_pref("network.cookie.cookieBehavior", 5); // [DEFAULT: 5] - // user_pref("privacy.fingerprintingProtection", true); // [FF114+] [ETP FF119+] - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault", true); - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault.top_navigation", true); // [FF100+] - // user_pref("privacy.partition.network_state.ocsp_cache", true); - // user_pref("privacy.query_stripping.enabled", true); // [FF101+] - // user_pref("privacy.trackingprotection.enabled", true); - // user_pref("privacy.trackingprotection.socialtracking.enabled", true); - // user_pref("privacy.trackingprotection.cryptomining.enabled", true); // [DEFAULT: true] - // user_pref("privacy.trackingprotection.fingerprinting.enabled", true); // [DEFAULT: true] -/* 7017: disable service workers - * [WHY] Already isolated with TCP (2701) behind a pref (2710) ***/ - // user_pref("dom.serviceWorkers.enabled", false); -/* 7018: disable Web Notifications [FF22+] - * [WHY] Web Notifications are behind a prompt (7002) - * [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ ***/ - // user_pref("dom.webnotifications.enabled", false); -/* 7019: disable Push Notifications [FF44+] - * [WHY] Push requires subscription - * [NOTE] To remove all subscriptions, reset "dom.push.userAgentID" - * [1] https://support.mozilla.org/kb/push-notifications-firefox ***/ - // user_pref("dom.push.enabled", false); -/* 7020: disable WebRTC (Web Real-Time Communication) - * [WHY] Firefox desktop uses mDNS hostname obfuscation and the private IP is never exposed until - * required in TRUSTED scenarios; i.e. after you grant device (microphone or camera) access - * [TEST] https://browserleaks.com/webrtc - * [1] https://groups.google.com/g/discuss-webrtc/c/6stQXi72BEU/m/2FwZd24UAQAJ - * [2] https://datatracker.ietf.org/doc/html/draft-ietf-mmusic-mdns-ice-candidates#section-3.1.1 ***/ - // user_pref("media.peerconnection.enabled", false); - -/*** [SECTION 8000]: DON'T BOTHER: FINGERPRINTING - [WHY] They are insufficient to help anti-fingerprinting and do more harm than good - [WARNING] DO NOT USE with RFP. RFP already covers these and they can interfere -***/ -user_pref("_user.js.parrot", "8000 syntax error: the parrot's crossed the Jordan"); -/* 8001: prefsCleaner: reset items useless for anti-fingerprinting ***/ - // user_pref("browser.display.use_document_fonts", ""); - // user_pref("browser.zoom.siteSpecific", ""); - // user_pref("device.sensors.enabled", ""); - // user_pref("dom.enable_performance", ""); - // user_pref("dom.enable_resource_timing", ""); - // user_pref("dom.gamepad.enabled", ""); - // user_pref("dom.maxHardwareConcurrency", ""); - // user_pref("dom.w3c_touch_events.enabled", ""); - // user_pref("dom.webaudio.enabled", ""); - // user_pref("font.system.whitelist", ""); - // user_pref("general.appname.override", ""); - // user_pref("general.appversion.override", ""); - // user_pref("general.buildID.override", ""); - // user_pref("general.oscpu.override", ""); - // user_pref("general.platform.override", ""); - // user_pref("general.useragent.override", ""); - // user_pref("media.navigator.enabled", ""); - // user_pref("media.ondevicechange.enabled", ""); - // user_pref("media.video_stats.enabled", ""); - // user_pref("media.webspeech.synth.enabled", ""); - // user_pref("ui.use_standins_for_native_colors", ""); - // user_pref("webgl.enable-debug-renderer-info", ""); - -/*** [SECTION 9000]: NON-PROJECT RELATED ***/ -user_pref("_user.js.parrot", "9000 syntax error: the parrot's cashed in 'is chips!"); -/* 9001: disable welcome notices ***/ -user_pref("browser.startup.homepage_override.mstone", "ignore"); // [HIDDEN PREF] -/* 9002: disable General>Browsing>Recommend extensions/features as you browse [FF67+] ***/ -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); -/* 9003: disable What's New toolbar icon [FF69+] ***/ -user_pref("browser.messaging-system.whatsNewPanel.enabled", false); -/* 9004: disable search terms [FF110+] - * [SETTING] Search>Search Bar>Use the address bar for search and navigation>Show search terms instead of URL... ***/ -user_pref("browser.urlbar.showSearchTerms.enabled", false); - -/*** [SECTION 9999]: DEPRECATED / RENAMED ***/ -user_pref("_user.js.parrot", "9999 syntax error: the parrot's shuffled off 'is mortal coil!"); -/* ESR115.x still uses all the following prefs -// [NOTE] replace the * with a slash in the line above to re-enable active ones -// FF116 -// 4506: set RFP's font visibility level (1402) [FF94+] - // [-] https://bugzilla.mozilla.org/1838415 - // user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1] -// FF117 -// 1221: disable Windows Microsoft Family Safety cert [FF50+] [WINDOWS] - // 0=disable detecting Family Safety mode and importing the root - // 1=only attempt to detect Family Safety mode (don't import the root) - // 2=detect Family Safety mode and import the root - // [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/21686 - // [-] https://bugzilla.mozilla.org/1844908 -user_pref("security.family_safety.mode", 0); -// 7018: disable service worker Web Notifications [FF44+] - // [WHY] Web Notifications are behind a prompt (7002) - // [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ - // [-] https://bugzilla.mozilla.org/1842457 - // user_pref("dom.webnotifications.serviceworker.enabled", false); -// FF118 -// 1402: limit font visibility (Windows, Mac, some Linux) [FF94+] - // Uses hardcoded lists with two parts: kBaseFonts + kLangPackFonts [1], bundled fonts are auto-allowed - // In normal windows: uses the first applicable: RFP over TP over Standard - // In Private Browsing windows: uses the most restrictive between normal and private - // 1=only base system fonts, 2=also fonts from optional language packs, 3=also user-installed fonts - // [1] https://searchfox.org/mozilla-central/search?path=StandardFonts*.inc - // [-] https://bugzilla.mozilla.org/1847599 - // user_pref("layout.css.font-visibility.private", 1); - // user_pref("layout.css.font-visibility.standard", 1); - // user_pref("layout.css.font-visibility.trackingprotection", 1); -// 2623: disable permissions delegation [FF73+] - // Currently applies to cross-origin geolocation, camera, mic and screen-sharing - // permissions, and fullscreen requests. Disabling delegation means any prompts - // for these will show/use their correct 3rd party origin - // [1] https://groups.google.com/forum/#!topic/mozilla.dev.platform/BdFOMAuCGW8/discussion - // [-] https://bugzilla.mozilla.org/1697151 - // user_pref("permissions.delegation.enabled", false); -// FF119 -// 0211: use en-US locale regardless of the system or region locale - // [SETUP-WEB] May break some input methods e.g xim/ibus for CJK languages [1] - // [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=867501,1629630 - // [-] https://bugzilla.mozilla.org/1846224 - // user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF] -// 0711: disable skipping DoH when parental controls are enabled [FF70+] - // [-] https://bugzilla.mozilla.org/1586941 -user_pref("network.dns.skipTRR-when-parental-control-enabled", false); -// ***/ - -/* END: internal custom pref to test for syntax errors ***/ -user_pref("_user.js.parrot", "SUCCESS: No no he's not dead, he's, he's restin'!"); - -//I read the wiki -//https://github.com/arkenfox/user.js/wiki/3.2-Overrides-%5BCommon%5D - -//DNS over HTTPS -//Protects web requests from an ISP -//Please pick a provider you trust. -//Disable if you use PiHole, but tools like pfBlocker work fine. -// Cloudflare (default in US & Canada). -//Quad 9: https://dns.quad9.net/dns-query -user_pref("network.trr.uri", "https://mozilla.cloudflare-dns.com/dns-query"); -user_pref("network.trr.mode", 2); - -//Disable Safe Browsing, this phones home to Google. -user_pref("browser.safebrowsing.malware.enabled", false); -user_pref("browser.safebrowsing.phishing.enabled", false); -user_pref("browser.safebrowsing.downloads.enabled", false); - -// Leave IPv6 enabled -user_pref("network.dns.disableIPv6", false); - -//Reenable search engines -user_pref("keyword.enabled", true); -//Enable Search Engine suggestion -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -// Disk caching, which might improve performance if enabled. -user_pref("browser.cache.disk.enable", false); -//Enable favicons, the icons in bookmarks -user_pref("browser.shell.shortcutFavicons", true); -//Enable Mozilla Container Tabs -//Redundant with Total Cookie Protection, but useful if you have multiple accounts -//with the same provider (e.g. a work Google account and a personal Google account) -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); - -// Strict third party requests, may cause images/video to break. -user_pref("network.http.referer.XOriginPolicy", 2); - -//WebRTC settings, things like video calls - // user_pref("media.peerconnection.enabled", false); -// Disable Media Plugins - // user_pref("media.gmp-provider.enabled", false); -// Disable DRM, FCKDRM - // user_pref("media.gmp-widevinecdm.enabled", false); -user_pref("media.eme.enabled", false); -//Autoplaying settings -//0=Allow all, 1=Block non-muted media (default), 5=Block all - // user_pref("media.autoplay.default", 5); -//If some websites REALLY need autoplaying... -//0=sticky (default), 1=transient, 2=user -user_pref("media.autoplay.blocking_policy", 2); - -//Use Disconnect's blocklist to block ads -user_pref("browser.contentblocking.category", "strict"); - -//Delete cookies on close, but see below to make exceptions -/* 2801: delete cookies and site data on exit - //* 0=keep until they expire (default), 2=keep until you close Firefox - * [NOTE] A "cookie" block permission also controls localStorage/sessionStorage, indexedDB, - * sharedWorkers and serviceWorkers. serviceWorkers require an "Allow" permission - * [SETTING] Privacy & Security>Cookies and Site Data>Delete cookies and site data when Firefox is closed - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("network.cookie.lifetimePolicy", 2); -//Disabling disk cache is better, but try this if you like performance - // user_pref("privacy.clearsitedata.cache.enabled", true); - -//Clear data on shutdown -user_pref("privacy.sanitize.sanitizeOnShutdown", true); -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.clearOnShutdown.cookies", false); - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -// Manual wiping, such as the forget-me-not button -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.passwords", false); // [DEFAULT: false] not listed - // user_pref("privacy.cpd.siteSettings", false); // [DEFAULT: false] -// Delete everything ever. -user_pref("privacy.sanitize.timeSpan", 0); -//Delete history, although might be security theater. -//Helps against forensic tools. -user_pref("places.history.enabled", false); - -//WebGL is a security risk, but sometimes breaks things like 23andMe -//or Google Maps (not always). -user_pref("webgl.disabled", true); - -//Firefox stores passwords in plain text and obsolete if you use a password manager. -//Mozilla also told people to stop using their password manager. -user_pref("signon.rememberSignons", false); -//Disable Pocket, it's proprietary trash -user_pref("extensions.pocket.enabled", false); -// Disable Mozilla account -user_pref("identity.fxaccounts.enabled", false); diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2024-08-23_1342 b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2024-08-23_1342 deleted file mode 100644 index 05d8210..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/user.js.backup.2024-08-23_1342 +++ /dev/null @@ -1,1296 +0,0 @@ -/****** -* name: arkenfox user.js -* date: 20 November 2023 -* version: 119 -* urls: https://github.com/arkenfox/user.js [repo] -* : https://arkenfox.github.io/gui/ [interactive] -* license: MIT: https://github.com/arkenfox/user.js/blob/master/LICENSE.txt - -* README: - - 1. Consider using Tor Browser if it meets your needs or fits your threat model - * https://2019.www.torproject.org/about/torusers.html - 2. Read the entire wiki - * https://github.com/arkenfox/user.js/wiki - 3. If you skipped step 2, return to step 2 - 4. Make changes in a user-overrides.js - * There are often trade-offs and conflicts between security vs privacy vs anti-tracking - and these need to be balanced against functionality & convenience & breakage - * Some site breakage and unintended consequences will happen. Everyone's experience will differ - e.g. some user data is erased on exit (section 2800), change this to suit your needs - * While not 100% definitive, search for "[SETUP" tags - 5. Some tag info - [SETUP-SECURITY] it's one item, read it - [SETUP-WEB] can cause some websites to break - [SETUP-CHROME] changes how Firefox itself behaves (i.e. not directly website related) - 6. Override Recipes: https://github.com/arkenfox/user.js/issues/1080 - -* RELEASES: https://github.com/arkenfox/user.js/releases - - * Use the arkenfox release that matches your Firefox version - - DON'T wait for arkenfox to update Firefox, nothing major changes these days - * Each release - - run prefsCleaner to reset prefs made inactive, including deprecated (9999) - * ESR - - It is recommended to not use the updater, or you will get a later version which may cause issues. - So you should manually append your overrides (and keep a copy), and manually update when you - change ESR releases (arkenfox is already past that release) - - If you decide to keep updating, then the onus is on - also see section 9999 - -* INDEX: - - 0100: STARTUP - 0200: GEOLOCATION - 0300: QUIETER FOX - 0400: SAFE BROWSING - 0600: BLOCK IMPLICIT OUTBOUND - 0700: DNS / DoH / PROXY / SOCKS - 0800: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS - 0900: PASSWORDS - 1000: DISK AVOIDANCE - 1200: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - 1600: REFERERS - 1700: CONTAINERS - 2000: PLUGINS / MEDIA / WEBRTC - 2400: DOM (DOCUMENT OBJECT MODEL) - 2600: MISCELLANEOUS - 2700: ETP (ENHANCED TRACKING PROTECTION) - 2800: SHUTDOWN & SANITIZING - 4500: RFP (resistFingerprinting) - 5000: OPTIONAL OPSEC - 5500: OPTIONAL HARDENING - 6000: DON'T TOUCH - 7000: DON'T BOTHER - 8000: DON'T BOTHER: FINGERPRINTING - 9000: NON-PROJECT RELATED - 9999: DEPRECATED / RENAMED - -******/ - -/* START: internal custom pref to test for syntax errors - * [NOTE] Not all syntax errors cause parsing to abort i.e. reaching the last debug pref - * no longer necessarily means that all prefs have been applied. Check the console right - * after startup for any warnings/error messages related to non-applied prefs - * [1] https://blog.mozilla.org/nnethercote/2018/03/09/a-new-preferences-parser-for-firefox/ ***/ -user_pref("_user.js.parrot", "START: Oh yes, the Norwegian Blue... what's wrong with it?"); - -/* 0000: disable about:config warning ***/ -user_pref("browser.aboutConfig.showWarning", false); - -/*** [SECTION 0100]: STARTUP ***/ -user_pref("_user.js.parrot", "0100 syntax error: the parrot's dead!"); -/* 0102: set startup page [SETUP-CHROME] - * 0=blank, 1=home, 2=last visited page, 3=resume previous session - * [NOTE] Session Restore is cleared with history (2811), and not used in Private Browsing mode - * [SETTING] General>Startup>Restore previous session ***/ -user_pref("browser.startup.page", 0); -/* 0103: set HOME+NEWWINDOW page - * about:home=Firefox Home (default, see 0105), custom URL, about:blank - * [SETTING] Home>New Windows and Tabs>Homepage and new windows ***/ -user_pref("browser.startup.homepage", "about:blank"); -/* 0104: set NEWTAB page - * true=Firefox Home (default, see 0105), false=blank page - * [SETTING] Home>New Windows and Tabs>New tabs ***/ -user_pref("browser.newtabpage.enabled", false); -/* 0105: disable sponsored content on Firefox Home (Activity Stream) - * [SETTING] Home>Firefox Home Content ***/ -user_pref("browser.newtabpage.activity-stream.showSponsored", false); // [FF58+] Pocket > Sponsored Stories -user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // [FF83+] Sponsored shortcuts -/* 0106: clear default topsites - * [NOTE] This does not block you from adding your own ***/ -user_pref("browser.newtabpage.activity-stream.default.sites", ""); - -/*** [SECTION 0200]: GEOLOCATION ***/ -user_pref("_user.js.parrot", "0200 syntax error: the parrot's definitely deceased!"); -/* 0201: use Mozilla geolocation service instead of Google if permission is granted [FF74+] - * Optionally enable logging to the console (defaults to false) ***/ -user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%"); - // user_pref("geo.provider.network.logging.enabled", true); // [HIDDEN PREF] -/* 0202: disable using the OS's geolocation service ***/ -user_pref("geo.provider.ms-windows-location", false); // [WINDOWS] -user_pref("geo.provider.use_corelocation", false); // [MAC] -user_pref("geo.provider.use_gpsd", false); // [LINUX] [HIDDEN PREF] -user_pref("geo.provider.use_geoclue", false); // [FF102+] [LINUX] - -/*** [SECTION 0300]: QUIETER FOX ***/ -user_pref("_user.js.parrot", "0300 syntax error: the parrot's not pinin' for the fjords!"); -/** RECOMMENDATIONS ***/ -/* 0320: disable recommendation pane in about:addons (uses Google Analytics) ***/ -user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF] -/* 0321: disable recommendations in about:addons' Extensions and Themes panes [FF68+] ***/ -user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); -/* 0322: disable personalized Extension Recommendations in about:addons and AMO [FF65+] - * [NOTE] This pref has no effect when Health Reports (0331) are disabled - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to make personalized extension recommendations - * [1] https://support.mozilla.org/kb/personalized-extension-recommendations ***/ -user_pref("browser.discovery.enabled", false); -/* 0323: disable shopping experience [FF116+] - * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0 ***/ -user_pref("browser.shopping.experience2023.enabled", false); // [DEFAULT: false] - -/** TELEMETRY ***/ -/* 0330: disable new data submission [FF41+] - * If disabled, no policy is shown or upload takes place, ever - * [1] https://bugzilla.mozilla.org/1195552 ***/ -user_pref("datareporting.policy.dataSubmissionEnabled", false); -/* 0331: disable Health Reports - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send technical... data ***/ -user_pref("datareporting.healthreport.uploadEnabled", false); -/* 0332: disable telemetry - * The "unified" pref affects the behavior of the "enabled" pref - * - If "unified" is false then "enabled" controls the telemetry module - * - If "unified" is true then "enabled" only controls whether to record extended data - * [NOTE] "toolkit.telemetry.enabled" is now LOCKED to reflect prerelease (true) or release builds (false) [2] - * [1] https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html - * [2] https://medium.com/georg-fritzsche/data-preference-changes-in-firefox-58-2d5df9c428b5 ***/ -user_pref("toolkit.telemetry.unified", false); -user_pref("toolkit.telemetry.enabled", false); // see [NOTE] -user_pref("toolkit.telemetry.server", "data:,"); -user_pref("toolkit.telemetry.archive.enabled", false); -user_pref("toolkit.telemetry.newProfilePing.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.shutdownPingSender.enabled", false); // [FF55+] -user_pref("toolkit.telemetry.updatePing.enabled", false); // [FF56+] -user_pref("toolkit.telemetry.bhrPing.enabled", false); // [FF57+] Background Hang Reporter -user_pref("toolkit.telemetry.firstShutdownPing.enabled", false); // [FF57+] -/* 0333: disable Telemetry Coverage - * [1] https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/ ***/ -user_pref("toolkit.telemetry.coverage.opt-out", true); // [HIDDEN PREF] -user_pref("toolkit.coverage.opt-out", true); // [FF64+] [HIDDEN PREF] -user_pref("toolkit.coverage.endpoint.base", ""); -/* 0334: disable PingCentre telemetry (used in several System Add-ons) [FF57+] - * Defense-in-depth: currently covered by 0331 ***/ -user_pref("browser.ping-centre.telemetry", false); -/* 0335: disable Firefox Home (Activity Stream) telemetry ***/ -user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); -user_pref("browser.newtabpage.activity-stream.telemetry", false); - -/** STUDIES ***/ -/* 0340: disable Studies - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to install and run studies ***/ -user_pref("app.shield.optoutstudies.enabled", false); -/* 0341: disable Normandy/Shield [FF60+] - * Shield is a telemetry system that can push and test "recipes" - * [1] https://mozilla.github.io/normandy/ ***/ -user_pref("app.normandy.enabled", false); -user_pref("app.normandy.api_url", ""); - -/** CRASH REPORTS ***/ -/* 0350: disable Crash Reports ***/ -user_pref("breakpad.reportURL", ""); -user_pref("browser.tabs.crashReporting.sendReport", false); // [FF44+] - // user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // [FF51+] [DEFAULT: false] -/* 0351: enforce no submission of backlogged Crash Reports [FF58+] - * [SETTING] Privacy & Security>Firefox Data Collection & Use>Allow Firefox to send backlogged crash reports ***/ -user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); // [DEFAULT: false] - -/** OTHER ***/ -/* 0360: disable Captive Portal detection - * [1] https://www.eff.org/deeplinks/2017/08/how-captive-portals-interfere-wireless-security-and-privacy ***/ -user_pref("captivedetect.canonicalURL", ""); -user_pref("network.captive-portal-service.enabled", false); // [FF52+] -/* 0361: disable Network Connectivity checks [FF65+] - * [1] https://bugzilla.mozilla.org/1460537 ***/ -user_pref("network.connectivity-service.enabled", false); - -/*** [SECTION 0400]: SAFE BROWSING (SB) - SB has taken many steps to preserve privacy. If required, a full url is never sent - to Google, only a part-hash of the prefix, hidden with noise of other real part-hashes. - Firefox takes measures such as stripping out identifying parameters and since SBv4 (FF57+) - doesn't even use cookies. (#Turn on browser.safebrowsing.debug to monitor this activity) - - [1] https://feeding.cloud.geek.nz/posts/how-safe-browsing-works-in-firefox/ - [2] https://wiki.mozilla.org/Security/Safe_Browsing - [3] https://support.mozilla.org/kb/how-does-phishing-and-malware-protection-work - [4] https://educatedguesswork.org/posts/safe-browsing-privacy/ -***/ -user_pref("_user.js.parrot", "0400 syntax error: the parrot's passed on!"); -/* 0401: disable SB (Safe Browsing) - * [WARNING] Do this at your own risk! These are the master switches - * [SETTING] Privacy & Security>Security>... Block dangerous and deceptive content ***/ - // user_pref("browser.safebrowsing.malware.enabled", false); - // user_pref("browser.safebrowsing.phishing.enabled", false); -/* 0402: disable SB checks for downloads (both local lookups + remote) - * This is the master switch for the safebrowsing.downloads* prefs (0403, 0404) - * [SETTING] Privacy & Security>Security>... "Block dangerous downloads" ***/ - // user_pref("browser.safebrowsing.downloads.enabled", false); -/* 0403: disable SB checks for downloads (remote) - * To verify the safety of certain executable files, Firefox may submit some information about the - * file, including the name, origin, size and a cryptographic hash of the contents, to the Google - * Safe Browsing service which helps Firefox determine whether or not the file should be blocked - * [SETUP-SECURITY] If you do not understand this, or you want this protection, then override this ***/ -user_pref("browser.safebrowsing.downloads.remote.enabled", false); - // user_pref("browser.safebrowsing.downloads.remote.url", ""); // Defense-in-depth -/* 0404: disable SB checks for unwanted software - * [SETTING] Privacy & Security>Security>... "Warn you about unwanted and uncommon software" ***/ - // user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); - // user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); -/* 0405: disable "ignore this warning" on SB warnings [FF45+] - * If clicked, it bypasses the block for that session. This is a means for admins to enforce SB - * [TEST] see https://github.com/arkenfox/user.js/wiki/Appendix-A-Test-Sites#-mozilla - * [1] https://bugzilla.mozilla.org/1226490 ***/ - // user_pref("browser.safebrowsing.allowOverride", false); - -/*** [SECTION 0600]: BLOCK IMPLICIT OUTBOUND [not explicitly asked for - e.g. clicked on] ***/ -user_pref("_user.js.parrot", "0600 syntax error: the parrot's no more!"); -/* 0601: disable link prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Link_prefetching_FAQ ***/ -user_pref("network.prefetch-next", false); -/* 0602: disable DNS prefetching - * [1] https://developer.mozilla.org/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control ***/ -user_pref("network.dns.disablePrefetch", true); - // user_pref("network.dns.disablePrefetchFromHTTPS", true); // [DEFAULT: true] -/* 0603: disable predictor / prefetching ***/ -user_pref("network.predictor.enabled", false); -user_pref("network.predictor.enable-prefetch", false); // [FF48+] [DEFAULT: false] -/* 0604: disable link-mouseover opening connection to linked server - * [1] https://news.slashdot.org/story/15/08/14/2321202/how-to-quash-firefoxs-silent-requests ***/ -user_pref("network.http.speculative-parallel-limit", 0); -/* 0605: disable mousedown speculative connections on bookmarks and history [FF98+] ***/ -user_pref("browser.places.speculativeConnect.enabled", false); -/* 0610: enforce no "Hyperlink Auditing" (click tracking) - * [1] https://www.bleepingcomputer.com/news/software/major-browsers-to-prevent-disabling-of-click-tracking-privacy-risk/ ***/ - // user_pref("browser.send_pings", false); // [DEFAULT: false] - -/*** [SECTION 0700]: DNS / DoH / PROXY / SOCKS ***/ -user_pref("_user.js.parrot", "0700 syntax error: the parrot's given up the ghost!"); -/* 0702: set the proxy server to do any DNS lookups when using SOCKS - * e.g. in Tor, this stops your local DNS server from knowing your Tor destination - * as a remote Tor node will handle the DNS request - * [1] https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/WebBrowsers ***/ -user_pref("network.proxy.socks_remote_dns", true); -/* 0703: disable using UNC (Uniform Naming Convention) paths [FF61+] - * [SETUP-CHROME] Can break extensions for profiles on network shares - * [1] https://bugzilla.mozilla.org/1413868 ***/ -user_pref("network.file.disable_unc_paths", true); // [HIDDEN PREF] -/* 0704: disable GIO as a potential proxy bypass vector - * Gvfs/GIO has a set of supported protocols like obex, network, archive, computer, - * dav, cdda, gphoto2, trash, etc. From FF87-117, by default only sftp was accepted - * [1] https://bugzilla.mozilla.org/1433507 - * [2] https://en.wikipedia.org/wiki/GVfs - * [3] https://en.wikipedia.org/wiki/GIO_(software) ***/ -user_pref("network.gio.supported-protocols", ""); // [HIDDEN PREF] [DEFAULT: "" FF118+] -/* 0705: disable proxy direct failover for system requests [FF91+] - * [WARNING] Default true is a security feature against malicious extensions [1] - * [SETUP-CHROME] If you use a proxy and you trust your extensions - * [1] https://blog.mozilla.org/security/2021/10/25/securing-the-proxy-api-for-firefox-add-ons/ ***/ - // user_pref("network.proxy.failover_direct", false); -/* 0706: disable proxy bypass for system request failures [FF95+] - * RemoteSettings, UpdateService, Telemetry [1] - * [WARNING] If false, this will break the fallback for some security features - * [SETUP-CHROME] If you use a proxy and you understand the security impact - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1732792,1733994,1733481 ***/ - // user_pref("network.proxy.allow_bypass", false); -/* 0710: enable DNS-over-HTTPS (DoH) [FF60+] - * 0=default, 2=increased (TRR (Trusted Recursive Resolver) first), 3=max (TRR only), 5=off (no rollout) - * see "doh-rollout.home-region": USA 2019, Canada 2021, Russia/Ukraine 2022 [3] - * [SETTING] Privacy & Security>DNS over HTTPS - * [1] https://hacks.mozilla.org/2018/05/a-cartoon-intro-to-dns-over-https/ - * [2] https://wiki.mozilla.org/Security/DOH-resolver-policy - * [3] https://support.mozilla.org/en-US/kb/firefox-dns-over-https - * [4] https://www.eff.org/deeplinks/2020/12/dns-doh-and-odoh-oh-my-year-review-2020 ***/ - // user_pref("network.trr.mode", 3); -/* 0712: set DoH provider - * The custom uri is the value shown when you "Choose provider>Custom>" - * [NOTE] If you USE custom then "network.trr.uri" should be set the same - * [SETTING] Privacy & Security>DNS over HTTPS>Increased/Max>Choose provider ***/ - // user_pref("network.trr.uri", "https://example.dns"); - // user_pref("network.trr.custom_uri", "https://example.dns"); - -/*** [SECTION 0800]: LOCATION BAR / SEARCH BAR / SUGGESTIONS / HISTORY / FORMS ***/ -user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!"); -/* 0801: disable location bar making speculative connections [FF56+] - * [1] https://bugzilla.mozilla.org/1348275 ***/ -user_pref("browser.urlbar.speculativeConnect.enabled", false); -/* 0802: disable location bar contextual suggestions - * [SETTING] Privacy & Security>Address Bar>Suggestions from... - * [1] https://blog.mozilla.org/data/2021/09/15/data-and-firefox-suggest/ ***/ -user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false); // [FF95+] -user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false); // [FF92+] -/* 0803: disable live search suggestions - * [NOTE] Both must be true for the location bar to work - * [SETUP-CHROME] Override these if you trust and use a privacy respecting search engine - * [SETTING] Search>Provide search suggestions | Show search suggestions in address bar results ***/ -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -/* 0805: disable urlbar trending search suggestions [FF118+] - * [SETTING] Search>Search Suggestions>Show trending search suggestions (FF119) ***/ -user_pref("browser.urlbar.trending.featureGate", false); -/* 0806: disable urlbar suggestions ***/ -user_pref("browser.urlbar.addons.featureGate", false); // [FF115+] -user_pref("browser.urlbar.mdn.featureGate", false); // [FF117+] [HIDDEN PREF] -user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false] -user_pref("browser.urlbar.weather.featureGate", false); // [FF108+] [DEFAULT: false] -/* 0807: disable urlbar clipboard suggestions [FF118+] ***/ - // user_pref("browser.urlbar.clipboard.featureGate", false); // [DEFAULT: false] -/* 0810: disable search and form history - * [SETUP-WEB] Be aware that autocomplete form data can be read by third parties [1][2] - * [NOTE] We also clear formdata on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember search and form history - * [1] https://blog.mindedsecurity.com/2011/10/autocompleteagain.html - * [2] https://bugzilla.mozilla.org/381681 ***/ -user_pref("browser.formfill.enable", false); -/* 0815: disable tab-to-search [FF85+] - * Alternatively, you can exclude on a per-engine basis by unchecking them in Options>Search - * [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest>Search engines ***/ - // user_pref("browser.urlbar.suggest.engines", false); -/* 0820: disable coloring of visited links - * [SETUP-HARDEN] Bulk rapid history sniffing was mitigated in 2010 [1][2]. Slower and more expensive - * redraw timing attacks were largely mitigated in FF77+ [3]. Using RFP (4501) further hampers timing - * attacks. Don't forget clearing history on exit (2811). However, social engineering [2#limits][4][5] - * and advanced targeted timing attacks could still produce usable results - * [1] https://developer.mozilla.org/docs/Web/CSS/Privacy_and_the_:visited_selector - * [2] https://dbaron.org/mozilla/visited-privacy - * [3] https://bugzilla.mozilla.org/1632765 - * [4] https://earthlng.github.io/testpages/visited_links.html (see github wiki APPENDIX A on how to use) - * [5] https://lcamtuf.blogspot.com/2016/08/css-mix-blend-mode-is-bad-for-keeping.html ***/ - // user_pref("layout.css.visited_links_enabled", false); -/* 0830: enable separate default search engine in Private Windows and its UI setting - * [SETTING] Search>Default Search Engine>Choose a different default search engine for Private Windows only ***/ -user_pref("browser.search.separatePrivateDefault", true); // [FF70+] -user_pref("browser.search.separatePrivateDefault.ui.enabled", true); // [FF71+] - -/*** [SECTION 0900]: PASSWORDS - [1] https://support.mozilla.org/kb/use-primary-password-protect-stored-logins-and-pas -***/ -user_pref("_user.js.parrot", "0900 syntax error: the parrot's expired!"); -/* 0903: disable auto-filling username & password form fields - * can leak in cross-site forms *and* be spoofed - * [NOTE] Username & password is still available when you enter the field - * [SETTING] Privacy & Security>Logins and Passwords>Autofill logins and passwords - * [1] https://freedom-to-tinker.com/2017/12/27/no-boundaries-for-user-identities-web-trackers-exploit-browser-login-managers/ - * [2] https://homes.esat.kuleuven.be/~asenol/leaky-forms/ ***/ -user_pref("signon.autofillForms", false); -/* 0904: disable formless login capture for Password Manager [FF51+] ***/ -user_pref("signon.formlessCapture.enabled", false); -/* 0905: limit (or disable) HTTP authentication credentials dialogs triggered by sub-resources [FF41+] - * hardens against potential credentials phishing - * 0 = don't allow sub-resources to open HTTP authentication credentials dialogs - * 1 = don't allow cross-origin sub-resources to open HTTP authentication credentials dialogs - * 2 = allow sub-resources to open HTTP authentication credentials dialogs (default) ***/ -user_pref("network.auth.subresource-http-auth-allow", 1); -/* 0906: enforce no automatic authentication on Microsoft sites [FF91+] [WINDOWS 10+] - * [SETTING] Privacy & Security>Logins and Passwords>Allow Windows single sign-on for... - * [1] https://support.mozilla.org/kb/windows-sso ***/ - // user_pref("network.http.windows-sso.enabled", false); // [DEFAULT: false] - -/*** [SECTION 1000]: DISK AVOIDANCE ***/ -user_pref("_user.js.parrot", "1000 syntax error: the parrot's gone to meet 'is maker!"); -/* 1001: disable disk cache - * [SETUP-CHROME] If you think disk cache helps perf, then feel free to override this - * [NOTE] We also clear cache on exit (2811) ***/ -user_pref("browser.cache.disk.enable", false); -/* 1002: disable media cache from writing to disk in Private Browsing - * [NOTE] MSE (Media Source Extensions) are already stored in-memory in PB ***/ -user_pref("browser.privatebrowsing.forceMediaMemoryCache", true); // [FF75+] -user_pref("media.memory_cache_max_size", 65536); -/* 1003: disable storing extra session data [SETUP-CHROME] - * define on which sites to save extra session data such as form content, cookies and POST data - * 0=everywhere, 1=unencrypted sites, 2=nowhere ***/ -user_pref("browser.sessionstore.privacy_level", 2); -/* 1005: disable automatic Firefox start and session restore after reboot [FF62+] [WINDOWS] - * [1] https://bugzilla.mozilla.org/603903 ***/ -user_pref("toolkit.winRegisterApplicationRestart", false); -/* 1006: disable favicons in shortcuts [WINDOWS] - * URL shortcuts use a cached randomly named .ico file which is stored in your - * profile/shortcutCache directory. The .ico remains after the shortcut is deleted - * If set to false then the shortcuts use a generic Firefox icon ***/ -user_pref("browser.shell.shortcutFavicons", false); - -/*** [SECTION 1200]: HTTPS (SSL/TLS / OCSP / CERTS / HPKP) - Your cipher and other settings can be used in server side fingerprinting - [TEST] https://www.ssllabs.com/ssltest/viewMyClient.html - [TEST] https://browserleaks.com/ssl - [TEST] https://ja3er.com/ - [1] https://www.securityartwork.es/2017/02/02/tls-client-fingerprinting-with-bro/ -***/ -user_pref("_user.js.parrot", "1200 syntax error: the parrot's a stiff!"); -/** SSL (Secure Sockets Layer) / TLS (Transport Layer Security) ***/ -/* 1201: require safe negotiation - * Blocks connections to servers that don't support RFC 5746 [2] as they're potentially vulnerable to a - * MiTM attack [3]. A server without RFC 5746 can be safe from the attack if it disables renegotiations - * but the problem is that the browser can't know that. Setting this pref to true is the only way for the - * browser to ensure there will be no unsafe renegotiations on the channel between the browser and the server - * [SETUP-WEB] SSL_ERROR_UNSAFE_NEGOTIATION: is it worth overriding this for that one site? - * [STATS] SSL Labs (Nov 2023) reports over 99.5% of top sites have secure renegotiation [4] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://datatracker.ietf.org/doc/html/rfc5746 - * [3] https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555 - * [4] https://www.ssllabs.com/ssl-pulse/ ***/ -user_pref("security.ssl.require_safe_negotiation", true); -/* 1206: disable TLS1.3 0-RTT (round-trip time) [FF51+] - * This data is not forward secret, as it is encrypted solely under keys derived using - * the offered PSK. There are no guarantees of non-replay between connections - * [1] https://github.com/tlswg/tls13-spec/issues/1001 - * [2] https://www.rfc-editor.org/rfc/rfc9001.html#name-replay-attacks-with-0-rtt - * [3] https://blog.cloudflare.com/tls-1-3-overview-and-q-and-a/ ***/ -user_pref("security.tls.enable_0rtt_data", false); - -/** OCSP (Online Certificate Status Protocol) - [1] https://scotthelme.co.uk/revocation-is-broken/ - [2] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ -***/ -/* 1211: enforce OCSP fetching to confirm current validity of certificates - * 0=disabled, 1=enabled (default), 2=enabled for EV certificates only - * OCSP (non-stapled) leaks information about the sites you visit to the CA (cert authority) - * It's a trade-off between security (checking) and privacy (leaking info to the CA) - * [NOTE] This pref only controls OCSP fetching and does not affect OCSP stapling - * [SETTING] Privacy & Security>Security>Certificates>Query OCSP responder servers... - * [1] https://en.wikipedia.org/wiki/Ocsp ***/ -user_pref("security.OCSP.enabled", 1); // [DEFAULT: 1] -/* 1212: set OCSP fetch failures (non-stapled, see 1211) to hard-fail - * [SETUP-WEB] SEC_ERROR_OCSP_SERVER_ERROR - * When a CA cannot be reached to validate a cert, Firefox just continues the connection (=soft-fail) - * Setting this pref to true tells Firefox to instead terminate the connection (=hard-fail) - * It is pointless to soft-fail when an OCSP fetch fails: you cannot confirm a cert is still valid (it - * could have been revoked) and/or you could be under attack (e.g. malicious blocking of OCSP servers) - * [1] https://blog.mozilla.org/security/2013/07/29/ocsp-stapling-in-firefox/ - * [2] https://www.imperialviolet.org/2014/04/19/revchecking.html ***/ -user_pref("security.OCSP.require", true); - -/** CERTS / HPKP (HTTP Public Key Pinning) ***/ -/* 1223: enable strict PKP (Public Key Pinning) - * 0=disabled, 1=allow user MiTM (default; such as your antivirus), 2=strict - * [SETUP-WEB] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE ***/ -user_pref("security.cert_pinning.enforcement_level", 2); -/* 1224: enable CRLite [FF73+] - * 0 = disabled - * 1 = consult CRLite but only collect telemetry - * 2 = consult CRLite and enforce both "Revoked" and "Not Revoked" results - * 3 = consult CRLite and enforce "Not Revoked" results, but defer to OCSP for "Revoked" (default) - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1429800,1670985,1753071 - * [2] https://blog.mozilla.org/security/tag/crlite/ ***/ -user_pref("security.remote_settings.crlite_filters.enabled", true); -user_pref("security.pki.crlite_mode", 2); - -/** MIXED CONTENT ***/ -/* 1241: disable insecure passive content (such as images) on https pages ***/ - // user_pref("security.mixed_content.block_display_content", true); // Defense-in-depth (see 1244) -/* 1244: enable HTTPS-Only mode in all windows - * When the top-level is HTTPS, insecure subresources are also upgraded (silent fail) - * [SETTING] to add site exceptions: Padlock>HTTPS-Only mode>On (after "Continue to HTTP Site") - * [SETTING] Privacy & Security>HTTPS-Only Mode (and manage exceptions) - * [TEST] http://example.com [upgrade] - * [TEST] http://httpforever.com/ | http://http.rip [no upgrade] ***/ -user_pref("dom.security.https_only_mode", true); // [FF76+] - // user_pref("dom.security.https_only_mode_pbm", true); // [FF80+] -/* 1245: enable HTTPS-Only mode for local resources [FF77+] ***/ - // user_pref("dom.security.https_only_mode.upgrade_local", true); -/* 1246: disable HTTP background requests [FF82+] - * When attempting to upgrade, if the server doesn't respond within 3 seconds, Firefox sends - * a top-level HTTP request without path in order to check if the server supports HTTPS or not - * This is done to avoid waiting for a timeout which takes 90 seconds - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1642387,1660945 ***/ -user_pref("dom.security.https_only_mode_send_http_background_request", false); - -/** UI (User Interface) ***/ -/* 1270: display warning on the padlock for "broken security" (if 1201 is false) - * Bug: warning padlock not indicated for subresources on a secure page! [2] - * [1] https://wiki.mozilla.org/Security:Renegotiation - * [2] https://bugzilla.mozilla.org/1353705 ***/ -user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); -/* 1272: display advanced information on Insecure Connection warning pages - * only works when it's possible to add an exception - * i.e. it doesn't work for HSTS discrepancies (https://subdomain.preloaded-hsts.badssl.com/) - * [TEST] https://expired.badssl.com/ ***/ -user_pref("browser.xul.error_pages.expert_bad_cert", true); - -/*** [SECTION 1600]: REFERERS - full URI: https://example.com:8888/foo/bar.html?id=1234 - scheme+host+port+path: https://example.com:8888/foo/bar.html - scheme+host+port: https://example.com:8888 - [1] https://feeding.cloud.geek.nz/posts/tweaking-referrer-for-privacy-in-firefox/ -***/ -user_pref("_user.js.parrot", "1600 syntax error: the parrot rests in peace!"); -/* 1602: control the amount of cross-origin information to send [FF52+] - * 0=send full URI (default), 1=scheme+host+port+path, 2=scheme+host+port ***/ -user_pref("network.http.referer.XOriginTrimmingPolicy", 2); - -/*** [SECTION 1700]: CONTAINERS ***/ -user_pref("_user.js.parrot", "1700 syntax error: the parrot's bit the dust!"); -/* 1701: enable Container Tabs and its UI setting [FF50+] - * [SETTING] General>Tabs>Enable Container Tabs - * https://wiki.mozilla.org/Security/Contextual_Identity_Project/Containers ***/ -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); -/* 1702: set behavior on "+ Tab" button to display container menu on left click [FF74+] - * [NOTE] The menu is always shown on long press and right click - * [SETTING] General>Tabs>Enable Container Tabs>Settings>Select a container for each new tab ***/ - // user_pref("privacy.userContext.newTabContainerOnLeftClick.enabled", true); - -/*** [SECTION 2000]: PLUGINS / MEDIA / WEBRTC ***/ -user_pref("_user.js.parrot", "2000 syntax error: the parrot's snuffed it!"); -/* 2002: force WebRTC inside the proxy [FF70+] ***/ -user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true); -/* 2003: force a single network interface for ICE candidates generation [FF42+] - * When using a system-wide proxy, it uses the proxy interface - * [1] https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate - * [2] https://wiki.mozilla.org/Media/WebRTC/Privacy ***/ -user_pref("media.peerconnection.ice.default_address_only", true); -/* 2004: force exclusion of private IPs from ICE candidates [FF51+] - * [SETUP-HARDEN] This will protect your private IP even in TRUSTED scenarios after you - * grant device access, but often results in breakage on video-conferencing platforms ***/ - // user_pref("media.peerconnection.ice.no_host", true); -/* 2020: disable GMP (Gecko Media Plugins) - * [1] https://wiki.mozilla.org/GeckoMediaPlugins ***/ - // user_pref("media.gmp-provider.enabled", false); - -/*** [SECTION 2400]: DOM (DOCUMENT OBJECT MODEL) ***/ -user_pref("_user.js.parrot", "2400 syntax error: the parrot's kicked the bucket!"); -/* 2402: prevent scripts from moving and resizing open windows ***/ -user_pref("dom.disable_window_move_resize", true); - -/*** [SECTION 2600]: MISCELLANEOUS ***/ -user_pref("_user.js.parrot", "2600 syntax error: the parrot's run down the curtain!"); -/* 2603: remove temp files opened from non-PB windows with an external application - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=302433,1738574 ***/ -user_pref("browser.download.start_downloads_in_tmp_dir", true); // [FF102+] -user_pref("browser.helperApps.deleteTempFileOnExit", true); -/* 2606: disable UITour backend so there is no chance that a remote page can use it ***/ -user_pref("browser.uitour.enabled", false); - // user_pref("browser.uitour.url", ""); // Defense-in-depth -/* 2608: reset remote debugging to disabled - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/16222 ***/ -user_pref("devtools.debugger.remote-enabled", false); // [DEFAULT: false] -/* 2615: disable websites overriding Firefox's keyboard shortcuts [FF58+] - * 0 (default) or 1=allow, 2=block - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Override Keyboard Shortcuts ***/ - // user_pref("permissions.default.shortcuts", 2); -/* 2616: remove special permissions for certain mozilla domains [FF35+] - * [1] resource://app/defaults/permissions ***/ -user_pref("permissions.manager.defaultsUrl", ""); -/* 2617: remove webchannel whitelist ***/ -user_pref("webchannel.allowObject.urlWhitelist", ""); -/* 2619: use Punycode in Internationalized Domain Names to eliminate possible spoofing - * [SETUP-WEB] Might be undesirable for non-latin alphabet users since legitimate IDN's are also punycoded - * [TEST] https://www.xn--80ak6aa92e.com/ (www.apple.com) - * [1] https://wiki.mozilla.org/IDN_Display_Algorithm - * [2] https://en.wikipedia.org/wiki/IDN_homograph_attack - * [3] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=punycode+firefox - * [4] https://www.xudongz.com/blog/2017/idn-phishing/ ***/ -user_pref("network.IDN_show_punycode", true); -/* 2620: enforce PDFJS, disable PDFJS scripting - * This setting controls if the option "Display in Firefox" is available in the setting below - * and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With") - * [WHY] pdfjs is lightweight, open source, and secure: the last exploit was June 2015 [1] - * It doesn't break "state separation" of browser content (by not sharing with OS, independent apps). - * It maintains disk avoidance and application data isolation. It's convenient. You can still save to disk. - * [NOTE] JS can still force a pdf to open in-browser by bundling its own code - * [SETUP-CHROME] You may prefer a different pdf reader for security/workflow reasons - * [SETTING] General>Applications>Portable Document Format (PDF) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=pdf.js+firefox ***/ -user_pref("pdfjs.disabled", false); // [DEFAULT: false] -user_pref("pdfjs.enableScripting", false); // [FF86+] -/* 2624: disable middle click on new tab button opening URLs or searches using clipboard [FF115+] */ -user_pref("browser.tabs.searchclipboardfor.middleclick", false); // [DEFAULT: false NON-LINUX] - -/** DOWNLOADS ***/ -/* 2651: enable user interaction for security by always asking where to download - * [SETUP-CHROME] On Android this blocks longtapping and saving images - * [SETTING] General>Downloads>Always ask you where to save files ***/ -user_pref("browser.download.useDownloadDir", false); -/* 2652: disable downloads panel opening on every download [FF96+] ***/ -user_pref("browser.download.alwaysOpenPanel", false); -/* 2653: disable adding downloads to the system's "recent documents" list ***/ -user_pref("browser.download.manager.addToRecentDocs", false); -/* 2654: enable user interaction for security by always asking how to handle new mimetypes [FF101+] - * [SETTING] General>Files and Applications>What should Firefox do with other files ***/ -user_pref("browser.download.always_ask_before_handling_new_types", true); - -/** EXTENSIONS ***/ -/* 2660: limit allowed extension directories - * 1=profile, 2=user, 4=application, 8=system, 16=temporary, 31=all - * The pref value represents the sum: e.g. 5 would be profile and application directories - * [SETUP-CHROME] Breaks usage of files which are installed outside allowed directories - * [1] https://archive.is/DYjAM ***/ -user_pref("extensions.enabledScopes", 5); // [HIDDEN PREF] - // user_pref("extensions.autoDisableScopes", 15); // [DEFAULT: 15] -/* 2661: disable bypassing 3rd party extension install prompts [FF82+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1659530,1681331 ***/ -user_pref("extensions.postDownloadThirdPartyPrompt", false); -/* 2662: disable webextension restrictions on certain mozilla domains (you also need 4503) [FF60+] - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ - // user_pref("extensions.webextensions.restrictedDomains", ""); - -/*** [SECTION 2700]: ETP (ENHANCED TRACKING PROTECTION) ***/ -user_pref("_user.js.parrot", "2700 syntax error: the parrot's joined the bleedin' choir invisible!"); -/* 2701: enable ETP Strict Mode [FF86+] - * ETP Strict Mode enables Total Cookie Protection (TCP) - * [NOTE] Adding site exceptions disables all ETP protections for that site and increases the risk of - * cross-site state tracking e.g. exceptions for SiteA and SiteB means PartyC on both sites is shared - * [1] https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/ - * [SETTING] to add site exceptions: Urlbar>ETP Shield - * [SETTING] to manage site exceptions: Options>Privacy & Security>Enhanced Tracking Protection>Manage Exceptions ***/ -user_pref("browser.contentblocking.category", "strict"); // [HIDDEN PREF] -/* 2702: disable ETP web compat features [FF93+] - * [SETUP-HARDEN] Includes skip lists, heuristics (SmartBlock) and automatic grants - * Opener and redirect heuristics are granted for 30 days, see [3] - * [1] https://blog.mozilla.org/security/2021/07/13/smartblock-v2/ - * [2] https://hg.mozilla.org/mozilla-central/rev/e5483fd469ab#l4.12 - * [3] https://developer.mozilla.org/en-US/docs/Web/Privacy/State_Partitioning#storage_access_heuristics ***/ - // user_pref("privacy.antitracking.enableWebcompat", false); - -/*** [SECTION 2800]: SHUTDOWN & SANITIZING ***/ -user_pref("_user.js.parrot", "2800 syntax error: the parrot's bleedin' demised!"); -/* 2810: enable Firefox to clear items on shutdown - * [SETTING] Privacy & Security>History>Custom Settings>Clear history when Firefox closes | Settings ***/ -user_pref("privacy.sanitize.sanitizeOnShutdown", true); - -/** SANITIZE ON SHUTDOWN: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2811: set/enforce what items to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] If "history" is true, downloads will also be cleared - * [NOTE] "sessions": Active Logins: refers to HTTP Basic Authentication [1], not logins via cookies - * [1] https://en.wikipedia.org/wiki/Basic_access_authentication ***/ -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -/* 2812: set Session Restore to clear on shutdown (if 2810 is true) [FF34+] - * [NOTE] Not needed if Session Restore is not used (0102) or it is already cleared with history (2811) - * [NOTE] If true, this prevents resuming from crashes (also see 5008) ***/ - // user_pref("privacy.clearOnShutdown.openWindows", true); - -/** SANITIZE ON SHUTDOWN: RESPECTS "ALLOW" SITE EXCEPTIONS FF103+ ***/ -/* 2815: set "Cookies" and "Site Data" to clear on shutdown (if 2810 is true) [SETUP-CHROME] - * [NOTE] Exceptions: A "cookie" block permission also controls "offlineApps" (see note below). - * serviceWorkers require an "Allow" permission. For cross-domain logins, add exceptions for - * both sites e.g. https://www.youtube.com (site) + https://accounts.google.com (single sign on) - * [NOTE] "offlineApps": Offline Website Data: localStorage, service worker cache, QuotaManager (IndexedDB, asm-cache) - * [WARNING] Be selective with what sites you "Allow", as they also disable partitioning (1767271) - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow (when on the website in question) - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("privacy.clearOnShutdown.cookies", true); // Cookies -user_pref("privacy.clearOnShutdown.offlineApps", true); // Site Data - -/** SANITIZE MANUAL: IGNORES "ALLOW" SITE EXCEPTIONS ***/ -/* 2820: reset default items to clear with Ctrl-Shift-Del [SETUP-CHROME] - * This dialog can also be accessed from the menu History>Clear Recent History - * Firefox remembers your last choices. This will reset them when you start Firefox - * [NOTE] Regardless of what you set "downloads" to, as soon as the dialog - * for "Clear Recent History" is opened, it is synced to the same as "history" ***/ -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.openWindows", false); // Session Restore - // user_pref("privacy.cpd.passwords", false); - // user_pref("privacy.cpd.siteSettings", false); -/* 2822: reset default "Time range to clear" for "Clear Recent History" (2820) - * Firefox remembers your last choice. This will reset the value when you start Firefox - * 0=everything, 1=last hour, 2=last two hours, 3=last four hours, 4=today - * [NOTE] Values 5 (last 5 minutes) and 6 (last 24 hours) are not listed in the dropdown, - * which will display a blank value, and are not guaranteed to work ***/ -user_pref("privacy.sanitize.timeSpan", 0); - -/*** [SECTION 4500]: RFP (resistFingerprinting) - RFP covers a wide range of ongoing fingerprinting solutions. - It is an all-or-nothing buy in: you cannot pick and choose what parts you want - [TEST] https://arkenfox.github.io/TZP/tzp.html - - [WARNING] DO NOT USE extensions to alter RFP protected metrics - - 418986 - limit window.screen & CSS media queries (FF41) - 1281949 - spoof screen orientation (FF50) - 1330890 - spoof timezone as UTC0 (FF55) - 1360039 - spoof navigator.hardwareConcurrency as 2 (FF55) - FF56 - 1333651 - spoof User Agent & Navigator API - version: android version spoofed as ESR (FF119 or lower) - OS: JS spoofed as Windows 10, OS 10.15, Android 10, or Linux | HTTP Headers spoofed as Windows or Android - 1369319 - disable device sensor API - 1369357 - disable site specific zoom - 1337161 - hide gamepads from content - 1372072 - spoof network information API as "unknown" when dom.netinfo.enabled = true - 1333641 - reduce fingerprinting in WebSpeech API - FF57 - 1369309 - spoof media statistics - 1382499 - reduce screen co-ordinate fingerprinting in Touch API - 1217290 & 1409677 - enable some fingerprinting resistance for WebGL - 1354633 - limit MediaError.message to a whitelist - FF58+ - 1372073 - spoof/block fingerprinting in MediaDevices API (FF59) - Spoof: enumerate devices as one "Internal Camera" and one "Internal Microphone" - Block: suppresses the ondevicechange event - 1039069 - warn when language prefs are not set to "en*" (also see 0210, 0211) (FF59) - 1222285 & 1433592 - spoof keyboard events and suppress keyboard modifier events (FF59) - Spoofing mimics the content language of the document. Currently it only supports en-US. - Modifier events suppressed are SHIFT and both ALT keys. Chrome is not affected. - 1337157 - disable WebGL debug renderer info (FF60) - 1459089 - disable OS locale in HTTP Accept-Language headers (ANDROID) (FF62) - 1479239 - return "no-preference" with prefers-reduced-motion (FF63) - 1363508 - spoof/suppress Pointer Events (FF64) - 1492766 - spoof pointerEvent.pointerid (FF65) - 1485266 - disable exposure of system colors to CSS or canvas (FF67) - 1494034 - return "light" with prefers-color-scheme (FF67) - 1564422 - spoof audioContext outputLatency (FF70) - 1595823 - return audioContext sampleRate as 44100 (FF72) - 1607316 - spoof pointer as coarse and hover as none (ANDROID) (FF74) - 1621433 - randomize canvas (previously FF58+ returned an all-white canvas) (FF78) - 1506364 - return "no-preference" with prefers-contrast (FF80) - 1653987 - limit font visibility to bundled and "Base Fonts" (Windows, Mac, some Linux) (FF80) - 1461454 - spoof smooth=true and powerEfficient=false for supported media in MediaCapabilities (FF82) - 531915 - use fdlibm's sin, cos and tan in jsmath (FF93, ESR91.1) - 1756280 - enforce navigator.pdfViewerEnabled as true and plugins/mimeTypes as hard-coded values (FF100-115) - 1692609 - reduce JS timing precision to 16.67ms (previously FF55+ was 100ms) (FF102) - 1422237 - return "srgb" with color-gamut (FF110) - 1794628 - return "none" with inverted-colors (FF114) -***/ -user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs"); -/* 4501: enable RFP - * [SETUP-WEB] RFP can cause some website breakage: mainly canvas, use a canvas site exception via the urlbar - * RFP also has a few side effects: mainly timezone is UTC0, and websites will prefer light theme - * [NOTE] pbmode applies if true and the original pref is false - * [1] https://bugzilla.mozilla.org/418986 ***/ -user_pref("privacy.resistFingerprinting", true); // [FF41+] - // user_pref("privacy.resistFingerprinting.pbmode", true); // [FF114+] -/* 4502: set new window size rounding max values [FF55+] - * [SETUP-CHROME] sizes round down in hundreds: width to 200s and height to 100s, to fit your screen - * [1] https://bugzilla.mozilla.org/1330882 ***/ -user_pref("privacy.window.maxInnerWidth", 1600); -user_pref("privacy.window.maxInnerHeight", 900); -/* 4503: disable mozAddonManager Web API [FF57+] - * [NOTE] To allow extensions to work on AMO, you also need 2662 - * [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=1384330,1406795,1415644,1453988 ***/ -user_pref("privacy.resistFingerprinting.block_mozAddonManager", true); -/* 4504: enable RFP letterboxing [FF67+] - * Dynamically resizes the inner window by applying margins in stepped ranges [2] - * If you use the dimension pref, then it will only apply those resolutions. - * The format is "width1xheight1, width2xheight2, ..." (e.g. "800x600, 1000x1000") - * [SETUP-WEB] This is independent of RFP (4501). If you're not using RFP, or you are but - * dislike the margins, then flip this pref, keeping in mind that it is effectively fingerprintable - * [WARNING] DO NOT USE: the dimension pref is only meant for testing - * [1] https://bugzilla.mozilla.org/1407366 - * [2] https://hg.mozilla.org/mozilla-central/rev/6d2d7856e468#l2.32 ***/ -user_pref("privacy.resistFingerprinting.letterboxing", true); // [HIDDEN PREF] - // user_pref("privacy.resistFingerprinting.letterboxing.dimensions", ""); // [HIDDEN PREF] -/* 4505: experimental RFP [FF91+] - * [WARNING] DO NOT USE unless testing, see [1] comment 12 - * [1] https://bugzilla.mozilla.org/1635603 ***/ - // user_pref("privacy.resistFingerprinting.exemptedDomains", "*.example.invalid"); -/* 4510: disable using system colors - * [SETTING] General>Language and Appearance>Fonts and Colors>Colors>Use system colors ***/ -user_pref("browser.display.use_system_colors", false); // [DEFAULT: false NON-WINDOWS] -/* 4511: enforce non-native widget theme - * Security: removes/reduces system API calls, e.g. win32k API [1] - * Fingerprinting: provides a uniform look and feel across platforms [2] - * [1] https://bugzilla.mozilla.org/1381938 - * [2] https://bugzilla.mozilla.org/1411425 ***/ -user_pref("widget.non-native-theme.enabled", true); // [DEFAULT: true] -/* 4512: enforce links targeting new windows to open in a new tab instead - * 1=most recent window or tab, 2=new window, 3=new tab - * Stops malicious window sizes and some screen resolution leaks. - * You can still right-click a link and open in a new window - * [SETTING] General>Tabs>Open links in tabs instead of new windows - * [TEST] https://arkenfox.github.io/TZP/tzp.html#screen - * [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/9881 ***/ -user_pref("browser.link.open_newwindow", 3); // [DEFAULT: 3] -/* 4513: set all open window methods to abide by "browser.link.open_newwindow" (4512) - * [1] https://searchfox.org/mozilla-central/source/dom/tests/browser/browser_test_new_window_from_content.js ***/ -user_pref("browser.link.open_newwindow.restriction", 0); -/* 4520: disable WebGL (Web Graphics Library) - * [SETUP-WEB] If you need it then override it. RFP still randomizes canvas for naive scripts ***/ -user_pref("webgl.disabled", true); - -/*** [SECTION 5000]: OPTIONAL OPSEC - Disk avoidance, application data isolation, eyeballs... -***/ -user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow"); -/* 5001: start Firefox in PB (Private Browsing) mode - * [NOTE] In this mode all windows are "private windows" and the PB mode icon is not displayed - * [NOTE] The P in PB mode can be misleading: it means no "persistent" disk state such as history, - * caches, searches, cookies, localStorage, IndexedDB etc (which you can achieve in normal mode). - * In fact, PB mode limits or removes the ability to control some of these, and you need to quit - * Firefox to clear them. PB is best used as a one off window (Menu>New Private Window) to provide - * a temporary self-contained new session. Close all private windows to clear the PB session. - * [SETTING] Privacy & Security>History>Custom Settings>Always use private browsing mode - * [1] https://wiki.mozilla.org/Private_Browsing - * [2] https://support.mozilla.org/kb/common-myths-about-private-browsing ***/ - // user_pref("browser.privatebrowsing.autostart", true); -/* 5002: disable memory cache - * capacity: -1=determine dynamically (default), 0=none, n=memory capacity in kibibytes ***/ - // user_pref("browser.cache.memory.enable", false); - // user_pref("browser.cache.memory.capacity", 0); -/* 5003: disable saving passwords - * [NOTE] This does not clear any passwords already saved - * [SETTING] Privacy & Security>Logins and Passwords>Ask to save logins and passwords for websites ***/ - // user_pref("signon.rememberSignons", false); -/* 5004: disable permissions manager from writing to disk [FF41+] [RESTART] - * [NOTE] This means any permission changes are session only - * [1] https://bugzilla.mozilla.org/967812 ***/ - // user_pref("permissions.memory_only", true); // [HIDDEN PREF] -/* 5005: disable intermediate certificate caching [FF41+] [RESTART] - * [NOTE] This affects login/cert/key dbs. The effect is all credentials are session-only. - * Saved logins and passwords are not available. Reset the pref and restart to return them ***/ - // user_pref("security.nocertdb", true); -/* 5006: disable favicons in history and bookmarks - * [NOTE] Stored as data blobs in favicons.sqlite, these don't reveal anything that your - * actual history (and bookmarks) already do. Your history is more detailed, so - * control that instead; e.g. disable history, clear history on exit, use PB mode - * [NOTE] favicons.sqlite is sanitized on Firefox close ***/ - // user_pref("browser.chrome.site_icons", false); -/* 5007: exclude "Undo Closed Tabs" in Session Restore ***/ - // user_pref("browser.sessionstore.max_tabs_undo", 0); -/* 5008: disable resuming session from crash - * [TEST] about:crashparent ***/ - // user_pref("browser.sessionstore.resume_from_crash", false); -/* 5009: disable "open with" in download dialog [FF50+] - * Application data isolation [1] - * [1] https://bugzilla.mozilla.org/1281959 ***/ - // user_pref("browser.download.forbid_open_with", true); -/* 5010: disable location bar suggestion types - * [SETTING] Privacy & Security>Address Bar>When using the address bar, suggest ***/ - // user_pref("browser.urlbar.suggest.history", false); - // user_pref("browser.urlbar.suggest.bookmark", false); - // user_pref("browser.urlbar.suggest.openpage", false); - // user_pref("browser.urlbar.suggest.topsites", false); // [FF78+] -/* 5011: disable location bar dropdown - * This value controls the total number of entries to appear in the location bar dropdown ***/ - // user_pref("browser.urlbar.maxRichResults", 0); -/* 5012: disable location bar autofill - * [1] https://support.mozilla.org/kb/address-bar-autocomplete-firefox#w_url-autocomplete ***/ - // user_pref("browser.urlbar.autoFill", false); -/* 5013: disable browsing and download history - * [NOTE] We also clear history and downloads on exit (2811) - * [SETTING] Privacy & Security>History>Custom Settings>Remember browsing and download history ***/ - // user_pref("places.history.enabled", false); -/* 5014: disable Windows jumplist [WINDOWS] ***/ - // user_pref("browser.taskbar.lists.enabled", false); - // user_pref("browser.taskbar.lists.frequent.enabled", false); - // user_pref("browser.taskbar.lists.recent.enabled", false); - // user_pref("browser.taskbar.lists.tasks.enabled", false); -/* 5016: discourage downloading to desktop - * 0=desktop, 1=downloads (default), 2=custom - * [SETTING] To set your custom default "downloads": General>Downloads>Save files to ***/ - // user_pref("browser.download.folderList", 2); -/* 5017: disable Form Autofill - * If .supportedCountries includes your region (browser.search.region) and .supported - * is "detect" (default), then the UI will show. Stored data is not secure, uses JSON - * [SETTING] Privacy & Security>Forms and Autofill>Autofill addresses - * [1] https://wiki.mozilla.org/Firefox/Features/Form_Autofill ***/ - // user_pref("extensions.formautofill.addresses.enabled", false); // [FF55+] - // user_pref("extensions.formautofill.creditCards.enabled", false); // [FF56+] -/* 5018: limit events that can cause a pop-up ***/ - // user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); -/* 5019: disable page thumbnail collection ***/ - // user_pref("browser.pagethumbnails.capturing_disabled", true); // [HIDDEN PREF] -/* 5020: disable Windows native notifications and use app notications instead [FF111+] [WINDOWS] ***/ - // user_pref("alerts.useSystemBackend.windows.notificationserver.enabled", false); -/* 5021: disable location bar using search - * Don't leak URL typos to a search engine, give an error message instead - * Examples: "secretplace,com", "secretplace/com", "secretplace com", "secret place.com" - * [NOTE] This does not affect explicit user action such as using search buttons in the - * dropdown, or using keyword search shortcuts you configure in options (e.g. "d" for DuckDuckGo) ***/ - // user_pref("keyword.enabled", false); - -/*** [SECTION 5500]: OPTIONAL HARDENING - Not recommended. Overriding these can cause breakage and performance issues, - they are mostly fingerprintable, and the threat model is practically nonexistent -***/ -user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!"); -/* 5501: disable MathML (Mathematical Markup Language) [FF51+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=mathml ***/ - // user_pref("mathml.disabled", true); // 1173199 -/* 5502: disable in-content SVG (Scalable Vector Graphics) [FF53+] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+svg ***/ - // user_pref("svg.disabled", true); // 1216893 -/* 5503: disable graphite - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+graphite - * [2] https://en.wikipedia.org/wiki/Graphite_(SIL) ***/ - // user_pref("gfx.font_rendering.graphite.enabled", false); -/* 5504: disable asm.js [FF22+] - * [1] http://asmjs.org/ - * [2] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=asm.js - * [3] https://rh0dev.github.io/blog/2017/the-return-of-the-jit/ ***/ - // user_pref("javascript.options.asmjs", false); -/* 5505: disable Ion and baseline JIT to harden against JS exploits - * [NOTE] When both Ion and JIT are disabled, and trustedprincipals - * is enabled, then Ion can still be used by extensions (1599226) - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=firefox+jit - * [2] https://microsoftedge.github.io/edgevr/posts/Super-Duper-Secure-Mode/ ***/ - // user_pref("javascript.options.ion", false); - // user_pref("javascript.options.baselinejit", false); - // user_pref("javascript.options.jit_trustedprincipals", true); // [FF75+] [HIDDEN PREF] -/* 5506: disable WebAssembly [FF52+] - * Vulnerabilities [1] have increasingly been found, including those known and fixed - * in native programs years ago [2]. WASM has powerful low-level access, making - * certain attacks (brute-force) and vulnerabilities more possible - * [STATS] ~0.2% of websites, about half of which are for cryptomining / malvertising [2][3] - * [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=wasm - * [2] https://spectrum.ieee.org/tech-talk/telecom/security/more-worries-over-the-security-of-web-assembly - * [3] https://www.zdnet.com/article/half-of-the-websites-using-webassembly-use-it-for-malicious-purposes ***/ - // user_pref("javascript.options.wasm", false); -/* 5507: disable rendering of SVG OpenType fonts ***/ - // user_pref("gfx.font_rendering.opentype_svg.enabled", false); -/* 5508: disable all DRM content (EME: Encryption Media Extension) - * Optionally hide the UI setting which also disables the DRM prompt - * [SETTING] General>DRM Content>Play DRM-controlled content - * [TEST] https://bitmovin.com/demos/drm - * [1] https://www.eff.org/deeplinks/2017/10/drms-dead-canary-how-we-just-lost-web-what-we-learned-it-and-what-we-need-do-next ***/ - // user_pref("media.eme.enabled", false); - // user_pref("browser.eme.ui.enabled", false); -/* 5509: disable IPv6 if using a VPN - * This is an application level fallback. Disabling IPv6 is best done at an OS/network - * level, and/or configured properly in system wide VPN setups. - * [SETUP-WEB] PR_CONNECT_RESET_ERROR - * [NOTE] PHP defaults to IPv6 with "localhost". Use "php -S 127.0.0.1:PORT" - * [TEST] https://ipleak.org/ - * [1] https://www.internetsociety.org/tag/ipv6-security/ (Myths 2,4,5,6) ***/ - // user_pref("network.dns.disableIPv6", true); -/* 5510: control when to send a cross-origin referer - * 0=always (default), 1=only if base domains match, 2=only if hosts match - * [NOTE] Will cause breakage: older modems/routers and some sites e.g banks, vimeo, icloud, instagram ***/ - // user_pref("network.http.referer.XOriginPolicy", 2); -/* 5511: set DoH bootstrap address [FF89+] - * Firefox uses the system DNS to initially resolve the IP address of your DoH server. - * When set to a valid, working value that matches your "network.trr.uri" (0712) Firefox - * won't use the system DNS. If the IP doesn't match then DoH won't work ***/ - // user_pref("network.trr.bootstrapAddr", "10.0.0.1"); // [HIDDEN PREF] - -/*** [SECTION 6000]: DON'T TOUCH ***/ -user_pref("_user.js.parrot", "6000 syntax error: the parrot's 'istory!"); -/* 6001: enforce Firefox blocklist - * [WHY] It includes updates for "revoked certificates" - * [1] https://blog.mozilla.org/security/2015/03/03/revoking-intermediate-certificates-introducing-onecrl/ ***/ -user_pref("extensions.blocklist.enabled", true); // [DEFAULT: true] -/* 6002: enforce no referer spoofing - * [WHY] Spoofing can affect CSRF (Cross-Site Request Forgery) protections ***/ -user_pref("network.http.referer.spoofSource", false); // [DEFAULT: false] -/* 6004: enforce a security delay on some confirmation dialogs such as install, open/save - * [1] https://www.squarefree.com/2004/07/01/race-conditions-in-security-dialogs/ ***/ -user_pref("security.dialog_enable_delay", 1000); // [DEFAULT: 1000] -/* 6008: enforce no First Party Isolation [FF51+] - * [WARNING] Replaced with network partitioning (FF85+) and TCP (2701), and enabling FPI - * disables those. FPI is no longer maintained except at Tor Project for Tor Browser's config ***/ -user_pref("privacy.firstparty.isolate", false); // [DEFAULT: false] -/* 6009: enforce SmartBlock shims (about:compat) [FF81+] - * [1] https://blog.mozilla.org/security/2021/03/23/introducing-smartblock/ ***/ -user_pref("extensions.webcompat.enable_shims", true); // [HIDDEN PREF] [DEFAULT: true] -/* 6010: enforce no TLS 1.0/1.1 downgrades - * [TEST] https://tls-v1-1.badssl.com:1010/ ***/ -user_pref("security.tls.version.enable-deprecated", false); // [DEFAULT: false] -/* 6011: enforce disabling of Web Compatibility Reporter [FF56+] - * Web Compatibility Reporter adds a "Report Site Issue" button to send data to Mozilla - * [WHY] To prevent wasting Mozilla's time with a custom setup ***/ -user_pref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false] -/* 6012: enforce Quarantined Domains [FF115+] - * [WHY] https://support.mozilla.org/kb/quarantined-domains */ -user_pref("extensions.quarantinedDomains.enabled", true); // [DEFAULT: true] -/* 6050: prefsCleaner: previously active items removed from arkenfox 115-127 ***/ - // user_pref("accessibility.force_disabled", ""); - // user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", ""); - // user_pref("network.protocol-handler.external.ms-windows-store", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage", ""); - // user_pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", ""); - // user_pref("privacy.partition.serviceWorkers", ""); - -/*** [SECTION 7000]: DON'T BOTHER ***/ -user_pref("_user.js.parrot", "7000 syntax error: the parrot's pushing up daisies!"); -/* 7001: disable APIs - * Location-Aware Browsing, Full Screen - * [WHY] The API state is easily fingerprintable. - * Geo is behind a prompt (7002). Full screen requires user interaction ***/ - // user_pref("geo.enabled", false); - // user_pref("full-screen-api.enabled", false); -/* 7002: set default permissions - * Location, Camera, Microphone, Notifications [FF58+] Virtual Reality [FF73+] - * 0=always ask (default), 1=allow, 2=block - * [WHY] These are fingerprintable via Permissions API, except VR. Just add site - * exceptions as allow/block for frequently visited/annoying sites: i.e. not global - * [SETTING] to add site exceptions: Ctrl+I>Permissions> - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ - // user_pref("permissions.default.geo", 0); - // user_pref("permissions.default.camera", 0); - // user_pref("permissions.default.microphone", 0); - // user_pref("permissions.default.desktop-notification", 0); - // user_pref("permissions.default.xr", 0); // Virtual Reality -/* 7003: disable non-modern cipher suites [1] - * [WHY] Passive fingerprinting. Minimal/non-existent threat of downgrade attacks - * [1] https://browserleaks.com/ssl ***/ - // user_pref("security.ssl3.ecdhe_ecdsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_ecdsa_aes_256_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_128_sha", false); - // user_pref("security.ssl3.ecdhe_rsa_aes_256_sha", false); - // user_pref("security.ssl3.rsa_aes_128_gcm_sha256", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_gcm_sha384", false); // no PFS - // user_pref("security.ssl3.rsa_aes_128_sha", false); // no PFS - // user_pref("security.ssl3.rsa_aes_256_sha", false); // no PFS -/* 7004: control TLS versions - * [WHY] Passive fingerprinting and security ***/ - // user_pref("security.tls.version.min", 3); // [DEFAULT: 3] - // user_pref("security.tls.version.max", 4); -/* 7005: disable SSL session IDs [FF36+] - * [WHY] Passive fingerprinting and perf costs. These are session-only - * and isolated with network partitioning (FF85+) and/or containers ***/ - // user_pref("security.ssl.disable_session_identifiers", true); -/* 7006: onions - * [WHY] Firefox doesn't support hidden services. Use Tor Browser ***/ - // user_pref("dom.securecontext.allowlist_onions", true); // [FF97+] 1382359/1744006 - // user_pref("network.http.referer.hideOnionSource", true); // 1305144 -/* 7007: referers - * [WHY] Only cross-origin referers (1602, 5510) matter ***/ - // user_pref("network.http.sendRefererHeader", 2); - // user_pref("network.http.referer.trimmingPolicy", 0); -/* 7008: set the default Referrer Policy [FF59+] - * 0=no-referer, 1=same-origin, 2=strict-origin-when-cross-origin, 3=no-referrer-when-downgrade - * [WHY] Defaults are fine. They can be overridden by a site-controlled Referrer Policy ***/ - // user_pref("network.http.referer.defaultPolicy", 2); // [DEFAULT: 2] - // user_pref("network.http.referer.defaultPolicy.pbmode", 2); // [DEFAULT: 2] -/* 7010: disable HTTP Alternative Services [FF37+] - * [WHY] Already isolated with network partitioning (FF85+) ***/ - // user_pref("network.http.altsvc.enabled", false); -/* 7011: disable website control over browser right-click context menu - * [WHY] Just use Shift-Right-Click ***/ - // user_pref("dom.event.contextmenu.enabled", false); -/* 7012: disable icon fonts (glyphs) and local fallback rendering - * [WHY] Breakage, font fallback is equivalency, also RFP - * [1] https://bugzilla.mozilla.org/789788 - * [2] https://gitlab.torproject.org/legacy/trac/-/issues/8455 ***/ - // user_pref("gfx.downloadable_fonts.enabled", false); // [FF41+] - // user_pref("gfx.downloadable_fonts.fallback_delay", -1); -/* 7013: disable Clipboard API - * [WHY] Fingerprintable. Breakage. Cut/copy/paste require user - * interaction, and paste is limited to focused editable fields ***/ - // user_pref("dom.event.clipboardevents.enabled", false); -/* 7014: disable System Add-on updates - * [WHY] It can compromise security. System addons ship with prefs, use those ***/ - // user_pref("extensions.systemAddon.update.enabled", false); // [FF62+] - // user_pref("extensions.systemAddon.update.url", ""); // [FF44+] -/* 7015: enable the DNT (Do Not Track) HTTP header - * [WHY] DNT is enforced with Tracking Protection which is used in ETP Strict (2701) ***/ - // user_pref("privacy.donottrackheader.enabled", true); -/* 7016: customize ETP settings - * [NOTE] FPP (fingerprintingProtection) is ignored when RFP (4501) is enabled - * [WHY] Arkenfox only supports strict (2701) which sets these at runtime ***/ - // user_pref("network.cookie.cookieBehavior", 5); // [DEFAULT: 5] - // user_pref("privacy.fingerprintingProtection", true); // [FF114+] [ETP FF119+] - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault", true); - // user_pref("network.http.referer.disallowCrossSiteRelaxingDefault.top_navigation", true); // [FF100+] - // user_pref("privacy.partition.network_state.ocsp_cache", true); - // user_pref("privacy.query_stripping.enabled", true); // [FF101+] - // user_pref("privacy.trackingprotection.enabled", true); - // user_pref("privacy.trackingprotection.socialtracking.enabled", true); - // user_pref("privacy.trackingprotection.cryptomining.enabled", true); // [DEFAULT: true] - // user_pref("privacy.trackingprotection.fingerprinting.enabled", true); // [DEFAULT: true] -/* 7017: disable service workers - * [WHY] Already isolated with TCP (2701) behind a pref (2710) ***/ - // user_pref("dom.serviceWorkers.enabled", false); -/* 7018: disable Web Notifications [FF22+] - * [WHY] Web Notifications are behind a prompt (7002) - * [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ ***/ - // user_pref("dom.webnotifications.enabled", false); -/* 7019: disable Push Notifications [FF44+] - * [WHY] Push requires subscription - * [NOTE] To remove all subscriptions, reset "dom.push.userAgentID" - * [1] https://support.mozilla.org/kb/push-notifications-firefox ***/ - // user_pref("dom.push.enabled", false); -/* 7020: disable WebRTC (Web Real-Time Communication) - * [WHY] Firefox desktop uses mDNS hostname obfuscation and the private IP is never exposed until - * required in TRUSTED scenarios; i.e. after you grant device (microphone or camera) access - * [TEST] https://browserleaks.com/webrtc - * [1] https://groups.google.com/g/discuss-webrtc/c/6stQXi72BEU/m/2FwZd24UAQAJ - * [2] https://datatracker.ietf.org/doc/html/draft-ietf-mmusic-mdns-ice-candidates#section-3.1.1 ***/ - // user_pref("media.peerconnection.enabled", false); - -/*** [SECTION 8000]: DON'T BOTHER: FINGERPRINTING - [WHY] They are insufficient to help anti-fingerprinting and do more harm than good - [WARNING] DO NOT USE with RFP. RFP already covers these and they can interfere -***/ -user_pref("_user.js.parrot", "8000 syntax error: the parrot's crossed the Jordan"); -/* 8001: prefsCleaner: reset items useless for anti-fingerprinting ***/ - // user_pref("browser.display.use_document_fonts", ""); - // user_pref("browser.zoom.siteSpecific", ""); - // user_pref("device.sensors.enabled", ""); - // user_pref("dom.enable_performance", ""); - // user_pref("dom.enable_resource_timing", ""); - // user_pref("dom.gamepad.enabled", ""); - // user_pref("dom.maxHardwareConcurrency", ""); - // user_pref("dom.w3c_touch_events.enabled", ""); - // user_pref("dom.webaudio.enabled", ""); - // user_pref("font.system.whitelist", ""); - // user_pref("general.appname.override", ""); - // user_pref("general.appversion.override", ""); - // user_pref("general.buildID.override", ""); - // user_pref("general.oscpu.override", ""); - // user_pref("general.platform.override", ""); - // user_pref("general.useragent.override", ""); - // user_pref("media.navigator.enabled", ""); - // user_pref("media.ondevicechange.enabled", ""); - // user_pref("media.video_stats.enabled", ""); - // user_pref("media.webspeech.synth.enabled", ""); - // user_pref("ui.use_standins_for_native_colors", ""); - // user_pref("webgl.enable-debug-renderer-info", ""); - -/*** [SECTION 9000]: NON-PROJECT RELATED ***/ -user_pref("_user.js.parrot", "9000 syntax error: the parrot's cashed in 'is chips!"); -/* 9001: disable welcome notices ***/ -user_pref("browser.startup.homepage_override.mstone", "ignore"); // [HIDDEN PREF] -/* 9002: disable General>Browsing>Recommend extensions/features as you browse [FF67+] ***/ -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); -user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); -/* 9003: disable What's New toolbar icon [FF69+] ***/ -user_pref("browser.messaging-system.whatsNewPanel.enabled", false); -/* 9004: disable search terms [FF110+] - * [SETTING] Search>Search Bar>Use the address bar for search and navigation>Show search terms instead of URL... ***/ -user_pref("browser.urlbar.showSearchTerms.enabled", false); - -/*** [SECTION 9999]: DEPRECATED / RENAMED ***/ -user_pref("_user.js.parrot", "9999 syntax error: the parrot's shuffled off 'is mortal coil!"); -/* ESR115.x still uses all the following prefs -// [NOTE] replace the * with a slash in the line above to re-enable active ones -// FF116 -// 4506: set RFP's font visibility level (1402) [FF94+] - // [-] https://bugzilla.mozilla.org/1838415 - // user_pref("layout.css.font-visibility.resistFingerprinting", 1); // [DEFAULT: 1] -// FF117 -// 1221: disable Windows Microsoft Family Safety cert [FF50+] [WINDOWS] - // 0=disable detecting Family Safety mode and importing the root - // 1=only attempt to detect Family Safety mode (don't import the root) - // 2=detect Family Safety mode and import the root - // [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/21686 - // [-] https://bugzilla.mozilla.org/1844908 -user_pref("security.family_safety.mode", 0); -// 7018: disable service worker Web Notifications [FF44+] - // [WHY] Web Notifications are behind a prompt (7002) - // [1] https://blog.mozilla.org/en/products/firefox/block-notification-requests/ - // [-] https://bugzilla.mozilla.org/1842457 - // user_pref("dom.webnotifications.serviceworker.enabled", false); -// FF118 -// 1402: limit font visibility (Windows, Mac, some Linux) [FF94+] - // Uses hardcoded lists with two parts: kBaseFonts + kLangPackFonts [1], bundled fonts are auto-allowed - // In normal windows: uses the first applicable: RFP over TP over Standard - // In Private Browsing windows: uses the most restrictive between normal and private - // 1=only base system fonts, 2=also fonts from optional language packs, 3=also user-installed fonts - // [1] https://searchfox.org/mozilla-central/search?path=StandardFonts*.inc - // [-] https://bugzilla.mozilla.org/1847599 - // user_pref("layout.css.font-visibility.private", 1); - // user_pref("layout.css.font-visibility.standard", 1); - // user_pref("layout.css.font-visibility.trackingprotection", 1); -// 2623: disable permissions delegation [FF73+] - // Currently applies to cross-origin geolocation, camera, mic and screen-sharing - // permissions, and fullscreen requests. Disabling delegation means any prompts - // for these will show/use their correct 3rd party origin - // [1] https://groups.google.com/forum/#!topic/mozilla.dev.platform/BdFOMAuCGW8/discussion - // [-] https://bugzilla.mozilla.org/1697151 - // user_pref("permissions.delegation.enabled", false); -// FF119 -// 0211: use en-US locale regardless of the system or region locale - // [SETUP-WEB] May break some input methods e.g xim/ibus for CJK languages [1] - // [1] https://bugzilla.mozilla.org/buglist.cgi?bug_id=867501,1629630 - // [-] https://bugzilla.mozilla.org/1846224 - // user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF] -// 0711: disable skipping DoH when parental controls are enabled [FF70+] - // [-] https://bugzilla.mozilla.org/1586941 -user_pref("network.dns.skipTRR-when-parental-control-enabled", false); -// ***/ - -/* END: internal custom pref to test for syntax errors ***/ -user_pref("_user.js.parrot", "SUCCESS: No no he's not dead, he's, he's restin'!"); - -//I read the wiki -//https://github.com/arkenfox/user.js/wiki/3.2-Overrides-%5BCommon%5D - -//DNS over HTTPS -//Protects web requests from an ISP -//Please pick a provider you trust. -//Disable if you use PiHole, but tools like pfBlocker work fine. -// Cloudflare (default in US & Canada). -//Quad 9: https://dns.quad9.net/dns-query -user_pref("network.trr.uri", "https://mozilla.cloudflare-dns.com/dns-query"); -user_pref("network.trr.mode", 2); - -//Disable Safe Browsing, this phones home to Google. -user_pref("browser.safebrowsing.malware.enabled", false); -user_pref("browser.safebrowsing.phishing.enabled", false); -user_pref("browser.safebrowsing.downloads.enabled", false); - -// Leave IPv6 enabled -user_pref("network.dns.disableIPv6", false); - -//Reenable search engines -user_pref("keyword.enabled", true); -//Enable Search Engine suggestion -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.suggest.searches", false); -// Disk caching, which might improve performance if enabled. -user_pref("browser.cache.disk.enable", false); -//Enable favicons, the icons in bookmarks -user_pref("browser.shell.shortcutFavicons", true); -//Enable Mozilla Container Tabs -//Redundant with Total Cookie Protection, but useful if you have multiple accounts -//with the same provider (e.g. a work Google account and a personal Google account) -user_pref("privacy.userContext.enabled", true); -user_pref("privacy.userContext.ui.enabled", true); - -// Strict third party requests, may cause images/video to break. -user_pref("network.http.referer.XOriginPolicy", 2); - -//WebRTC settings, things like video calls - // user_pref("media.peerconnection.enabled", false); -// Disable Media Plugins - // user_pref("media.gmp-provider.enabled", false); -// Disable DRM, FCKDRM - // user_pref("media.gmp-widevinecdm.enabled", false); -user_pref("media.eme.enabled", false); -//Autoplaying settings -//0=Allow all, 1=Block non-muted media (default), 5=Block all - // user_pref("media.autoplay.default", 5); -//If some websites REALLY need autoplaying... -//0=sticky (default), 1=transient, 2=user -user_pref("media.autoplay.blocking_policy", 2); - -//Use Disconnect's blocklist to block ads -user_pref("browser.contentblocking.category", "strict"); - -//Delete cookies on close, but see below to make exceptions -/* 2801: delete cookies and site data on exit - //* 0=keep until they expire (default), 2=keep until you close Firefox - * [NOTE] A "cookie" block permission also controls localStorage/sessionStorage, indexedDB, - * sharedWorkers and serviceWorkers. serviceWorkers require an "Allow" permission - * [SETTING] Privacy & Security>Cookies and Site Data>Delete cookies and site data when Firefox is closed - * [SETTING] to add site exceptions: Ctrl+I>Permissions>Cookies>Allow - * [SETTING] to manage site exceptions: Options>Privacy & Security>Permissions>Settings ***/ -user_pref("network.cookie.lifetimePolicy", 2); -//Disabling disk cache is better, but try this if you like performance - // user_pref("privacy.clearsitedata.cache.enabled", true); - -//Clear data on shutdown -user_pref("privacy.sanitize.sanitizeOnShutdown", true); -user_pref("privacy.clearOnShutdown.cache", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.downloads", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.formdata", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.history", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.sessions", true); // [DEFAULT: true] -user_pref("privacy.clearOnShutdown.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.clearOnShutdown.cookies", false); - // user_pref("privacy.clearOnShutdown.siteSettings", false); // [DEFAULT: false] -// Manual wiping, such as the forget-me-not button -user_pref("privacy.cpd.cache", true); // [DEFAULT: true] -user_pref("privacy.cpd.formdata", true); // [DEFAULT: true] -user_pref("privacy.cpd.history", true); // [DEFAULT: true] -user_pref("privacy.cpd.sessions", true); // [DEFAULT: true] -user_pref("privacy.cpd.offlineApps", false); // [DEFAULT: false] -user_pref("privacy.cpd.cookies", false); - // user_pref("privacy.cpd.downloads", true); // not used, see note above - // user_pref("privacy.cpd.passwords", false); // [DEFAULT: false] not listed - // user_pref("privacy.cpd.siteSettings", false); // [DEFAULT: false] -// Delete everything ever. -user_pref("privacy.sanitize.timeSpan", 0); -//Delete history, although might be security theater. -//Helps against forensic tools. -user_pref("places.history.enabled", false); - -//WebGL is a security risk, but sometimes breaks things like 23andMe -//or Google Maps (not always). -user_pref("webgl.disabled", true); - -//Firefox stores passwords in plain text and obsolete if you use a password manager. -//Mozilla also told people to stop using their password manager. -user_pref("signon.rememberSignons", false); -//Disable Pocket, it's proprietary trash -user_pref("extensions.pocket.enabled", false); -// Disable Mozilla account -user_pref("identity.fxaccounts.enabled", false); diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/webappsstore.sqlite b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/webappsstore.sqlite deleted file mode 100644 index be3196a..0000000 Binary files a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/webappsstore.sqlite and /dev/null differ diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/webappsstore.sqlite-wal b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/webappsstore.sqlite-wal deleted file mode 100644 index e69de29..0000000 diff --git a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/xulstore.json b/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/xulstore.json deleted file mode 100644 index 66ae96c..0000000 --- a/firefox/Library/Application Support/Firefox/Profiles/qakpynq4.default-release/userjs_backups/xulstore.json +++ /dev/null @@ -1 +0,0 @@ -{"chrome://browser/content/browser.xhtml":{"main-window":{"screenX":"5","screenY":"1069","width":"1913","height":"1040","sizemode":"normal"},"sidebar-title":{"value":""}}} \ No newline at end of file diff --git a/nix-darwin/.config/nix-darwin/home.nix b/nix-darwin/.config/nix-darwin/home.nix index 899a0e2..0e4db68 100644 --- a/nix-darwin/.config/nix-darwin/home.nix +++ b/nix-darwin/.config/nix-darwin/home.nix @@ -22,15 +22,15 @@ # File management home.file = { ".zshrc".source = ~/.dotfiles/zsh/.zshrc; - ".zshenv".source = ~/.dotfiles/zsh/.zshenv; - ".zprofile".source = ~/.dotfiles/zsh/.zprofile; - ".fzf.zsh".source = ~/.dotfiles/zsh/.fzf.zsh; - ".config/wezterm".source = ~/.dotfiles/wezterm; - ".config/starship".source = ~/.dotfiles/starship; - ".config/nvim".source = ~/.dotfiles/nvim; - ".config/aerospace".source = ~/.dotfiles/aerospace; - ".config/gh".source = ~/.dotfiles/gh; - ".config/nix-darwin".source = ~/.dotfiles/nixi-darwin; + # ".zshenv".source = ~/.dotfiles/zsh/.zshenv; + # ".zprofile".source = ~/.dotfiles/zsh/.zprofile; + # ".fzf.zsh".source = ~/.dotfiles/zsh/.fzf.zsh; + # ".config/wezterm".source = ~/.dotfiles/wezterm; + # ".config/starship".source = ~/.dotfiles/starship; + # ".config/nvim".source = ~/.dotfiles/nvim; + # ".config/aerospace".source = ~/.dotfiles/aerospace; + # ".config/gh".source = ~/.dotfiles/gh; + # ".config/nix-darwin".source = ~/.dotfiles/nix-darwin; }; # Session variables diff --git a/nvim/.config/nvim b/nvim/.config/nvim index 4e9ef18..995ac75 160000 --- a/nvim/.config/nvim +++ b/nvim/.config/nvim @@ -1 +1 @@ -Subproject commit 4e9ef180d68f393029d81d7c80656999b92b02ae +Subproject commit 995ac75bd149b6ced9360f948cfd298c66b4fef6